Пример #1
0
 /// <summary>
 /// Displays an error message box
 /// </summary>
 /// <param name="errorMessage">The error error message to display</param>
 /// <param name="errorTitle">The title of the error message box</param>
 /// <param name="isRTL">(Optional) If true the MessageBox FlowDirection will be RightToLeft</param>
 public static void ShowError(string errorMessage, string errorTitle, bool isRTL = false)
 {
     try
     {
         using (var msg = new CustomMsgBoxWindow())
         {
             msg.Title = errorTitle;
             msg.TitleLabel.Content   = errorTitle;
             msg.Message.Text         = errorMessage;
             msg.BorderBrush          = Brushes.Red;
             msg.BtnCancel.Visibility = Visibility.Collapsed;
             msg.MsgIcon.Kind         = PackIconMaterialKind.CloseBoxOutline;
             msg.MsgIcon.Foreground   = Brushes.Red;
             if (isRTL)
             {
                 msg.FlowDirection = FlowDirection.RightToLeft;
             }
             msg.BtnOk.Focus();
             msg.ShowDialog();
         }
     }
     catch (Exception)
     {
         MessageBox.Show(errorMessage);
     }
 }
Пример #2
0
 /// <summary>
 /// Displays a message box with a cancel button
 /// </summary>
 /// <param name="message">The message to display</param>
 /// <param name="isError">If the message is an error</param>
 /// <param name="isRTL">(Optional) If true the MessageBox FlowDirection will be RightToLeft</param>
 /// <returns>Message box Result OK or CANCEL</returns>
 public static MessageBoxResult ShowWithCancel(string message, bool isError, bool isRTL = false)
 {
     try
     {
         using (var msg = new CustomMsgBoxWindow())
         {
             msg.Title = MessageBoxTitle;
             msg.TitleLabel.Content = MessageBoxTitle;
             msg.Message.Text       = message;
             //msg.TitleBar.Background = isError
             //    ? Brushes.Red
             //    : new SolidColorBrush(Color.FromRgb(3, 169, 244));
             //msg.BorderBrush = isError
             //    ? Brushes.Red
             //    : new SolidColorBrush(Color.FromRgb(3, 169, 244));
             if (isRTL)
             {
                 msg.FlowDirection = FlowDirection.RightToLeft;
             }
             msg.BtnOk.Focus();
             msg.ShowDialog();
             return(msg.Result == MessageBoxResult.OK ? MessageBoxResult.OK : MessageBoxResult.Cancel);
         }
     }
     catch (Exception)
     {
         MessageBox.Show(message);
         return(MessageBoxResult.Cancel);
     }
 }
Пример #3
0
 /// <summary>
 /// Displays a message box with OK button
 /// </summary>
 /// <param name="message">The message to display</param>
 /// <param name="isRTL">(Optional) If true the MessageBox FlowDirection will be RightToLeft</param>
 public static void Show(string message, bool isRTL = false)
 {
     using (var msg = new CustomMsgBoxWindow())
     {
         msg.Title = MessageBoxTitle;
         msg.TitleLabel.Content   = MessageBoxTitle;
         msg.Message.Text         = message;
         msg.BorderBrush          = new SolidColorBrush(Color.FromRgb(3, 169, 244));
         msg.BtnCancel.Visibility = Visibility.Collapsed;
         if (isRTL)
         {
             msg.FlowDirection = FlowDirection.RightToLeft;
         }
         msg.BtnOk.Focus();
         msg.ShowDialog();
     }
 }
Пример #4
0
 /// <summary>
 ///  Displays a message box with OK button
 /// </summary>
 /// <param name="message">The message to display</param>
 /// <param name="title">The title of the message box</param>
 /// <param name="isRTL">(Optional) If true the MessageBox FlowDirection will be RightToLeft</param>
 public static void Show(string message, string title, bool isRTL = false)
 {
     using (var msg = new CustomMsgBoxWindow())
     {
         msg.Title = title;
         msg.TitleLabel.Content   = title;
         msg.Message.Text         = message;
         msg.BorderBrush          = new SolidColorBrush(Color.FromRgb(3, 169, 244));
         msg.BtnCancel.Visibility = Visibility.Collapsed;
         msg.MsgIcon.Kind         = PackIconMaterialKind.InformationOutline;
         msg.MsgIcon.Foreground   = Brushes.LightSteelBlue;
         if (isRTL)
         {
             msg.FlowDirection = FlowDirection.RightToLeft;
         }
         msg.BtnOk.Focus();
         msg.ShowDialog();
     }
 }