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

DXPopupServiceExtensions.ShowActionSheet(IDXPopupService, DXPopupSettings, String, String[]) Method

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 IDXPopupService

The service of the pop-up view.

settings DXPopupSettings

The settings of the pop-up view.

cancel String

The caption of the Cancel button.

actionButtons String[]

The collection of action buttons.

#Returns

Type Description
Task<String>

An operation that executes asynchronously, contains DialogResult, and completes when DXPopupActionSheet closes.

See Also