I tried to modify source file (winFormsUI ->Docking ->Floatwindow.cs[design])
here i set minimum size property of the window to (100,100)
built & used the dll in my project. below is the code for calling child form in dockpanel.
ChildForm.Show(dockPanel1, DockState.Float);
yet i can resize float window [DockContent/ Child Form] below (100,100)
1) what else should i change to set minimum size for float window ?
2) is there a way to set position for float window? by default, it shows up at left top.
can we make it appear at center of screen?