在静态方法中调用前台控件赋值

在静态方法中调用前台控件赋值

    Application.Current.Dispatcher.Invoke(new Action(() =>
                    {
                        (Application.Current.MainWindow.FindName("textBox1") as TextBox).Text += str;
                    })); 

      private void Window_Loaded(object sender, RoutedEventArgs e)
        {
            //服务器IP地址
            IPAddress ip = IPAddress.Parse("192.168.137.51");
            serverSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); ;
            serverSocket.Bind(new IPEndPoint(ip, myProt));//绑定IP地址:端口 
            serverSocket.Listen(10);//设定最多10个排队连接请求  
            textBox1.Text += string.Format("启动监听{0}成功", serverSocket.LocalEndPoint.ToString() + Environment.NewLine);

            //通过clientsocket发送数据
            Thread myThread = new Thread(ListenClientConnect);
            myThread.Start();
        }

    //监听客户端连接  
        private static void ListenClientConnect()
        {
            while (true)
            {
                Socket clientsocket = serverSocket.Accept();
                clientsocket.Send(Encoding.ASCII.GetBytes("server say hello"));
                Thread receiveThread = new Thread(ReceiveMessage);
                receiveThread.Start(clientsocket);
            }
        }
 //接收消息
        private static void ReceiveMessage(object clientSocket)
        {
            Socket myClientSocket = (Socket)clientSocket;
            while (true)
            {
                try
                {
                    //通过clientsocket接收数据
                    int num = myClientSocket.Receive(result);
                    string str = string.Format("接收客户端{0}消息{1}", myClientSocket.RemoteEndPoint.ToString(), Encoding.UTF8.GetString(result, 0, num));
                    //UserName += str;
                    Application.Current.Dispatcher.Invoke(new Action(() =>
                    {
                        (Application.Current.MainWindow.FindName("textBox1") as TextBox).Text += str;
                    }));

                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.Message);
                    myClientSocket.Shutdown(SocketShutdown.Both);
                    myClientSocket.Close();
                    break;
                }
            }
        }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Bingo_BIG

你的鼓励是我最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值