示例#1
0
 public static string ShowDialog(string Text, Buttons buttons)
 {
     ShowBlurEffectAllWindow();
     View.CustomDialog messageBox = new View.CustomDialog(Text, buttons);
     messageBox.ShowDialog();
     StopBlurEffectAllWindow();
     return(messageBox.ReturnString);
 }
示例#2
0
 public static string Show(string Text, Buttons buttons)
 {
     View.CustomDialog messageBox = new View.CustomDialog(Text, buttons);
     messageBox.Show();
     return(messageBox.ReturnString);
 }