GetTextSuperSmallForm.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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.Software.MainBusiness.CameraControlBook.SuperSmallForm
  10. {
  11. public partial class GetTextSuperSmallForm : LYFZ.Software.UI.CameraControlBook.SuperSmallForm.GetTextSuperSmallForm
  12. {
  13. public GetTextSuperSmallForm()
  14. {
  15. this.txtText.KeyPress += txtText_KeyPress;
  16. }
  17. /// <summary>
  18. /// 确定后的Value值
  19. /// </summary>
  20. public string StrValue = "";
  21. /// <summary>
  22. /// 是否确定
  23. /// </summary>
  24. public bool IsOK = false;
  25. /// <summary>
  26. /// 输入控制类型
  27. /// 空或null为不限制
  28. /// Int:为只能输入整数
  29. /// Decimal:为只能输入金额
  30. /// </summary>
  31. public string strKeyPressType = "";
  32. /// <summary>
  33. /// 是否验证值的大小
  34. /// </summary>
  35. public bool IsValidationValueSize = false;
  36. /// <summary>
  37. /// 是否可以为空值
  38. /// </summary>
  39. public bool IsValueNull = false;
  40. /// <summary>
  41. /// 窗体加载事件
  42. /// </summary>
  43. /// <param name="sender"></param>
  44. /// <param name="e"></param>
  45. protected override void GetTextSuperSmallForm_Load(object sender, EventArgs e)
  46. {
  47. this.txtText.Focus();
  48. this.txtText.Text = StrValue;
  49. this.txtText.Tag = StrValue;
  50. }
  51. /// <summary>
  52. /// 输入后回车
  53. /// </summary>
  54. /// <param name="sender"></param>
  55. /// <param name="e"></param>
  56. protected override void txtText_KeyDown(object sender, KeyEventArgs e)
  57. {
  58. if (e.KeyCode == Keys.Enter)
  59. { this.btnOK_Click(this, null); }
  60. }
  61. /// <summary>
  62. /// 确定
  63. /// </summary>
  64. /// <param name="sender"></param>
  65. /// <param name="e"></param>
  66. protected override void btnOK_Click(object sender, EventArgs e)
  67. {
  68. if (!IsValueNull)
  69. {
  70. if (this.txtText.Text.Trim() == "")
  71. { return; }
  72. }
  73. if (IsValidationValueSize)
  74. {
  75. if (this.txtText.Tag.ToString().Trim() != "")
  76. {
  77. if (Convert.ToDecimal(this.txtText.Text) > Convert.ToDecimal(this.txtText.Tag))
  78. { MessageBoxCustom.Show("输入的值不能大于" + this.Text.Trim()); this.txtText.Text = StrValue; return; }
  79. }
  80. }
  81. this.IsOK = true;
  82. this.StrValue = this.txtText.Text.Trim();
  83. this.Close();
  84. }
  85. /// <summary>
  86. /// 取消
  87. /// </summary>
  88. /// <param name="sender"></param>
  89. /// <param name="e"></param>
  90. protected override void btnCancel_Click(object sender, EventArgs e)
  91. {
  92. this.StrValue = "";
  93. this.Close();
  94. }
  95. /// <summary>
  96. /// 输入控制
  97. /// </summary>
  98. /// <param name="sender"></param>
  99. /// <param name="e"></param>
  100. void txtText_KeyPress(object sender, KeyPressEventArgs e)
  101. {
  102. if (!string.IsNullOrEmpty(strKeyPressType))
  103. {
  104. if (strKeyPressType == "Int")
  105. {
  106. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar) && !Char.IsLetterOrDigit(e.KeyChar))
  107. { e.Handled = true; }
  108. }
  109. else if (strKeyPressType == "Decimal")
  110. {
  111. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  112. { e.Handled = true; }
  113. else if (Char.IsPunctuation(e.KeyChar))
  114. {
  115. if (e.KeyChar == '.')
  116. {
  117. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
  118. { e.Handled = true; }
  119. }
  120. else if (e.KeyChar == '-')
  121. {
  122. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.Trim().Length <= 0)
  123. {
  124. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('-') != -1)
  125. { e.Handled = true; }
  126. }
  127. else
  128. { e.Handled = true; }
  129. }
  130. else
  131. { e.Handled = true; }
  132. }
  133. }
  134. }
  135. }
  136. }
  137. }