MessageBoxCustom.cs 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows.Forms;
  6. namespace LYFZ
  7. {
  8. public class ItemValue
  9. {
  10. private string _text = string.Empty;
  11. public string Text
  12. {
  13. get
  14. {
  15. if (this._text != null)
  16. {
  17. return this._text;
  18. }
  19. return string.Empty;
  20. }
  21. set { _text = value; }
  22. }
  23. private object _value = string.Empty;
  24. public object Value
  25. {
  26. get { return this._value; }
  27. set { this._value = value; }
  28. }
  29. /// <summary>
  30. ///
  31. /// </summary>
  32. /// <param name="_value"></param>
  33. /// <param name="_text"></param>
  34. public ItemValue(object value, string text)
  35. {
  36. this._value = value;
  37. this._text = text;
  38. }
  39. public override string ToString()
  40. {
  41. return this._text;
  42. }
  43. }
  44. /// <summary>
  45. /// 自定义弹窗,显示可包含文本、按钮和符号(通知并指示用户)的消息框。
  46. /// </summary>
  47. public class MessageBoxCustom
  48. { /// <summary>
  49. /// 弹出消息框
  50. /// </summary>
  51. /// <param name="msg">要显示的消息</param>
  52. /// <param name="title">标题 可以省略</param>
  53. /// <returns></returns>
  54. public static DialogResult Show(string msg, string title = "提示消息!", MessageBoxButtons msgBoxButton = MessageBoxButtons.OK, System.ComponentModel.BackgroundWorker backgroundWorker=null)
  55. {
  56. try
  57. {
  58. if (backgroundWorker != null)
  59. {
  60. backgroundWorker.ReportProgress(-1);
  61. }
  62. }
  63. catch {
  64. backgroundWorker.Dispose();
  65. backgroundWorker = null;
  66. }
  67. LYFZ.ComponentLibrary.frmMessageBox msgBox = new LYFZ.ComponentLibrary.frmMessageBox();
  68. msgBox.Text = title;
  69. msgBox.lbMseValue.Text = msg;
  70. msgBox.MsgBoxButtons = msgBoxButton;
  71. DialogResult dialogResult=msgBox.ShowDialog();
  72. try
  73. {
  74. if (backgroundWorker != null)
  75. {
  76. backgroundWorker.ReportProgress(0);
  77. }
  78. }
  79. catch { }
  80. return dialogResult; //msgBox.DialogResult;
  81. }
  82. }
  83. }