12-22-2010 05:38 PM
I have a list and want to execute an action (display context menu) when user presses and holds particular list item. Searched this forum and docs and cant seem to find event for it?
12-22-2010 05:40 PM
You can trap the mouse down event, fire off a timer (Timer) for X seconds to show the menu. If mouse up occurs, you can either cancel the timer or at the timer complete event (before showing the menu), see if the mouse up event has occured.
12-22-2010 05:48 PM
many thanks. will try to implement that way!