Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DockLayoutManager.ShowInvisibleItems Property

Gets or sets whether invisible items are displayed within a layout. This is a dependency property.

Namespace: DevExpress.Xpf.Docking

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

NuGet Package: DevExpress.Wpf.Docking

#Declaration

public bool? ShowInvisibleItems { get; set; }

#Property Value

Type Description
Nullable<Boolean>

A Nullable Boolean value that specifies whether invisible items are displayed within the layout.

#Remarks

An item’s visibility within a layout is specified by the Visibility property. Invisible items are those that have the Visibility property set to Hidden or Collapsed. By default, when the ShowInvisibleItems property is set to null, invisible items are not displayed when layout customization is not active, and they become visible when layout customization starts. Set the ShowInvisibleItems property to true to always display invisible items. Set this property to false to hide invisible items, even in customization mode.

See Also