Home > Net >  DataGridView CellClick don't trigger
DataGridView CellClick don't trigger

Time:01-14

If set up in the DataGridView CellMousenDown events CurrentCell, DataGridView CellClick event won't trigger, how do I solve? thank you

CodePudding user response:

Why have this kind of operation, mousenDown represents the current selected cell, and then in the event you setting the currentCell is equivalent to the mouse off automatically run to currentCell,

  • Related