GetTextRemarkSuperSmallForm.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 GetTextRemarkSuperSmallForm : LYFZ.Software.UI.CameraControlBook.SuperSmallForm.GetTextRemarkSuperSmallForm
  12. {
  13. public GetTextRemarkSuperSmallForm()
  14. {
  15. }
  16. /// <summary>
  17. /// txtText的Value值
  18. /// </summary>
  19. public string StrValue = "";
  20. /// <summary>
  21. /// 是否保存
  22. /// </summary>
  23. public bool IsSaveed = false;
  24. /// <summary>
  25. /// 备注的长度
  26. /// </summary>
  27. public int txtMaxLength = 0;
  28. /// <summary>
  29. /// 按回车键是否结束输入
  30. /// </summary>
  31. public bool IsKeyEnterToOk = true;
  32. /// <summary>
  33. /// 窗体加载事件
  34. /// </summary>
  35. /// <param name="sender"></param>
  36. /// <param name="e"></param>
  37. protected override void GetTextRemarkSuperSmallForm_Load(object sender, EventArgs e)
  38. {
  39. if (this.txtMaxLength > 0)
  40. { this.txtText.MaxLength = this.txtMaxLength; }
  41. this.txtText.Text = StrValue;
  42. this.txtText.Focus();
  43. }
  44. /// <summary>
  45. /// 输入后回车
  46. /// </summary>
  47. /// <param name="sender"></param>
  48. /// <param name="e"></param>
  49. protected override void txtText_KeyDown(object sender, KeyEventArgs e)
  50. {
  51. if (IsKeyEnterToOk)
  52. {
  53. if (e.KeyCode == Keys.Enter)
  54. { this.btnOK_Click(this, null); }
  55. }
  56. }
  57. /// <summary>
  58. /// 确定
  59. /// </summary>
  60. /// <param name="sender"></param>
  61. /// <param name="e"></param>
  62. protected override void btnOK_Click(object sender, EventArgs e)
  63. {
  64. this.IsSaveed = true;
  65. this.StrValue = this.txtText.Text.Trim();
  66. this.Close();
  67. }
  68. /// <summary>
  69. /// 取消
  70. /// </summary>
  71. /// <param name="sender"></param>
  72. /// <param name="e"></param>
  73. protected override void btnCancel_Click(object sender, EventArgs e)
  74. { this.Close(); }
  75. }
  76. }