Skip to main content
A newer version of this page is available. .

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Docking, DevExpress.Wpf.Navigation

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

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ShowCaptionImage property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also