[Solved] Sharing one MenuStrip between multiple Forms and “open, save, save as” each form separately
Ok no problem I’ve a Main form and call multiple panel (PanelSlider) with 1 MenuStrip with UserControl : public Form1() { InitializeComponent(); PanelSlider.Controls.Add(new Home()); PanelSlider.Controls.Add(new Tools()); etc… } Active Panel with button private void HomeBtn_Click(object sender, EventArgs e) { PanelSlider.Controls.Find(“Home”, false)[0].BringToFront(); } So to switch the multiple panel I declared a menustrip and for example: … Read more