Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.2.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>

DockLayoutManager - WindowTaskBarTitle and WindowTaskBarIcon Properties

Note

The WindowTaskbarTitle and WindowTaskbarIcon properties have effect only when DockLayoutManager.FloatingMode is Desktop.

See Also