In the application, I have a checkbox in the toolbar. When the checkbox is checked, The dockareapane is reset to the minimum size.This works fine.
Now what I need to do is, on uncheck, the dockarea pane must come to the actual size.
Is there any possible solution to set the Actualsize of the dockareapane dynamically.
Regards
jeni
Hello Jeni,
Maybe one possible approach could be if you are using UltraDockManager`s Save and Load layouts methods. By this way you could save desired layout in advance and after reset and uncheck your CheckBox you could load again your layout
The code for example will be:
ultraDockManager1.SaveAsXML("..\\..\\Test.xml");
ultraDockManager1.LoadFromXML("..\\..\\Test.xml");
Please note that using these methods you will save and load the layout of all your DockAreas and Panes.
Let me know if you have any questions.