示例#1
0
 public static void ShowMessage(string msg)
 {
     //MessageBox.Show(msg, "Process Done", MessageBoxButton.OK, MessageBoxImage.Information);
     UtilWindow.ShowMessage(msg);
     SystemSounds.Asterisk.Play();
 }
示例#2
0
 public static void ShowError(string customMsg)
 {
     //MessageBox.Show(customMsg, "Error", MessageBoxButton.OK, MessageBoxImage.Error);
     UtilWindow.ShowError(customMsg);
     SystemSounds.Hand.Play();
 }