Hi,
I use UltraToolbarsManager to show a toolbar. When I click and drag the toolbar, it can move everywhere. Now when I restart the application, the toolbar stands on his default location, not the place where I last time move it. How can I remember the current location of the toolbar so that it shows where it was located last time when restart?
May be one possible solution is to call the methods: ultraToolbarsManager1.SaveComponentSettings(); before to close your application, and to call method: ultraToolbarsManager1.LoadComponentSettings(); when you start your application next time.Regards
Hi Georgi,
finally I use SaveAsBinary(string filename, bool saveCustomizations) method to remember the position, because my application is used by different users and each user has their own layout settings. I tried SaveComponentSettings method, it can also remember the position. Thank you very much.
Regards