예제 #1
0
 internal DialogSession(string dialogIdentifier, MaterialDialog dialog, double dialogWidth)
 {
     this.dialogIdentifier = dialogIdentifier;
     this.dialogWidth      = dialogWidth;
     Dialog = dialog;
 }
예제 #2
0
 public MaterialWindow(MaterialDialog dialog)
 {
     Dialog = dialog;
 }
예제 #3
0
 public Task <bool?> ShowDialog(MaterialDialog dialog, double dialogWidth) => ShowDialogTracked(dialog, dialogWidth).Task;
예제 #4
0
 public DialogSession ShowDialogTracked(MaterialDialog dialog) => ShowDialogTracked(dialog, double.NaN);
예제 #5
0
 public Task <bool?> ShowDialog(MaterialDialog dialog) => ShowDialog(dialog, double.NaN);