Save/Load ToolStrip Layout in .NET 2.0 with the ToolStripManager...

Hello Forum Members,

I can save and load the current ToolStrip Layout with the
ToolStripManager:

To Save, i am using ToolStripManager.SaveSettings(this); to load a layout, i can use ToolStripManager.LoadSettings(this); the ToolStripManager is doing all the work for me. So far, so good!

But where is the Information kept

Because i would like to export the Settings, for example. Or allow pre-defined Layouts after installation. I bet there must be an object somewhere, maybe even an XML String or something


Thanks in Advance!


Answer this question

Save/Load ToolStrip Layout in .NET 2.0 with the ToolStripManager...

  • SecurityCoder

    The information is saved in you file system as an xml file. You should be able to find it under C:\Documents and Settings\<<your username>>\Local Settings\Application Data\<< your app name >>
  • Save/Load ToolStrip Layout in .NET 2.0 with the ToolStripManager...