如何在 C# 中的 GUI 窗体上显示来自管道的数据
我制作了一个通过命名管道连接的小型服务器和客户端应用程序。我能够在控制台应用程序中在它们之间进行通信。现在我希望该数据显示在表单的文本框中。
我无法显示,一旦我分配了数据,它就会被分配,但文本框没有显示新的更新值。
任何人都可以帮我解决这个问题吗?
I have made a small server and client application connected via named pipe. I am able to communicate between them in console application. Now i want that data to be displayed in text box on form.
I am not able to display, once i assign the data it gets assigned but text box is not showing the new up dated value.
Can any one help me to resolve this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你能给我们看一些代码吗?这可能会有帮助。
根据您已经提供的信息进行大胆猜测,也许您正在不断轮询 GUI 线程上的数据?这会有效地阻塞线程,这样 GUI 就永远不会重新绘制文本框。
Could you show us some code ? It would probably help.
Taking a wild guess based on the information you have already provided, perhaps you are continously polling for data on the GUI thread ? That would effectively block the thread, so that the GUI never gets around to redrawing the text box.
为文本框设置新值后尝试添加以下代码:
Try to add the following code after you set the new value for the textbox :