0
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) 但仍然引发运行时错误。

谢谢

4

1 回答 1

6

您需要创建一个方法委托来封装您的方法的调用,传递最初指定的参数,如下所示:

() => UpdateDataGrid(newInsert)

在上下文中:

public void UpdateDataGrid(bool newInsert = false)
{

    //ThreadSafe (updating datagridview from AddEventForm is not allowed otherwise 
    if (InvokeRequired)
    {
        Invoke(new Action(() => UpdateDataGrid(newInsert)));
    }
    else
    {
        Util.PopulateDataGridView(ref this.EventsDataGridView,newInsert);
    }
}    
于 2012-05-25T21:43:41.123 回答