DxWindow.ShowAtAsync(Point, CancellationToken) Method
Asynchronously shows the Window at the specified point.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
public Task ShowAtAsync(
Point point,
CancellationToken token = default(CancellationToken)
)
Parameters
Name | Type | Description |
---|---|---|
point | Point | The X and Y coordinates of the Window’s top left corner. |
Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
token | CancellationToken | null | An object that propagates a cancellation notification. |
Returns
Type | Description |
---|---|
Task | An asynchronous operation that shows the Window. |
Remarks
You can also use other ShowAtAsync
method overloads to show the window.
See Also