public void UpdateDataGrid(bool newInsert = false)
{
//ThreadSafe (updating datagridview from AddEventForm is not allowed otherwise
if (InvokeRequired)
{
Invoke(new Action(UpdateDataGrid));
}
else
{
Util.PopulateDataGridView(ref this.EventsDataGridView,newInsert);
}
}
我不知道如何为 new Action() 提供可选参数。
我尝试了 new Action(UpdateDataGrid) 但仍然引发运行时错误。
谢谢