Back to Devexpress

LayoutPanel.ShowMinimizeButton Property

wpf-devexpress-dot-xpf-dot-docking-dot-layoutpanel-15aa0b04.md

latest2.2 KB
Original Source

LayoutPanel.ShowMinimizeButton Property

Gets or sets whether the minimize button is shown in the LayoutPanel. This property is supported for floating panels. This is a dependency property.

Namespace : DevExpress.Xpf.Docking

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

NuGet Package : DevExpress.Wpf.Docking

Declaration

csharp
public bool ShowMinimizeButton { get; set; }
vb
Public Property ShowMinimizeButton As Boolean

Property Value

TypeDescription
Boolean

true, if the minimize button is shown; otherwise, false.

|

Remarks

The following code sample hides the Panel2 LayoutPanel‘s minimize button:

xaml
<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="Panel2" ShowMinimizeButton="False"/>
      </dxdo:FloatGroup>
    </dxdo:DockLayoutManager.FloatGroups>
  </dxdo:DockLayoutManager>
</dx:ThemedWindow>

Note

If the BaseLayoutItem.AllowMinimize property is set to false , the minimize button is not displayed.

See Also

ShowMaximizeButton

ShowRestoreButton

AllowMinimize

LayoutPanel Class

LayoutPanel Members

DevExpress.Xpf.Docking Namespace