hi,
I have two ToolWindow, that docked to RadDock that her MainDocumentContainerVisble property is false,
and i try to changed size of ToolWindows.
and add the rad dock to winform, the toolwindows shown in same size.
this is the code:
RadDock raddock = new RadDock();
raddock.Dock = DockStyle.Fill;
RadDock.MainDocumentContainerVisble = false;
ToolWindow window1 = new ToolWindow("Window1")
DockTabStrip strip = (DockTabStrip)window1.TabStrip;
strip.SizeInfo.AbsoluteSize = new Size(50,this.Size.Height);
ToolWindow window2 = new ToolWindow("Window2")
DockTabStrip strip2 = (DockTabStrip)window2.TabStrip;
strip2.SizeInfo.AbsoluteSize = new Size(550,this.Size.Height);
this.Controls.Add(raddock);
I have two ToolWindow, that docked to RadDock that her MainDocumentContainerVisble property is false,
and i try to changed size of ToolWindows.
and add the rad dock to winform, the toolwindows shown in same size.
this is the code:
RadDock raddock = new RadDock();
raddock.Dock = DockStyle.Fill;
RadDock.MainDocumentContainerVisble = false;
ToolWindow window1 = new ToolWindow("Window1")
DockTabStrip strip = (DockTabStrip)window1.TabStrip;
strip.SizeInfo.AbsoluteSize = new Size(50,this.Size.Height);
ToolWindow window2 = new ToolWindow("Window2")
DockTabStrip strip2 = (DockTabStrip)window2.TabStrip;
strip2.SizeInfo.AbsoluteSize = new Size(550,this.Size.Height);
this.Controls.Add(raddock);