Back to Devexpress

BaseLayoutItem.ShowCaptionImage Property

wpf-devexpress-dot-xpf-dot-docking-dot-baselayoutitem-aceb75e3.md

latest2.3 KB
Original Source

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

NuGet Package : DevExpress.Wpf.Docking

Declaration

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

Property Value

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

xaml
<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>

See Also

CaptionImage

IsCaptionVisible

BaseLayoutItem Class

BaseLayoutItem Members

DevExpress.Xpf.Docking Namespace