wpf-devexpress-dot-xpf-dot-docking-dot-baselayoutitem-aceb75e3.md
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
public bool ShowCaptionImage { get; set; }
Public Property ShowCaptionImage As Boolean
| Type | Description |
|---|---|
| Boolean |
true if the BaseLayoutItem.CaptionImage is visible; otherwise, false.
|
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>
See Also