wpf-devexpress-dot-xpf-dot-ribbon-dot-backstagetabitem.md
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.v25.2.dll
NuGet Package : DevExpress.Wpf.Ribbon
public object ControlPane { get; set; }
Public Property ControlPane As Object
| Type | Description |
|---|---|
| Object |
A control displayed in the BackstageViewControl‘s right area when the tab item is selected.
|
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