现在的位置: 首页 > 综合 > 正文

C# Windows Form 下通过MethodInvoker 实现异步调用 (不使用thread)

2012年07月17日 ⁄ 综合 ⁄ 共 319字 ⁄ 字号 评论关闭
public class testForm:Form
{
...
...
public void test()
{
        System.Windows.Forms.MethodInvoker CallToRefreshGrid = new System.Windows.Forms.MethodInvoker (this.RefreshGrid);
        this.BeginInvoke(CallToRefreshGrid);
   
}

private void RefreshGrid()
  {
   dataGrid1.DataSource = appData.Tables[0].DefaultView;
   dataGrid1.Refresh();
  }

}

抱歉!评论已关闭.