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

NewButtonShowMode Enum

Lists values that specify where to show the New button.

Namespace: DevExpress.Xpf.Core

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

NuGet Package: DevExpress.Wpf.Core

#Declaration

[Flags]
public enum NewButtonShowMode

#Members

Name Description
NoWhere

The New Button is not shown.

InHeaderArea

The New Button is shown in the Header Area.

InTabPanel

The New Button is located inside the Tab Panel, next to tab item headers.

InHeaderAreaAndTabPanel

The New Button is shown in the Tab Panel and Header Area simultaneously.

#Related API Members

The following properties accept/return NewButtonShowMode values:

#Remarks

The values listed by this enumeration are used to set the TabControlViewBase.NewButtonShowMode property’s value.

  • NoWhere - the New Button is not shown.

    TabControl_NewButtonShowMode_NoWhere

  • InHeaderArea - the New Button is located inside the Header Area.

    TabControl_NewButtonShowMode_InHeaderArea

  • InTabPanel - the New Button is located inside the Tab Panel, next to tab item headers.

    TabControl_NewButtonShowMode_InTabPanel

  • InHeaderAreaAndTabPanel - the New Button is shown in the Tab Panel and Header Area simultaneously.

    TabControl_NewButtonShowMode_InHeaderAreaAndTabPanel

See Also