Explore End-User Customization with the XamDockManager. This video walks through the different parts of the xamDockManager as well as how to load and save layouts. It is part of the screencast series on building an LOB Application with NetAdvantage for…
Save Layout
using System.IO; ... using (FileStream fs = new FileStream("layout.xml", FileMode.Create, FileAccess.Write)) { this.xamDockManager1.SaveLayout(fs); } ...
Load Layout
using System.IO; ... //Load the layout…