LayoutControl.RestoreLayoutFromRegistry(String) Method
SECURITY NOTE
Deserializing layout settings from untrusted resources may create security issues. Review the following help topic for additional information: Safe Deserialization.
Restores the layout that is stored at the specified system registry path.
Namespace: DevExpress.XtraLayout
Assembly: DevExpress.XtraLayout.v24.2.dll
Declaration
Parameters
Name | Type | Description |
---|---|---|
path | String | A String value that specifies the system registry path. If the specified path doesn’t exist, this method does nothing. |
Remarks
The LayoutControl.SaveLayoutToRegistry method saves the LayoutControl’s layout to the system registry. You can then restore this layout using the RestoreLayoutFromRegistry method.
See Save and Restore Layout to learn more.
Example
The following sample code can be used to write and read the layout to/from the system registry. The full path for the layout will be: HKEY_CURRENT_USER\DevExpress\Layout Control\Layouts.
string regKey = "DevExpress\\Layout Control\\Layouts";
layoutControl1.SaveLayoutToRegistry(regKey);
// ...
layoutControl1.RestoreLayoutFromRegistry(regKey);