Skip to main content
A newer version of this page is available. .

DockManager.RestoreFromRegistry(String) Method

Restores the layout stored at the specified system registry path to the dock panels.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

public virtual void RestoreFromRegistry(
    string path
)

Parameters

Name Type Description
path String

A string value specifying the system registry path. If the specified path doesn’t exist, calling this method has no effect.

Remarks

This method is obsolete. Use the DockManager.RestoreLayoutFromRegistry method instead.

Example

The following code can be used to write and read a docking layout to and from the system registry. The full path to the docking layout will be: HKEY_CURRENT_USER\DevExpress\XtraBars\DockStates\MainState.

string regKey = "DevExpress\\XtraBars\\DockStates\\MainState";
dockManager1.SaveLayoutToRegistry(regKey);

// ...

dockManager1.RestoreLayoutFromRegistry(regKey);
See Also