DockLayoutManager.WindowTitleFormat Property
Gets or sets the format string used to format the window’s title. This is a dependency property.
Namespace: DevExpress.Xpf.Docking
Assembly: DevExpress.Xpf.Docking.v24.1.dll
NuGet Package: DevExpress.Wpf.Docking
Declaration
Property Value
Type | Description |
---|---|
String | The format string used to format the window’s title. |
Remarks
This property specifies the format string used to format text within the main window’s title. The format string is applied when the following conditions are met:
- your dock UI contains a DocumentGroup consisting of DocumentPanel objects.
- one of the DocumentPanel objects is maximized.
- the DockLayoutManager.ShowMaximizedDocumentCaptionInWindowTitle property is set to true.
The format specified by the WindowTitleFormat property must follow the Composite Formatting rules. See the Composite Formatting topic in MSDN to learn more.
Typically, the format string contains custom text plus the “{0}” and “{1}” identifiers:
- {0} - identifies the window’s title
- {1} - identifies the maximized DocumentPanel’s caption.
The default value of the WindowTitleFormat property is “{0} - [{1}]”. The following example shows how to swap the identifiers:
<dxdo:DockLayoutManager Name="dockManager1" ShowMaximizedDocumentCaptionInWindowTitle="True" WindowTitleFormat="{}[{1}] - {0}">
...