我开发了一个Windows窗体c#应用程序,我只想在主窗体中通过旋转另一个线程而不阻止GUI窗体来更新列表框中的项目。 由于线程无法访问像listbox这样的表单实体,我想到了使用委托。 下面的代码显示了我如何使用委托来执行该任务,但它阻止了GUI表单。所以我只想将它转换为异步委托,更新列表框而不阻止GUI表单
委托声明
delegate void monitoringServiceDel();
调用代理
new monitoringServiceDel(monitoringService).BeginInvoke(null, null);
委托方法实施
private void monitoringService()
{
this.listEvents.Invoke(new MethodInvoker(delegate()
{
int i = 0 ;
while (i<50)
{
listEvents.Items.Add("count :" + count++);
Thread.Sleep(1000);
i ++;
}
}));
}
答案 0 :(得分:7)
对于Win表单,您需要使用Control的Invoke方法:
在拥有控件的线程上执行指定的委托 底层窗口句柄
基本情景是:
有些事情:
var bw = new BackgroundWorker();
bw.DoWork += (sender, args) => MethodToDoWork;
bw.RunWorkerCompleted += (sender, args) => MethodToUpdateControl;
bw.RunWorkerAsync();
这应该让你朝着正确的方向前进。
编辑:工作样本
public List<string> MyList { get; set; }
private void button1_Click( object sender, EventArgs e )
{
MyList = new List<string>();
var bw = new BackgroundWorker();
bw.DoWork += ( o, args ) => MethodToDoWork();
bw.RunWorkerCompleted += ( o, args ) => MethodToUpdateControl();
bw.RunWorkerAsync();
}
private void MethodToDoWork()
{
for( int i = 0; i < 10; i++ )
{
MyList.Add( string.Format( "item {0}", i ) );
System.Threading.Thread.Sleep( 100 );
}
}
private void MethodToUpdateControl()
{
// since the BackgroundWorker is designed to use
// the form's UI thread on the RunWorkerCompleted
// event, you should just be able to add the items
// to the list box:
listBox1.Items.AddRange( MyList.ToArray() );
// the above should not block the UI, if it does
// due to some other code, then use the ListBox's
// Invoke method:
// listBox1.Invoke( new Action( () => listBox1.Items.AddRange( MyList.ToArray() ) ) );
}
答案 1 :(得分:2)
如果要修改UI元素,那么您将需要阻止UI线程。如果项目突发或需要在添加每个项目之间进行处理,那么您可能需要考虑在幕后运行处理(通过backgroundworker或Task)。但是,如果您只是获取数据并填充列表,那么您需要使用UI线程。
答案 2 :(得分:1)
最简单的解决方案是使用BackgroundWorker
控件,并结合两个Panels
。我的想法是在表单加载时在前景Visible
上放置一个面板,并在其中放置一个ImageBox
来播放简单的加载gif。 ListBox
将位于其他面板中,默认情况下不会显示,并且位于第一个面板后面。
加载表单后,启动BackgroundWorker
并完成您必须执行的任何数据检索或更新,完成任务后,在ListBox中设置数据并简单地调用ListBox
面板并使其可见。
这样你就可以对ListBox
进行半异步加载,而在添加每个项目后它都不会更新。您可以随时使用此技术,而不仅仅是表单加载!
这是一个代码示例:
namespace AsyncForm
{
public partial class Form1 : Form
{
private List<String> collectionItems = new List<String>();
public Form1()
{
InitializeComponent();
}
private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{
for (int i = 0; i < 20; i++)
{
((List<String>)e.Argument).Add("Something " + i);
System.Threading.Thread.Sleep(200);
}
}
private void backgroundWorker1_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
listBox1.Items.AddRange(collectionItems.ToArray());
listBox1.Visible = true;
pictureBox1.Visible = false;
}
private void Form1_Load(object sender, EventArgs e)
{
backgroundWorker1.RunWorkerAsync(collectionItems);
}
}
}
答案 3 :(得分:0)
您应该将功能分开以更新UI和长时间处理。
处理UI逻辑..
private void UpdateUI(string item)
{
if (Thread.CurrentThread.IsBackground)
{
listEvents.Dispatcher.Invoke(new Action(() => //dispatch to UI Thread
{
listEvents.Items.Add(item);
}));
}
else
{
listEvents.Items.Add(item);
}
}
使用TaskParallel
进行异步处理 private void Dowork()
{
Task task = Task.Factory.StartNew(() =>
{
int i = 0;
while (i < 10)
{
Thread.Sleep(1000);
UpdateUI(i.ToString());
i++;
}
});
}