GetTimeSuperSmallForm.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 GetTimeSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public GetTimeSuperSmallForm()
  14. {
  15. InitializeComponent();
  16. this.Load += GetTimeSuperSmallForm_Load;
  17. this.txtTime.KeyDown += txtTime_KeyDown;
  18. this.btnOK.Click += btnOK_Click;
  19. this.btnCancel.Click += btnCancel_Click;
  20. }
  21. /// <summary>
  22. /// 窗体加载事件
  23. /// </summary>
  24. /// <param name="sender"></param>
  25. /// <param name="e"></param>
  26. protected virtual void GetTimeSuperSmallForm_Load(object sender, EventArgs e)
  27. {
  28. //throw new NotImplementedException();
  29. }
  30. /// <summary>
  31. /// 输入后回车
  32. /// </summary>
  33. /// <param name="sender"></param>
  34. /// <param name="e"></param>
  35. protected virtual void txtTime_KeyDown(object sender, KeyEventArgs e)
  36. {
  37. //throw new NotImplementedException();
  38. }
  39. /// <summary>
  40. /// 确定
  41. /// </summary>
  42. /// <param name="sender"></param>
  43. /// <param name="e"></param>
  44. protected virtual void btnOK_Click(object sender, EventArgs e)
  45. {
  46. //throw new NotImplementedException();
  47. }
  48. /// <summary>
  49. /// 取消
  50. /// </summary>
  51. /// <param name="sender"></param>
  52. /// <param name="e"></param>
  53. protected virtual void btnCancel_Click(object sender, EventArgs e)
  54. {
  55. //throw new NotImplementedException();
  56. }
  57. }
  58. }