In a WinForms .Net 2.0 application, I want to create a context menu with a ToolStripMenuItem that has both a label AND a textbox in the item itself. An example of what I am talking about can be found in Access - when viewing an Access table, the context menu has options for "Filter By Selection", "Filter Excluding Selection", and then "Filter For: _ _ _ _ _ _". This third option is essentially a label AND a text box in a single item. This is what I can't figure out how to do.
I've had no problem implementing this with two separate ToolStripMenuItems - one for the text, then a child with just the text box. But this is awkward and not as nice looking as the implementation in Access.
Can anyone point me in the right direction on this? I'm having trouble searching, as all everything I find seems to relate to context menus on a text box itself.