Skip to main content

DXPopup.ShowAtAsync(Double, Double, Double, Element) Method

Shows the DXPopup at the specified position asynchronously and returns the Task that completes when the DXPopup closes.

Namespace: DevExpress.Maui.Controls

Assembly: DevExpress.Maui.Controls.dll

NuGet Package: DevExpress.Maui.Controls

Declaration

public Task 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

An operation that executes asynchronously and completes when the DXPopup closes.

See Also