我有一个数据网格视图中的单元格单击事件,以在消息框中显示单击的单元格中的数据。我将其设置为仅适用于特定列并且仅当单元格中有数据时
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
if (dataGridView1.CurrentCell.ColumnIndex.Equals(3))
if (dataGridView1.CurrentCell != null && dataGridView1.CurrentCell.Value != null)
MessageBox.Show(dataGridView1.CurrentCell.Value.ToString());
}
但是,每当我单击任何列标题时,都会出现一个空白消息框。我不知道为什么,有什么提示吗?