I have an existing .NET Winforms application created using several complex forms, and
1) all forms live throughout the life of the application, and
2) only one form is displayed at a time (user switches between forms)
I need these forms to share a common menu that will be handled by a single business logic controller. (The visible form is also constantly updated by the controller)
Is there a way in the same menu that appears at the top of each form and has a menu handled by their common controller, without having to make it an MDI application?
Many thanks!
source
share