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