How to get the item double click event of listview?
|
|
I'm using something like this to only trigger on ListViewItem double-click and not for example when you double-click on the header of the ListView.
|
|||
|
|
The only difficulty then is if you are interested in the underlying object the listviewitem maps to e.g.
|
||||
|
|
|
I needed that as well. I found that on msdn: |
|||
|
|
|||
|
|
|
Either use the MouseDoubleClick event, and also, all the MouseClick events have a click count in the eventargs variable 'e'. So if e.ClickCount == 2, then doubleclicked. |
|||
|
|
|
In the ListBox DoubleClick event get the selecteditem(s) member of the listbox, and there you are.
|
|||||
|
|
It's annoying, but the best way to do it is something like:
Then in the code:
|
|||
|
|
|
I found this on Microsoft Dev Center. It work correctly and ignores double-clicking in wrong places. As you see, the point is that item gets selected before double-click event is triggered.
http://social.msdn.microsoft.com/forums/en-US/winforms/thread/588b1053-8a8f-44ab-8b44-2e42062fb663 |
|||
|
|