Notifications
Clear all

[Closed] DotNet ListView double-click event?

Does anyone know if DotNet allows a ListView item to be double-clicked? I know I could do this manually by setting up a timer to check the interval between clicks, but I was hoping DotNet would provide a cleaner solution inherently.

Thanks!

2 Replies
 PEN

Right from the listener, Is that what you are looking for?

   on <control_name> DoubleClick e do ( ... )

Man, that’s just embarrasing. I thought I’d checked that a while ago and discovered that that event wasn’t exposed, and now I’m regretting I didn’t doubled-check before posting.

Thanks a bunch, Paul!