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

TabControlTabHidingEventArgs Class

Provides data for the DXTabControl.TabHiding event.

Namespace: DevExpress.Xpf.Core

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

NuGet Package: DevExpress.Wpf.Core

#Declaration

public class TabControlTabHidingEventArgs :
    TabControlCommonCancelEventArgsBase

#Remarks

The DXTabControl.TabHiding event is fired before a tab item is hidden, allowing you to cancel the action. To do this, set the event parameter’s TabControlTabHiddingEventArgs.Cancel property to true. Use the TabControlTabHiddingEventArgs.TabIndex property to obtain the index of the tab item that is being hidden.

After the tab item has been hidden, the DXTabControl.TabHidden event is fired.

See Also