Hi,
Is it possible to set splitter position dynamically from code? I need to save its last known position and restore it next time application starts...
I' m used to accomplish this by using the SplitPosition property with standard WinForms splitter control...
Setting the Location property: ultraSplitter1.Location = new Point(300, 0); doesn't work for me!
Thanks.
Hello Realsw,
To set the position of the splitter in code, you actually set the width or height of the control that the splitter is docked next to. For example, if you have a treeView docked on the left side of the form and an UltraSplitter docked next to it, you would set the width of the treeView control.