将消息从 DLL 传递到 GUI

发布于 2024-11-07 20:27:32 字数 189 浏览 0 评论 0原文

我创建了一个由 3 层组成的应用程序:GUI-BLL-DLL。当我加载平面文件时,我在 DLL 中执行此操作,但我想通过 GUI 中的进度条向用户显示该过程。所以我想将变量 LineCounts 从 DLL 传递到 GUI。我知道我必须使用事件,但是如何使用。有人可以帮助我通过代码示例了解如何在 VB.NET 中实现此事件吗?

提前致谢 埃利亚斯

I have created an application which consists of 3 Layers: GUI-BLL-DLL. When I am loading a flat file I am doing this in the DLL but I want to show to the user the process through a progress bar in the GUI. So I want to pass the variable LineCounts from the DLL to GUI. I know that I have to use EVENTS, but how. Can someone help me to understant how to implement this event in VB.NET with code example?

Thanks in advance
Elias

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

情徒 2024-11-14 20:27:32

我建议您考虑使用BackgroundWorker。我想您会想要使用后台线程导入文本文件,并间歇性地报告进度:

I suggest you look into using a BackgroundWorker. I presume you'll want to use a background thread to import the text file, and report progress intermittently: http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文