FlyoutBase.LightDismissOverlayMode Property
Definition
Gets or sets a value that specifies whether the area outside of a light-dismiss UI is darkened.
public:
property LightDismissOverlayMode LightDismissOverlayMode { LightDismissOverlayMode get(); void set(LightDismissOverlayMode value); };
LightDismissOverlayMode LightDismissOverlayMode();
void LightDismissOverlayMode(LightDismissOverlayMode value);
public LightDismissOverlayMode LightDismissOverlayMode { get; set; }
Public Property LightDismissOverlayMode As LightDismissOverlayMode
Property Value
A value of the enumeration that specifies whether the area outside of a light-dismiss UI is darkened. The default is Auto
.
Remarks
Transient UI, such as a Flyout or MenuFlyout, closes when you click or tap outside of it. This is called light-dismiss. "Overlay" refers to the area outside of a light-dismiss UI.
By default, the "overlay" is darkened on the Xbox, and not darkened on other devices families. You can set LightDismissOverlayMode to On
to make your app darken the "overlay" area on all device families, or set it to Off
to not darken the "overlay" area on all device families.
For more info, see Light dismiss behavior in the Flyouts article.