Skip to main content

DXPopup.AllowScrim Property

Gets or sets whether the DXPopup uses a scrim as a modal window. This is a bindable property.

Namespace: DevExpress.Maui.Controls

Assembly: DevExpress.Maui.Controls.dll

NuGet Package: DevExpress.Maui.Controls

Declaration

public bool AllowScrim { get; set; }

Property Value

Type Default Description
Boolean false

true if a scrim is enabled; otherwise, false.

Remarks

Use the AllowScrim property to disable the rest of the UI until the DXPopup is addressed. You can apply an overlay color (transparent, if required) outside the DXPopup to indicate that a user must interact with the dialog in order to return to the underlying UI. The ScrimColor property specifies the scrim color and transparency.

Example

This example shows how to specify the scrim to block interaction with the rest of the UI until a user taps the button within the Popup to close it.

Popup Dialog Scrim

<dxco:DXPopup x:Name="popup" 
              AllowScrim="True"
              ScrimColor="#b3adb9ce">
    <StackLayout WidthRequest="200">
        <Label Text="This is the DevExpress .NET MAUI Popup component displayed as a dialog. 
         Tap outside the popup to hide it." Margin="10, 10"/>
        <Button Text="Close the Popup" Clicked="ClosePopup_Clicked" 
                BackgroundColor="Transparent" TextColor="#343434"></Button>
    </StackLayout>
</dxco:DXPopup>
void ClosePopup_Clicked(System.Object sender, System.EventArgs e) {
    popup.IsOpen = false;
}
See Also