ThemedWindow.SaveLayoutToStream(Stream) Method
Saves the layout of the themed window to a stream.
Namespace: DevExpress.Xpf.Core
Assembly: DevExpress.Xpf.Core.v24.1.dll
NuGet Package: DevExpress.Wpf.Core
Declaration
Parameters
Name | Type | Description |
---|---|---|
stream | Stream | A stream to which the layout is stored. |
Remarks
The saved layout can be restored using the ThemedWindow.RestoreLayoutFromStream(Stream) method.
ThemedWindow can save and restore its size, position, and WindowState properties. You can set the dx:DXSerializer.Enabled attached property for ThemedWindow to True and serialize its properties using WorkspaceManager or LayoutSerializationService.
<dx:ThemedWindow dx:DXSerializer.Enabled="True">
...
</dx:ThemedWindow>
ThemedWindow provides the following methods that can save and restore the control’s properties directly:
- SaveLayoutToXml(String)
SaveLayoutToStream(Stream)
- RestoreLayoutFromXml(String)
- RestoreLayoutFromStream(Stream)
See Also