ArrangedDateSuperSmallForm.cs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 ArrangedDateSuperSmallForm : LYFZ.Software.UI.CameraControlBook.SuperSmallForm.ArrangedDateSuperSmallForm
  12. {
  13. public ArrangedDateSuperSmallForm()
  14. {
  15. }
  16. private string _strdate = "";
  17. public string StrDate
  18. {
  19. get { return _strdate; }
  20. set { _strdate = value; }
  21. }
  22. /// <summary>
  23. /// 输入后回车
  24. /// </summary>
  25. /// <param name="sender"></param>
  26. /// <param name="e"></param>
  27. protected override void txtDate_KeyDown(object sender, KeyEventArgs e)
  28. {
  29. if (e.KeyCode == Keys.Enter)
  30. { this.btnOK_Click(this, null); }
  31. }
  32. /// <summary>
  33. /// 日期点击赋日期
  34. /// </summary>
  35. /// <param name="sender"></param>
  36. /// <param name="e"></param>
  37. protected override void txtDate_Enter(object sender, EventArgs e)
  38. {
  39. if (this.txtDate.Text.Trim() == "")
  40. {
  41. if (LYFZ.Command.Command_Validate.IsDateTime(this.txtDate.Text.Trim()) == false)
  42. { this.txtDate.Text = SDateTime.Now.ToString("yyyy-MM-dd"); }
  43. }
  44. }
  45. /// <summary>
  46. /// 确定
  47. /// </summary>
  48. /// <param name="sender"></param>
  49. /// <param name="e"></param>
  50. protected override void btnOK_Click(object sender, EventArgs e)
  51. {
  52. if (this.txtDate.Text.Trim() != "")
  53. {
  54. if (LYFZ.Command.Command_Validate.IsDateTime(this.txtDate.Text.Trim()) == false)
  55. { MessageBoxCustom.Show("日期格式错误"); this.txtDate.Text = ""; return; }
  56. StrDate = this.txtDate.Text.Trim();
  57. this.Close();
  58. }
  59. }
  60. /// <summary>
  61. /// 取消
  62. /// </summary>
  63. /// <param name="sender"></param>
  64. /// <param name="e"></param>
  65. protected override void btnCancel_Click(object sender, EventArgs e)
  66. {
  67. this.Close();
  68. }
  69. }
  70. }