ConditionQuerySuperSmallForm.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.UI.CameraControlBook.SuperSmallForm
  11. {
  12. public partial class ConditionQuerySuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public ConditionQuerySuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  18. this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  19. this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  20. this.panelEx2.BorderStyle = BorderStyle.FixedSingle;
  21. this.labelEx4.ForeColor = UIBlueThemeResources.TitleTextColor;
  22. this.Load += new EventHandler(ConditionQuerySuperSmallForm_Load);
  23. this.chkData1.Click += new EventHandler(chkData1_Click);
  24. this.chkData2.Click += new EventHandler(chkData2_Click);
  25. this.chkData3.Click += new EventHandler(chkData3_Click);
  26. this.btnOK.Click += new EventHandler(btnOK_Click);
  27. this.btnCancel.Click += new EventHandler(btnCancel_Click);
  28. }
  29. /// <summary>
  30. /// 窗体加载事件
  31. /// </summary>
  32. /// <param name="sender"></param>
  33. /// <param name="e"></param>
  34. protected virtual void ConditionQuerySuperSmallForm_Load(object sender, EventArgs e)
  35. {
  36. //throw new NotImplementedException();
  37. }
  38. /// <summary>
  39. /// 订单时间
  40. /// </summary>
  41. /// <param name="sender"></param>
  42. /// <param name="e"></param>
  43. protected virtual void chkData1_Click(object sender, EventArgs e)
  44. {
  45. //throw new NotImplementedException();
  46. }
  47. /// <summary>
  48. /// 取件时间
  49. /// </summary>
  50. /// <param name="sender"></param>
  51. /// <param name="e"></param>
  52. protected virtual void chkData2_Click(object sender, EventArgs e)
  53. {
  54. //throw new NotImplementedException();
  55. }
  56. /// <summary>
  57. /// 婚期
  58. /// </summary>
  59. /// <param name="sender"></param>
  60. /// <param name="e"></param>
  61. protected virtual void chkData3_Click(object sender, EventArgs e)
  62. {
  63. //throw new NotImplementedException();
  64. }
  65. /// <summary>
  66. /// 确定
  67. /// </summary>
  68. /// <param name="sender"></param>
  69. /// <param name="e"></param>
  70. protected virtual void btnOK_Click(object sender, EventArgs e)
  71. {
  72. //throw new NotImplementedException();
  73. }
  74. /// <summary>
  75. /// 取消
  76. /// </summary>
  77. /// <param name="sender"></param>
  78. /// <param name="e"></param>
  79. protected virtual void btnCancel_Click(object sender, EventArgs e)
  80. {
  81. //throw new NotImplementedException();
  82. }
  83. }
  84. }