WinForms DataGridView中的OnClick事件

时间:2010-01-31 11:56:56

标签: c# winforms datagridview buttonclick

我在WinForms中使用DataGridView,通过这段代码,我将它分配给列和值

dataGrid.DataSource = sourceObject;

只能通过这一行将所有列和值放入网格中。 如何处理特定行或字段的onClick事件。我想编辑网格中的特定项目,但我找不到任何方式从事件方法发送项目的ID。

有一个我不理解的类DataGridViewEventHandler?

我还尝试手动添加列作为按钮,但我没有找到方法来为它分配动作方法。

2 个答案:

答案 0 :(得分:5)

您无法在DataGridView中找到“OnClick”事件,因为它不存在。查看为{Cell操纵和事件提供的DataGridView Events的MSDN页面

以下是来自MSDN的一些示例,关于您可能使用的事件

示例CellMouseClick事件和处理程序

   private void DataGridView1_CellMouseClick(Object sender, DataGridViewCellMouseEventArgs e)    {

    System.Text.StringBuilder cellInformation = new System.Text.StringBuilder();
    cellInformation .AppendFormat("{0} = {1}", "ColumnIndex", e.ColumnIndex );
    cellInformation .AppendLine();
    cellInformation .AppendFormat("{0} = {1}", "RowIndex", e.RowIndex );
    cellInformation .AppendLine();
    MessageBox.Show(cellInformation.ToString(), "CellMouseClick Event" );
}

示例CellClick事件和处理程序

private void dataGridView1_CellClick(object sender,
    DataGridViewCellEventArgs e)
{

    if (turn.Text.Equals(gameOverString)) { return; }

    DataGridViewImageCell cell = (DataGridViewImageCell)
        dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex];

    if (cell.Value == Play)
    {
        // PlaySomething()
    }
    else if (cell.Value == Sing)
    {
        // SingSomeThing();
    }
    else 
    {
     MessagBox.Show("Please Choose Another Value");
    }
}

希望这有帮助

答案 1 :(得分:1)

Here,您可以看到DataGridView的事件列表。如果要查看是否已单击某个单元格,则需要使用CellMouseclick事件。在您的代码中,您可以像这样处理事件:

private void DataGridView1_CellMouseClick(Object sender, DataGridViewCellMouseEventArgs e)
{
    //Do something

}

要获取有关单元格的具体详细信息,可以使用上面提到的“e”属性。它的类型为DataGridViewCellMouseEventArgs。这将为您提供有关该特定单元格的信息。您可以以相同的方式处理第一个链接中的大多数其他事件。 (当然,并非所有事件都以DataGridViewCellMouseEventArgs为参数。)