将消息从 DLL 传递到 GUI
我创建了一个由 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您考虑使用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