如何在 C# 中的 GUI 窗体上显示来自管道的数据

发布于 2024-08-08 19:08:59 字数 147 浏览 6 评论 0原文

我制作了一个通过命名管道连接的小型服务器和客户端应用程序。我能够在控制台应用程序中在它们之间进行通信。现在我希望该数据显示在表单的文本框中。

我无法显示,一旦我分配了数据,它就会被分配,但文本框没有显示新的更新值。

任何人都可以帮我解决这个问题吗?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

幻梦 2024-08-15 19:08:59

你能给我们看一些代码吗?这可能会有帮助。

根据您已经提供的信息进行大胆猜测,也许您正在不断轮询 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.

独孤求败 2024-08-15 19:08:59

为文本框设置新值后尝试添加以下代码:

   textBox1.AppendText(yourData); // let's say, you add your data here
   textBox1.Update();
   Application.DoEvents();

Try to add the following code after you set the new value for the textbox :

   textBox1.AppendText(yourData); // let's say, you add your data here
   textBox1.Update();
   Application.DoEvents();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文