It seems to me that there should be a simple way to determine which control the user right-clicked to bring up the context menu.

I have several identical controls on a form that display different data, but the context menu options are the same for each control. I'd much prefer to create just one context menu with associated code, rather than duplicate that stuff for each control on my form.

Obviously, to do that I must be able to tell which control was right-clicked on so that I can tailor the menu item's response to that control.

Does anybody have any ideas on how this is accomplished? I thought the answer might be in the sender parameter that is passed to the menu item handler, but that only tells me which menu item was selected.