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

BackstageTabItem.ControlPane Property

Gets or sets a control displayed in the BackstageViewControl‘s right area when the tab item is selected.

Namespace: DevExpress.Xpf.Ribbon

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

NuGet Package: DevExpress.Wpf.Ribbon

#Declaration

public object ControlPane { get; set; }

#Property Value

Type Description
Object

A control displayed in the BackstageViewControl‘s right area when the tab item is selected.

#Remarks

The BackstageViewControl consists of two areas: the left one contains regular and tab items. The right one displays a tab item’s contents when it is clicked. In order to change this control, you must use a ControlPane property. It accepts any visual control (such as ContentControl or Grid), but only one at a time. If you want to use several controls (buttons, text fields etc.) inside a ControlPane, place them inside a container control (for instance, Grid) and initialize the ControlPane by this parent control.

A ControlPane is displayed when the BackstageTabItem is selected.

See Also