Skip to main content

BackstageViewControl.IsFullScreen Property

Gets or sets whether the BackstageViewControl occupies the entire client area of the application window. This is a dependency property.

Namespace: DevExpress.Xpf.Ribbon

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

NuGet Package: DevExpress.Wpf.Ribbon

Declaration

public bool IsFullScreen { get; set; }

Property Value

Type Description
Boolean

true, if the BackstageViewControl occupies the entire client area of the application window; otherwise, false.

Remarks

The BackstageViewControl can be displayed in the standard and full-screen modes.

In standard mode, when the IsFullScreen property is set to false, the BackstageViewControl does not occupy the entire client area of the application window and the ribbon page headers remain visible, allowing an end-user to activate the required page. See the figure below.

BackstageViewControl_IsFullScreenDisabled

In full-screen mode, when the IsFullScreen property equals true, the BackstageViewControl occupies the entire client area of the application window, as in the following image.

BackstageViewControl_IsFullScreenEnabled

The default value of the IsFullScreen property depends on the currently applied theme. You can use this property to explicitly specify whether the BackstageViewControl is displayed in standard or full-screen mode.

See Also