Search code examples
c#winformsmenubar

Visual Studio set one menu strip for multiple forms


I wanted to know if there is a way of setting the same menu strip for multiple forms? Like a "static" menu strip? Thanks!


Solution

  • It was solved with just adding the existing menuStrip to other forms via

    form1.Controls.Add(menuStrip);
    form2.Controls.Add(menuStrip);