Context menu issue

  • Thread starter Thread starter Frank Oquendo
  • Start date Start date
F

Frank Oquendo

My DataGrid has a ContextMenu assigned to it. If I right-click the
current cell, I get the standard Windows context menu (Cut, Copy, Paste,
etc.). If I right-click anywhere else, I get my context menu.

I want my context menu at all times. Is this possible? If so, how?

--
There are 10 kinds of people. Those who understand binary and those who
don't.

http://code.acadx.com
(Pull the pin to reply)
 
detect the "mouseDown" event on your grid, and disable the grid for
that portion of time in which you show your context menu.
 
Back
Top