欢迎你访问我的个人网站:www.6ideas.cn,资料更丰富.
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();
  }

}

Copyright © 2024 talantlee
Powered by .NET 8.0 on Kubernetes