I am using a FormLayoutPanel and am dynamically creating UltraCheckEditors.
I am setting a context menu ultra to eac of those that is the same context menu.
However, I need to know when the user clicks the menu item, which control they were on when they clicked the context menu.
I would have thought the menu event data would be able to tell me who the parent control.
I am using IG WinForms Controls 2008 Vol. 3
Check the post here:
http://forums.infragistics.com/forums/t/37612.aspx
Not sure if this is the best solution, but after continuing to play with it a bit, I added a mousedown eventhandler to the dynamic checkbox and set a member variable = to the currently clicked checkeditor. Then in the toolbar event I use that variable to know which checkbox was clicked.