DXPopupServiceExtensions.ShowCheckBoxOptionSheet(IDXPopupService, DXPopupSettings, String, String, String[]) Method
In This Article
Shows the 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
C#
public static Task<string[]> ShowCheckBoxOptionSheet(
this IDXPopupService service,
DXPopupSettings settings,
string ok,
string cancel,
params string[] optionButtons
)
#Parameters
Name | Type | Description |
---|---|---|
service | IDXPopup |
The service of the pop-up view. |
settings | DXPopup |
The settings of the pop-up view. |
ok | String | The caption of the OK button. |
cancel | String | The caption of the Cancel button. |
option |
String[] | The collection of option buttons. |
#Returns
Type | Description |
---|---|
Task<String[]> | An operation that executes asynchronously, contains Dialog |
See Also