How do I use ToolStripContainer with Dock = fill parent MDI?

How do I use the ToolStripContainer whith Dock = Populate Parent MDI? ... When I drop the ToolStripContainer into the parent MDI and pop it up to the Dock property, it hides all MDI files.

thank...

+1


source to share


2 answers


try adding MDI child form to ToolStripContainer

:



toolStripContainer1.ContentPanel.Controls.Add(frm);

      

+1


source


MDILayout doesn't work on child forms



+1


source







All Articles