即使我们单击DataGridView的标题,也会触发单元格单击事件。如何阻止它开火?
最佳答案
比较RowIndex
和ColIndex
如果它们的值为-1(标题列/行索引),则为ignore
。
testDataGridView.CellClick += (senderObject, eventArgs) =>
{
if (eventArgs.RowIndex == -1 || eventArgs.ColumnIndex == -1)
return;
//statements here
};
关于c# - DataGridView的CellClick事件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7752161/