I would like Not-to-have verb panel in the Property Grid of my MyTabControl inherited from UltraTabControl,
or be able to disable/remove particular verbs.
If I click right mouse button while on that panel and deselect "Command" item : verb panel disappears from the Property Grid.
How can I do that programmatically (of course at design time") Without creating and attaching my own designer?
Thank you
There is no way to control the designer verbs, as far as I am aware, without deriving your own designer and assigning that to your MyTabControl. This is because the designer code needs to be pre-compiled in order for Visual Studio to load it; you cannot dynamically execute code into the design surface, as far as I am aware.
-Matt