GetDateSuperSmallForm.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 GetDateSuperSmallForm : LYFZ.Software.UI.CameraControlBook.SuperSmallForm.GetDateSuperSmallForm
  12. {
  13. public GetDateSuperSmallForm()
  14. {
  15. }
  16. private string _strvalue = "";
  17. public string StrValue
  18. {
  19. get { return _strvalue; }
  20. set { _strvalue = value; }
  21. }
  22. /// <summary>
  23. /// 是否确定
  24. /// </summary>
  25. public bool IsOK = false;
  26. /// <summary>
  27. /// 是否允许值为空
  28. /// </summary>
  29. public bool IsValueNull = true;
  30. /// <summary>
  31. /// 窗体加载事件
  32. /// </summary>
  33. /// <param name="sender"></param>
  34. /// <param name="e"></param>
  35. protected override void GetDateSuperSmallForm_Load(object sender, EventArgs e)
  36. {
  37. this.dtpDate.DateValue = LYFZ.Command.Command_Validate.DateTimeToString(SDateTime.Now);
  38. }
  39. /// <summary>
  40. /// 输入后回车
  41. /// </summary>
  42. /// <param name="sender"></param>
  43. /// <param name="e"></param>
  44. protected override void dtpDate_KeyDown(object sender, KeyEventArgs e)
  45. {
  46. if (e.KeyCode == Keys.Enter)
  47. { this.btnOK_Click(this, null); }
  48. }
  49. /// <summary>
  50. /// 日期值改变事件
  51. /// </summary>
  52. /// <param name="sender"></param>
  53. /// <param name="e"></param>
  54. protected override void dtpDate_ValueChanged(object sender, EventArgs e)
  55. {
  56. this.dtpDate.CustomFormat = "yyyy-MM-dd";
  57. }
  58. /// <summary>
  59. /// 确定
  60. /// </summary>
  61. /// <param name="sender"></param>
  62. /// <param name="e"></param>
  63. protected override void btnOK_Click(object sender, EventArgs e)
  64. {
  65. if (!IsValueNull)
  66. {
  67. if (string.IsNullOrEmpty(this.dtpDate.DateValue))
  68. { MessageBoxCustom.Show("日期不允许为空!"); return; }
  69. }
  70. IsOK = true;
  71. StrValue = this.dtpDate.DateValue;
  72. this.Close();
  73. }
  74. /// <summary>
  75. /// 取消
  76. /// </summary>
  77. /// <param name="sender"></param>
  78. /// <param name="e"></param>
  79. protected override void btnCancel_Click(object sender, EventArgs e)
  80. {
  81. this.Close();
  82. }
  83. }
  84. }