Ghost1372

everything can be handy

ContentDialog Extensions

ShowAsyncQueue

This Extension can fix following error:

Only one ContentDialog can be shown at a time. To chain together more than one ContentDialog, handle the Closing event of the first ContentDialog. In the Closing event handler, call ShowAsync on the second dialog to show it.

1
contentDialog.ShowAsyncQueue();

ShowAsyncDraggable

1
contentDialog.ShowAsyncDraggable();

ShowAsyncQueueDraggable

1
contentDialog.ShowAsyncQueueDraggable();

Demo

you can run demo and see this feature.

0%