Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IDXPopupService Members

Provides access to methods that show a pop-up view.

#Methods

Name Description
ShowActionSheet(DXPopupSettings, String, DXPopupActionInfo[]) Opens DXPopupActionSheet. The ShowActionSheet method returns Task, which contains a dialog result, and completes when DXPopupActionSheet closes.
ShowAlert(DXPopupSettings, String, String) Shows the DXPopupDialog and returns the Task that completes when the DXPopupDialog closes.
ShowCheckBoxOptionSheet(DXPopupSettings, String, String, DXPopupOptionInfo[]) Opens DXPopupOptionSheet that contains checkboxes. The ShowCheckBoxOptionSheet method returns Task, which contains a dialog result, and completes when DXPopupOptionSheet closes.
ShowPopup<TPopupViewModel>(TPopupViewModel) Shows the custom pop-up view registered in IDXPopupService through the AddTransientDXPopup method. The ShowPopup method returns Task that completes when the pop-up view closes.
ShowPopup<TPopupViewModel>(Action<TPopupViewModel>) Shows the custom pop-up view registered in IDXPopupService through the AddTransientDXPopup method. The ShowPopup method returns Task that contains the View Model and completes when the pop-up view closes.
ShowRadioOptionSheet(DXPopupSettings, String, String, DXPopupOptionInfo[]) Opens DXPopupOptionSheet that contains radio buttons. The ShowRadioOptionSheet method returns the Task, which contains a dialog result, and completes when DXPopupOptionSheet closes.
See Also