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

TabControlViewBase.AllowHideTabItems Property

OBSOLETE

Use the HideButtonShowMode property.

Gets or sets whether the tab items can be hidden by end-users. This is a dependency property.

Namespace: DevExpress.Xpf.Core

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

NuGet Package: DevExpress.Wpf.Core

#Declaration

[Obsolete("Use the HideButtonShowMode property.")]
public bool AllowHideTabItems { get; set; }

#Property Value

Type Description
Boolean

true to allow end-users to hide tab items; otherwise, false.

#Remarks

End-users can hide individual tab items by clicking the close button, displayed within their headers. If the AllowHideTabItems property is set to false, the close button is not visible. In this instance, end-users are not allowed to hide tab items.

To specify whether an individual tab item can be hidden, use the DXTabItem.AllowHide property. If this property is set to DefaultBoolean.Default, the AllowHideTabItems property is in effect. Otherwise, the DXTabItem.AllowHide property overrides the AllowHideTabItems property.

To learn more, see Showing and Hiding Tab Items.

See Also