I created class MyToolStrip:ToolStrip{}. My project already has about 60 toolstrip instances.
Is there a way (except signature find/replace) to:
- Force all my created forms to use MyToolStrip instead ToolStrip?
- Force future MyToolStrip usage instead of ToolStrip (compiler warning is good enough but not the best)?
I believe there's no correct way neither to mark ToolStrip Obsolete nor to "override" or hide system class. So what is best practice? Thanks.