Skip to main content
A newer version of this page is available. .

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.v19.2.dll

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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the ControlPane property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also