CoreApplicationViewTitleBar.SystemOverlayLeftInset Property

Definition

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

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

Property Value

Double

double

The width of the system-reserved region of the upper-left 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