tags:

views:

620

answers:

1

How to uses a ToolStripContainer whith Dock=Fill on a MDI parent???... When I drop a ToolStripContainer on a MDI parent and assing fill to a property Dock it hide all the MDI children.

thanks...

A: 

try adding the MDI child form to the ToolStripContainer:

toolStripContainer1.ContentPanel.Controls.Add(frm);
najmeddine
That´s impossible, a MDI child Form is a control on a high level that a ToolStripContainer...Thacks..
ae2
no it's possible, first make the form as MDIChild to your main form, then add it to the toolStripContainer, I just tested it.
najmeddine