frmMessageBox.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.ComponentLibrary
  10. {
  11. public partial class frmMessageBox : LYFZ.ComponentLibrary.BaseFormSimple
  12. {
  13. public frmMessageBox()
  14. {
  15. InitializeComponent();
  16. }
  17. MessageBoxButtons _MsgBoxButtons = MessageBoxButtons.OK;
  18. /// <summary>
  19. ///
  20. /// </summary>
  21. public MessageBoxButtons MsgBoxButtons
  22. {
  23. get { return _MsgBoxButtons; }
  24. set { _MsgBoxButtons = value; }
  25. }
  26. private void btnExpandOK_Click(object sender, EventArgs e)
  27. {
  28. if (this.btnExpandOK.Text == "否")
  29. {
  30. this.DialogResult = DialogResult.No;
  31. }
  32. else
  33. {
  34. this.DialogResult = DialogResult.OK;
  35. }
  36. this.Close();
  37. }
  38. private void btnExpandNo_Click(object sender, EventArgs e)
  39. {
  40. if (this.btnExpandNo.Text == "取消")
  41. {
  42. this.DialogResult = DialogResult.Cancel;
  43. }
  44. else
  45. {
  46. this.DialogResult = DialogResult.No;
  47. }
  48. this.Close();
  49. }
  50. private void btnExpandYes_Click(object sender, EventArgs e)
  51. {
  52. this.DialogResult = DialogResult.Yes;
  53. this.Close();
  54. }
  55. private void frmMessageBox_FormClosed(object sender, FormClosedEventArgs e)
  56. {
  57. }
  58. private void frmMessageBox_Load(object sender, EventArgs e)
  59. {
  60. switch (MsgBoxButtons)
  61. {
  62. case MessageBoxButtons.OK:
  63. this.btnExpandOK.Visible = true;
  64. this.btnExpandNo.Visible = false;
  65. this.btnExpandYes.Visible = false;
  66. break;
  67. case MessageBoxButtons.YesNo:
  68. this.btnExpandNo.Visible = true;
  69. this.btnExpandYes.Visible = true;
  70. this.btnExpandOK.Visible = false;
  71. break;
  72. case MessageBoxButtons.YesNoCancel:
  73. this.btnExpandNo.Visible = true;
  74. this.btnExpandYes.Visible = true;
  75. this.btnExpandOK.Visible = true;
  76. this.btnExpandOK.Text = "否";
  77. this.btnExpandNo.Text = "取消";
  78. break;
  79. }
  80. SizeF size = this.CreateGraphics().MeasureString(this.lbMseValue.Text, this.lbMseValue.Font);
  81. if (Convert.ToInt32(size.Width) > this.Width - 10)
  82. {
  83. this.lbMseValue.TextAlign = ContentAlignment.MiddleLeft;
  84. }
  85. if (size.Width / this.Width > 3)
  86. {
  87. int tempHeight = (Convert.ToInt32(size.Width / this.Width) - 3) * 20;
  88. this.Height = this.Height + tempHeight;
  89. this.plContent.Height = this.plContent.Height + tempHeight;
  90. //this.btnExpandOK.Location = new Point(this.btnExpandOK.Location.X, this.btnExpandOK.Location.Y + tempHeight);
  91. SetButtonLocation(this.btnExpandOK,tempHeight);
  92. SetButtonLocation(this.btnExpandNo, tempHeight);
  93. SetButtonLocation(this.btnExpandYes, tempHeight);
  94. }
  95. }
  96. void SetButtonLocation(LYFZ.ComponentLibrary.ButtonExpand btn, int _y) {
  97. if (btn.Visible) {
  98. btn.Location = new Point(btn.Location.X, btn.Location.Y + _y);
  99. }
  100. }
  101. }
  102. }