I wanted to know if there is a way of setting the same menu strip for multiple forms? Like a "static" menu strip? Thanks!
It was solved with just adding the existing menuStrip to other forms via
form1.Controls.Add(menuStrip);
form2.Controls.Add(menuStrip);