Windows应用程序中的线程

Windows应用程序中的线程

本文介绍了Windows应用程序中的线程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我有一个主窗体,它包含一个停靠面板,正在其中加载子窗体.
我正在使用反射来获取子窗体实例,这需要花费时间并冻结应用程序.我曾尝试使用后台工作程序和普通线程创建实例的线程.花费时间是由于从Web服务获取数据以及绑定控件.

我正在例外.在一个线程上创建的控件无法在不同线程上的控件上访问.

谁能帮帮我.

在此先感谢

Hi,

I have a Main Form it contains a dock panel in which am loading the child forms.
I am getting the child form instance using reflection, where it takes time and freezes the Application. I have tried threading where i have created the instance using background worker and also normal threading. Time taken is due to fetching data from web services as well as binding the controls.

I am getting exception. Control created on one thread cannot be accessed on a control in different thread.

Can any one help me out.

Thanks in advance

推荐答案




这篇关于Windows应用程序中的线程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 13:39