Hi All,
I am having a dock manager with three user controls docked in it. These controls are MdiChilds. When the application comes up, these MdiChild controls are shown with a standard size. Can i modify that size? I want the size to be little bigger. I set the size of dockablecontrolpane,dockareapane, but of no use.
Can someone please help me on this?
Thanks and Regards
Manikandan
That event is defined on the .Net Form class.
There is no property exposed to control the size. You can try to find an instance of an MdiChildFormBase in the mdi children of the parent form (or handle the MdiChildActivated event of the parent and get the active mdi child) and set the size of that form. The pane is exposed off this form too.