GetDateSuperSmallForm.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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.UI.CameraControlBook.SuperSmallForm
  10. {
  11. public partial class GetDateSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public GetDateSuperSmallForm()
  14. {
  15. InitializeComponent();
  16. this.Load += GetDateSuperSmallForm_Load;
  17. this.dtpDate.KeyDown += dtpDate_KeyDown;
  18. this.dtpDate.ValueChanged += dtpDate_ValueChanged;
  19. this.btnOK.Click += btnOK_Click;
  20. this.btnCancel.Click += btnCancel_Click;
  21. }
  22. /// <summary>
  23. /// 窗体加载事件
  24. /// </summary>
  25. /// <param name="sender"></param>
  26. /// <param name="e"></param>
  27. protected virtual void GetDateSuperSmallForm_Load(object sender, EventArgs e)
  28. {
  29. //throw new NotImplementedException();
  30. }
  31. /// <summary>
  32. /// 输入后回车
  33. /// </summary>
  34. /// <param name="sender"></param>
  35. /// <param name="e"></param>
  36. protected virtual void dtpDate_KeyDown(object sender, KeyEventArgs e)
  37. {
  38. //throw new NotImplementedException();
  39. }
  40. /// <summary>
  41. /// 日期值改变事件
  42. /// </summary>
  43. /// <param name="sender"></param>
  44. /// <param name="e"></param>
  45. protected virtual void dtpDate_ValueChanged(object sender, EventArgs e)
  46. {
  47. //throw new NotImplementedException();
  48. }
  49. /// <summary>
  50. /// 确定
  51. /// </summary>
  52. /// <param name="sender"></param>
  53. /// <param name="e"></param>
  54. protected virtual void btnOK_Click(object sender, EventArgs e)
  55. {
  56. //throw new NotImplementedException();
  57. }
  58. /// <summary>
  59. /// 取消
  60. /// </summary>
  61. /// <param name="sender"></param>
  62. /// <param name="e"></param>
  63. protected virtual void btnCancel_Click(object sender, EventArgs e)
  64. {
  65. //throw new NotImplementedException();
  66. }
  67. }
  68. }