Skip to main content

IDXPopupService.ShowCheckBoxOptionSheet(DXPopupSettings, String, String, DXPopupOptionInfo[]) Method

Shows DXPopupOptionSheet that contains checkboxes. The ShowCheckBoxOptionSheet method returns Task, which contains DialogResult, and completes when DXPopupOptionSheet closes.

Namespace: DevExpress.Maui.Mvvm

Assembly: DevExpress.Maui.Mvvm.dll

NuGet Package: DevExpress.Maui.Mvvm

Declaration

Task<string[]> ShowCheckBoxOptionSheet(
    DXPopupSettings settings,
    string ok,
    string cancel,
    params DXPopupOptionInfo[] optionButtons
)

Parameters

Name Type Description
settings DXPopupSettings

The settings of the pop-up view.

ok String

The caption of the OK button.

cancel String

The caption of the Cancel button.

optionButtons DXPopupOptionInfo[]

The collection of option buttons.

Returns

Type Description
Task<String[]>

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

See Also