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...

ae2
  • 31
  • 1
  • 4

2 Answers2

1

try adding the MDI child form to the ToolStripContainer:

toolStripContainer1.ContentPanel.Controls.Add(frm);
manji
  • 47,442
  • 5
  • 96
  • 103
  • That´s impossible, a MDI child Form is a control on a high level that a ToolStripContainer... Thacks.. – ae2 Nov 09 '09 at 22:04
  • 1
    no it's possible, first make the form as MDIChild to your main form, then add it to the toolStripContainer, I just tested it. – manji Nov 09 '09 at 22:37
1

the MDILayout doesn't work on the child forms

Ivan
  • 11
  • 1