2 回答
TA贡献1906条经验 获得超3个赞
BackgroundWorker 类允许您在单独的专用线程上运行操作。耗时的操作(如下载和数据库事务)在长时间运行时可能会导致用户界面 (UI) 似乎处于停止响应状态。BackgroundWorker class provides a convenient solution.' xml:space="preserve">如果您需要能进行响应的用户界面,而且面临与这类操作相关的长时间延迟,则可以使用 BackgroundWorker 类方便地解决问题。
BackgroundWorker and listen for events that report the progress of your operation and signal when your operation is finished.' xml:space="preserve">若要在后台执行耗时的操作,请创建一个 BackgroundWorker,侦听那些报告操作进度并在操作完成时发出信号的事件。BackgroundWorker programmatically or you can drag it onto your form from the Components tab of the Toolbox.' xml:space="preserve">可以通过编程方式创建 BackgroundWorker,也可以将它从“工具箱”的“组件”选项卡中拖到窗体上。BackgroundWorker in the Windows Forms Designer, it will appear in the Component Tray, and its properties will be displayed in the Properties window.' xml:space="preserve">如果在 Windows 窗体设计器中创建 BackgroundWorker,则它会出现在组件栏中,而且它的属性会显示在“属性”窗口中。
- 2 回答
- 0 关注
- 769 浏览
添加回答
举报