DXPopupDialog.ShowAtAsync(Double, Double, Double, Element) Method
Shows the DXPopupDialog at the specified position asynchronously. The ShowAtAsync method returns the Task that contains the DialogResult, and completes when the DXPopupDialog closes.
Namespace: DevExpress.Maui.Controls
Assembly: DevExpress.Maui.Controls.dll
NuGet Package: DevExpress.Maui.Controls
Declaration
public Task<string> ShowAtAsync(
double x,
double y,
double offset = 0,
Element parent = null
)
Parameters
| Name | Type | Description |
|---|---|---|
| x | Double | Specifies the horizontal coordinate. |
| y | Double | Specifies the vertical coordinate. |
Optional Parameters
| Name | Type | Default | Description |
|---|---|---|---|
| offset | Double | 0 | Specifies the vertical offset. |
| parent | Element | null | Specifies the parent view. |
Returns
| Type | Description |
|---|---|
| Task<String> | An operation that executes asynchronously, contains the DialogResult, and completes when the DXPopupDialog closes. |
See Also