예제 #1
0
파일: Dialog.cs 프로젝트: chaami/PowerArgs
 /// <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();
예제 #2
0
 /// <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();