/// <summary> /// Shows a dialog using the specified options /// </summary> /// <param name="options">the options that configure the dialog's behavior</param> /// <returns></returns> public static Promise Show(ControlDialogOptions options) => new Dialog(options).Show();
/// <summary> /// Shows a dialog using the specified options /// </summary> /// <param name="options">the options that configure the dialog's behavior</param> /// <returns></returns> public static Task Show(ControlDialogOptions options) => new Dialog(options).Show();