Skip to main content
Bar

BarManager.RestoreLayoutFromRegistry() 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 bars’ layout from the system registry.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public void RestoreLayoutFromRegistry()

Remarks

Use the RestoreLayoutFromRegistry method to restore the bars’ layout from the system registry path that is specified by the BarManager.RegistryPath property to which it was saved via the BarManager.SaveLayoutToRegistry method.

Note

When restoring a layout during a form load (for instance, in your Form.Load event handler), you may need to call the BarManager.ForceInitialize method prior to the layout restoration. See this method to learn more.

For more information, see Saving and Restoring a Bars Layout Manually.

See Also