是的 我使用了 不然肯定会抛异常 [C#] 纯文本查看 复制代码 /// <summary>
/// 重新绘制控件
/// </summary>
private void KeywordRankingControlUpdate() {
//验证是否再UI线程上
if (KeywordRankingDataGridView.InvokeRequired) {
KeywordRankingControlUpdateDelegate controlUpdate = new KeywordRankingControlUpdateDelegate(KeywordRankingControlUpdate);
Invoke(controlUpdate);
} else {
KeywordRankingDataGridView.Refresh();
}
} |