H
Helmut Giese
Hello out there,
I have a context menu where some entries will have to be changed at
runtime depending on which control was clicked.
I install an event handler
ContextMenuStrip.Opening += new CancelEventHandler(cms_Opening);
(based on an example I found somewhere).
Now the signature of 'CancelEventHandler' is
void cms_Opening(object sender, CancelEventArgs e)
and 'CancelEventArgs' does not contain X and Y coordinates.
Currently I have no idea how to solve this - any advice will be
greatly appreciated.
Best regards
Helmut Giese
I have a context menu where some entries will have to be changed at
runtime depending on which control was clicked.
I install an event handler
ContextMenuStrip.Opening += new CancelEventHandler(cms_Opening);
(based on an example I found somewhere).
Now the signature of 'CancelEventHandler' is
void cms_Opening(object sender, CancelEventArgs e)
and 'CancelEventArgs' does not contain X and Y coordinates.
Currently I have no idea how to solve this - any advice will be
greatly appreciated.
Best regards
Helmut Giese