I'm using Q1 2010 SP2 and having trouble resizing and positioning a ToolWindow after it has already been created. Here's some code I've tried:
toolWindow.Size = new Size(400, 300); toolWindow.Top = Location.Y; toolWindow.Left = Location.X; toolWindow.DockState = Telerik.WinControls.UI.Docking.DockState.Floating;
Also tried these...
//toolWindow.TabStrip.SizeInfo.SizeMode = SplitPanelSizeMode.Absolute; //toolWindow.TabStrip.SizeInfo.AbsoluteSize = new Size(150, 0); and //if (toolWindow.DockingSite.HostFrom != null) //{ // toolWindow.DockingSite.HostForm.Size = new Size(300, 300); //}
But none of these appeared to work...ideas? Thx...