Hello
How do we save the workspace in the ultradockmanager, workspace includes size and position of all tabs; all settings of a grid etc in to the database, so on restart of the application saved workspace is reloaded?
Regards
Jeni
Hello Jeni,
Maybe one possible approach to achieve desired behavior could be if you are using Save / Load methods of our controls. For example our UltraDockManager has:
ultraDockManager1.SaveAsBinary();
ultraDockManager1.LoadFromBinary();
or
ultraDockManager1.SaveComponentSettings();
ultraDockManager1.SaveAsXML();
About our UltraGrid, you could try:
ultraGrid1.DisplayLayout.SaveAsXml();
ultraGrid1.DisplayLayout.Save();
Please let me know if you have any questions.