double click on a ListViewItem
-
Hi all, When I double click on a ListViewItem, I don't want the checked property of the item to change. By default, this does happen and I can't see a way of disabling this behaviour. Thanks in advance.
amit
-
Hi all, When I double click on a ListViewItem, I don't want the checked property of the item to change. By default, this does happen and I can't see a way of disabling this behaviour. Thanks in advance.
amit
Hi! Trying to set the checked property in the
CheckedChanged
event doesn't work directly, but with a litte trick you can achieve this: Call a delegate for resetting theChecked
state usingBeginInvoke()
, so that the code is executed after theCheckedChanged
event handler is through.Regards, mav -- Black holes are the places where God divided by 0...