Completed
Last Updated: 16 Jan 2015 06:14 by ADMIN
ADMIN
Ivan Todorov
Created on: 31 May 2012 05:08
Category: Dock
Type: Feature Request
1
ADD. RadDock - the posibility to choose which windows to be serilialized via the SaveToXml method of RadDock.
There should be mechanism for specifying which windows should be saved by the SaveToXml method.

Resolution: 
You need to subscribe to the DockWindowSerializing event to prevent saving of window. Please refer to the following code example: 
void radDock1_DockWindowSerializing(object sender, DockWindowCancelEventArgs e)
{
    if (e.NewWindow.Text == "WindowName")
    {
        e.Cancel = true;
    }
}
0 comments