DateSetSuperSmallForm.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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.ReportPrint.SuperSmallForm
  10. {
  11. public partial class DateSetSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public DateSetSuperSmallForm()
  14. {
  15. InitializeComponent();
  16. this.Load += new EventHandler(DateSetSuperSmallForm_Load);
  17. this.cmbText.SelectedIndexChanged += new EventHandler(cmbText_SelectedIndexChanged);
  18. this.btnOK.Click += new EventHandler(btnOK_Click);
  19. this.btnCancel.Click += new EventHandler(btnCancel_Click);
  20. }
  21. /// <summary>
  22. /// 窗体加载事件
  23. /// </summary>
  24. /// <param name="sender"></param>
  25. /// <param name="e"></param>
  26. protected virtual void DateSetSuperSmallForm_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 cmbText_SelectedIndexChanged(object sender, EventArgs 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. }