Column Click with right mouse button ?
C#
2
Posts
2
Posters
0
Views
1
Watching
-
the column click event from listview doesnt handle the right mouse button? how to get it working
You need to override the OnMouseDown event and check the parameter
if(e.Button == MouseButtons.Right)
object obj = this.shapesListView.GetChildAtPoint(e.Location);
...Check out the following article for details.
I thought about it,
I stood up
and I did it.
The Netron Project