Skip to main content
Bar

BarManager.RestoreFromXml(String) Method

SECURITY-RELATED CONSIDERATIONS

Deserializing layout settings from untrusted resources may create security issues. Review the following help topic for additional information: Safe Deserialization.

Restores the BarManager component state from an xml file.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v25.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[EditorBrowsable(EditorBrowsableState.Never)]
public virtual void RestoreFromXml(
    string xmlFile
)

Parameters

Name Type Description
xmlFile String

An xml file from which the BarManager component’s state is restored.

Remarks

This method is obsolete. Use the BarManager.RestoreLayoutFromXml method instead.

Example

The following code can be used to read and write a BarManager’s state from/to an XML file.

string xmlFile = "c:\\XtraBars\\States\\MainState.xml";
barManager1.SaveLayoutToXml(xmlFile);

//...

barManager1.RestoreLayoutFromXml(xmlFile);
See Also