WinMessageBox.cs 893 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. namespace CommonUtils.Msgbox
  8. {
  9. public class WinMessageBox
  10. {
  11. public static void Show(string text)
  12. {
  13. MessageBox.Show(text, "提示", MessageBoxButton.OK, MessageBoxImage.Information);
  14. }
  15. public static void Warning(string text)
  16. {
  17. MessageBox.Show(text, "预警", MessageBoxButton.OK, MessageBoxImage.Warning);
  18. }
  19. public static void Error(string text)
  20. {
  21. MessageBox.Show(text, "异常", MessageBoxButton.OK, MessageBoxImage.Error);
  22. }
  23. public static bool Question(string text)
  24. {
  25. return MessageBox.Show(text, "确认", MessageBoxButton.OKCancel, MessageBoxImage.Question) == MessageBoxResult.OK;
  26. }
  27. }
  28. }