You could probably handle a couple of event like grid.Leave and
grid.CellMouseEnter and use a Timer to catch a hoover action row by
row.
this.dataGridView1.CellMouseEnter += new
DataGridViewCellEventHandler(dataGridView1_CellMouseEnter);
this.dataGridView1.Leave += new
EventHandler(dataGridView1_Leave);
The code:
private Timer hooverTimer = null;
private int hooverRow = -1;
private int potentialHooverRow = -1;
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.