Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BaseView.SaveLayoutToRegistry(String) Method

Saves the layout in the system registry.

Namespace: DevExpress.XtraBars.Docking2010.Views

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public void SaveLayoutToRegistry(
    string path
)

#Parameters

Name Type Description
path String

The registry key where the layout should be saved.

#Remarks

Use the following methods to save the layout in the corresponding format/storage and subsequently restore it:

You can handle the BaseView.RestoreLayoutError event to fix exceptions that occur during the restore layout operation.

Important

The Layout Control saves and restores the View’s properties and properties of documents. It does not recreate documents with their content. You should recreate documents and then restore the layout.

The ControlName property should be set to a unique value for documents populated with the content on the fly (see Deferred Load) to restore documents correctly.

Tip

You can also utilize the Persistence Behavior or Workspace Manager component to save and restore layouts for all supported DevExpress controls.

See Also