ContextMenu Question

  • Thread starter Thread starter houghtelling
  • Start date Start date
H

houghtelling

Is there a way to know when a ContextMenu closes? In my program I have
a down arrow image that when clicked changes to a inverted down arrow
image and shows a context menu. Is there anyway to find out when the
ContextMenu closes. I need a way to switch back the down arrow image
if the user clicks outside of the ContextMenu.

Thanks in advance,
Jerod
 
I found one solution. I was able to use the MouseDown and MouseUp
properties. I didn't not know that the MouseUp event didn't fire until
after the ContextMenu closes.
 
Back
Top