Skip to main content

BaseLayoutItem.ShowCaptionImage Property

Gets or sets whether the BaseLayoutItem.CaptionImage is visible. This is a dependency property.

Namespace: DevExpress.Xpf.Docking

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

NuGet Package: DevExpress.Wpf.Docking

Declaration

public bool ShowCaptionImage { get; set; }

Property Value

Type Description
Boolean

true if the BaseLayoutItem.CaptionImage is visible; otherwise, false.

Remarks

The following code sample hides the Error icon specified in the BaseLayoutItem.CaptionImage property.

<dx:ThemedWindow
  ...
  xmlns:dxdo="http://schemas.devexpress.com/winfx/2008/xaml/docking"
  xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core">
  <dxdo:DockLayoutManager>
    <dxdo:LayoutGroup Caption="LayoutRoot">
      <dxdo:TabbedGroup>
        <dxdo:LayoutPanel Caption="Error List" 
        CaptionImage="{dx:DXImage Image=Error_16x16.png}" ShowCaptionImage="False"/>
        <dxdo:LayoutPanel Caption="Output"/>
        <dxdo:LayoutPanel Caption="Find Results"/>
        <dxdo:LayoutPanel Caption="Solution Explorer"/>
      </dxdo:TabbedGroup>
    </dxdo:LayoutGroup>
  </dxdo:DockLayoutManager>
</dx:ThemedWindow>

DockLayoutManager - ShowCaptionImage property

See Also