How to toggle the highlighting on a row with every mouse click?
I'm trying to do the following in code-behind in C#:
When a user clicks anywhere on a row, the row highlights in a different color. Another click on that same row changes the row to its original color. The user should be able to select multiple rows this way.
The rows could be rows in ListView or DataGridView, currenttly I am trying DataGridView, havn't figured any possible ways.
Please Help.
webcliff

