CoreApplicationViewTitleBar.SystemOverlayRightInset Property

Definition

Gets the width of the system-reserved region of the upper-right corner of the app window. This region is reserved when the current language is a left-to-right language.

public:
 property double SystemOverlayRightInset { double get(); };
double SystemOverlayRightInset();
public double SystemOverlayRightInset { get; }
var double = coreApplicationViewTitleBar.systemOverlayRightInset;
Public ReadOnly Property SystemOverlayRightInset As Double

Property Value

Double

double

The width of the system-reserved region of the upper-right corner of the app window.

Remarks

For applications with custom title bars, the system reserves the option to have system UI drawn in the upper-left or upper-right corner of the app window. The system draws caption buttons in the upper-right for left-to-right languages and the upper-left for right-to-left languages. The width of the reserved region on each side is given by SystemOverlayLeftInset or SystemOverlayRightInset, and its height is given by CoreApplicationViewTitleBar.Height. In the areas described by these regions, apps should not put any UI which they expect the user to be able to interact with.

Applies to