DXPopupServiceExtensions.ShowActionSheet(IDXPopupService, DXPopupSettings, String, String[]) Method
In This Article
Shows the DXPopupActionSheet. The ShowActionSheet
method returns the Task that contains DialogResult and completes when DXPopupActionSheet
closes.
Namespace: DevExpress.Maui.Mvvm
Assembly: DevExpress.Maui.Mvvm.dll
NuGet Package: DevExpress.Maui.Mvvm
#Declaration
C#
public static Task<string> ShowActionSheet(
this IDXPopupService service,
DXPopupSettings settings,
string cancel,
params string[] actionButtons
)
#Parameters
Name | Type | Description |
---|---|---|
service | IDXPopup |
The service of the pop-up view. |
settings | DXPopup |
The settings of the pop-up view. |
cancel | String | The caption of the Cancel button. |
action |
String[] | The collection of action buttons. |
#Returns
Type | Description |
---|---|
Task<String> | An operation that executes asynchronously, contains Dialog |
See Also