up vote 0 down vote favorite
share [g+] share [fb]

I have two different grid controls on the same form. They share the same context menu. I am having trouble determining which control is the owner when I select the context menu item.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

SourceControl property on the ContextMenuStrip class will show the last control that caused that menu strip to be shown.

link|improve this answer
feedback

The event handler for the MenuItem's Click event will have a Sender parameter. This object should be the control that had the focus when the context menu was displayed.

link|improve this answer
Sorry but all that will give you is a reference to the actual menu item that was clicked, not the control that was right clicked to fire the context menu. – Binary Worrier Oct 28 '08 at 17:23
Yes, you're absolutely right. My mistake. – Stu Mackellar Oct 29 '08 at 13:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.