windowsforms-devexpress-dot-xtrabars-dot-barmanager-dot-restorefromxml-x28-system-dot-string-x29.md
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
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual void RestoreFromXml(
string xmlFile
)
<EditorBrowsable(EditorBrowsableState.Never)>
Public Overridable Sub RestoreFromXml(
xmlFile As String
)
| Name | Type | Description |
|---|---|---|
| xmlFile | String |
An xml file from which the BarManager component’s state is restored.
|
This method is obsolete. Use the BarManager.RestoreLayoutFromXml method instead.
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);
Dim xmlFile As String = "c:\XtraBars\States\MainState.xml"
BarManager1.SaveLayoutLayoutToXml(xmlFile)
'...
BarManager1.RestoreLayoutLayoutFromXml(xmlFile)
See Also
Saving and Restoring a Bars Layout Manually