标签:inf idf tag fresh GridView action ref his 设计
在更新DataGridView的条目后,调用gv.Refresh()进行刷新,但刷新后的结果未显示到页面
this.gridFiles.Refresh();
网上查资料后发现需要进到创建控件的主线程去更改,即Invoke方法,用委托去进行刷新
if (gridFiles.InvokeRequired)
{
gridFiles.Invoke(new Action(() => gridFiles.Refresh()));
}
winform DataGridView.Refresh()不及时更新,设计线程
标签:inf idf tag fresh GridView action ref his 设计
原文地址:https://www.cnblogs.com/DoudouZhang/p/9732919.html