DataGridView: Supressing left mouse click row selection

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Some of my datagridview rows should not be selectable, thus I need to
suppress left mouse button row selection. Any ideas?
 
Check out Control.PreProcessControlMessage and Control.PreProcessMessage
event handlers. You can also handle other nav events such as using the up
and down arrow keyboard buttons using these handlers.
 
Back
Top