我的表格上有这个功能:
private void UpdateQuantityDataGridView(object sender, DataGridViewCellEventArgs e)
{
(...codes)
}
我想在另一个函数中调用该函数,假设当我单击“确定”按钮时,下面的函数将运行并执行上面具有参数类型的函数。
private void button5_Click(object sender, EventArgs e) // This is the "OK" button click handler.
{
SubmitButton(sender, e);
}
private void SubmitButton(object sender, EventArgs e) // This is function of "OK" button
{
(...codes)
UpdateQuantityDataGridView("What should i put in here? I tried (sender, e), but it is useless")
}
我知道当我们放这样的东西时这个函数会运行:
dataGridView1.CellValueChanged += new DataGridViewSystemEventHandler(...);
但是,我不希望这样,因为该函数仅在 DataGridView 中的单元格值已更改时才会运行,我想在单击“确定”按钮时访问该函数。但是,我应该在参数值中放入什么?