Skip to main content

DevExpress Popup for .NET MAUI

The DevExpress DXPopup for .NET MAUI allows you to show a Popup that overlays application content. You can attach the DXPopup control to any view on the screen or show it as a separate dialog.

DevExpress Popup for .NET MAUI

Review our demo app on GitHub to try out the DXPopup control:

View Example

Add a Popup to the Page

Before you proceed, read the following topic: Get Started with DevExpress Controls for .NET Multi-platform App UI (.NET MAUI).

The following example adds the Popup to a page:

<ContentPage ...
    xmlns:dxco="clr-namespace:DevExpress.Maui.Controls;assembly=DevExpress.Maui.Controls">
    <dxco:DXPopup x:Name="Popup" ... >
        <!--...-->
    </dxco:DXPopup>
</ContentPage>
private void Button_Clicked(object sender, EventArgs e) {
    Popup.IsOpen = true;
}