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

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.v24.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