Skip to main content
All docs
V25.1
  • FloatGroup.WindowStyle Property

    Gets or sets the style applied to items within a specified FloatingPaneWindow container. This is a dependency property.

    Namespace: DevExpress.Xpf.Docking

    Assembly: DevExpress.Xpf.Docking.v25.1.dll

    NuGet Package: DevExpress.Wpf.Docking

    Declaration

    public Style WindowStyle { get; set; }

    Property Value

    Type Description
    Style

    The style applied to the FloatingPaneWindow.

    Remarks

    Follow the steps below to specify whether the FloatGroup in its maximized state should overlap the Windows Taskbar.

    1. Set the DockLayoutManager.FloatingMode property to Desktop.
    2. Use the WindowStyle property to declare a style and set its TargetType property to a FloatingPaneWindow container.
    3. Set the FloatingPaneWindow.OverlapTaskbar property to True.
    <dx:ThemedWindow ...
      xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
      xmlns:dxdo="http://schemas.devexpress.com/winfx/2008/xaml/docking">
    
      <dxdo:DockLayoutManager FloatingMode="Desktop">
      <!-- ... -->
        <dxdo:DockLayoutManager.FloatGroups>
          <dxdo:FloatGroup xmlns:platform="http://schemas.devexpress.com/winfx/2008/xaml/docking/platform">
            <dxdo:FloatGroup.WindowStyle>
              <Style TargetType="platform:FloatingPaneWindow">
                <Setter Property="OverlapTaskbar" Value="True"/>
              </Style>
            </dxdo:FloatGroup.WindowStyle>
            <dxdo:LayoutPanel Caption="FloatGroup Overlaps Taskbar">
              <!-- LayoutPanel Content -->
            </dxdo:LayoutPanel>
          </dxdo:FloatGroup>
        </dxdo:DockLayoutManager.FloatGroups>
      <dxdo:DockLayoutManager>
    </dx:ThemedWindow>
    

    Docking FloatGroup - Overlap Taskbar

    See Also