I have an existing .NET Winforms app made with a few complex forms, and
1) the forms all live for the life of the app, and
2) only one form is displayed at a time (the user switches between the forms)
I need for these forms to share a common menu that will be processed by a single business-logic controller. (The visible form is also continuously updated by the controller)
Is there a way to the same menu appear at the top of each form and have the menu processed by their common controller without having to make it an MDI application?
Many thanks!