FloatGroup.WindowTaskbarTitle Attached Property
Gets or sets a title displayed for the current float group in the Windows Taskbar. This is an attached property.
Namespace: DevExpress.Xpf.Docking
Assembly: DevExpress.Xpf.Docking.v24.1.dll
NuGet Package: DevExpress.Wpf.Docking
Declaration
Returns
Type | Description |
---|---|
String | A string value that specifies the title displayed for the current float group in the Windows Taskbar. |
Remarks
Use the WindowTaskbarTitle and WindowTaskbarIcon attached properties to specify a different caption and image.
The following code sample specifies the FloatGroup‘s taskbar icon and title:
<dx:ThemedWindow
...
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
xmlns:dxdo="http://schemas.devexpress.com/winfx/2008/xaml/docking">
<dxdo:DockLayoutManager>
<dxdo:DockLayoutManager.FloatGroups>
<dxdo:FloatGroup>
<dxdo:LayoutPanel Caption="Panel1" dxdo:FloatGroup.WindowTaskbarTitle="Document"
dxdo:FloatGroup.WindowTaskbarIcon="{dx:DXImage Images/Pages/PageOrientationPortrait_32x32.png}"/>
</dxdo:FloatGroup>
</dxdo:DockLayoutManager.FloatGroups>
</dxdo:DockLayoutManager>
</dx:ThemedWindow>
Note
The WindowTaskbarTitle and WindowTaskbarIcon properties have effect only when DockLayoutManager.FloatingMode is Desktop.
See Also