CameraControlBookOverviewSmallForm.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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.SmallForm
  11. {
  12. public partial class CameraControlBookOverviewSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public CameraControlBookOverviewSmallForm()
  15. {
  16. InitializeComponent();
  17. this.UcNavigationTool.LabTitle = "摄控本 > 摄控总览";
  18. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  19. this.labelEx2.ForeColor = UIBlueThemeResources.TitleTextColor;
  20. this.labelEx3.ForeColor = UIBlueThemeResources.TitleTextColor;
  21. this.labelEx4.ForeColor = UIBlueThemeResources.TitleTextColor;
  22. this.labelEx5.ForeColor = UIBlueThemeResources.TitleTextColor;
  23. this.labelEx6.ForeColor = UIBlueThemeResources.TitleTextColor;
  24. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  25. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  26. this.flowLayoutPanel1.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  27. this.Shown += CameraControlBookOverviewSmallForm_Shown;
  28. this.Load += CameraControlBookOverviewSmallForm_Load;
  29. this.dtpDate.KeyDown += dtpDate_KeyDown;
  30. this.btnQuery.Click += btnQuery_Click;
  31. this.btnColse.Click += btnColse_Click;
  32. this.chkDressVersion.Click += chkDressVersion_Click;
  33. this.chkKidsVersion.Click += chkKidsVersion_Click;
  34. this.chkPortraitVersion.Click += chkPortraitVersion_Click;
  35. }
  36. /// <summary>
  37. /// 窗体加载事件
  38. /// </summary>
  39. /// <param name="sender"></param>
  40. /// <param name="e"></param>
  41. protected virtual void CameraControlBookOverviewSmallForm_Shown(object sender, EventArgs e)
  42. {
  43. //throw new NotImplementedException();
  44. }
  45. /// <summary>
  46. /// 窗体加载事件
  47. /// </summary>
  48. /// <param name="sender"></param>
  49. /// <param name="e"></param>
  50. protected virtual void CameraControlBookOverviewSmallForm_Load(object sender, EventArgs e)
  51. {
  52. //throw new NotImplementedException();
  53. }
  54. /// <summary>
  55. /// 回车
  56. /// </summary>
  57. /// <param name="sender"></param>
  58. /// <param name="e"></param>
  59. protected virtual void dtpDate_KeyDown(object sender, KeyEventArgs e)
  60. {
  61. //throw new NotImplementedException();
  62. }
  63. /// <summary>
  64. /// 查询
  65. /// </summary>
  66. /// <param name="sender"></param>
  67. /// <param name="e"></param>
  68. protected virtual void btnQuery_Click(object sender, EventArgs e)
  69. {
  70. //throw new NotImplementedException();
  71. }
  72. /// <summary>
  73. /// 关闭
  74. /// </summary>
  75. /// <param name="sender"></param>
  76. /// <param name="e"></param>
  77. protected virtual void btnColse_Click(object sender, EventArgs e)
  78. {
  79. //throw new NotImplementedException();
  80. }
  81. /// <summary>
  82. /// 婚纱版
  83. /// </summary>
  84. /// <param name="sender"></param>
  85. /// <param name="e"></param>
  86. protected virtual void chkDressVersion_Click(object sender, EventArgs e)
  87. {
  88. //throw new NotImplementedException();
  89. }
  90. /// <summary>
  91. /// 儿童版
  92. /// </summary>
  93. /// <param name="sender"></param>
  94. /// <param name="e"></param>
  95. protected virtual void chkKidsVersion_Click(object sender, EventArgs e)
  96. {
  97. //throw new NotImplementedException();
  98. }
  99. /// <summary>
  100. /// 写真版
  101. /// </summary>
  102. /// <param name="sender"></param>
  103. /// <param name="e"></param>
  104. protected virtual void chkPortraitVersion_Click(object sender, EventArgs e)
  105. {
  106. //throw new NotImplementedException();
  107. }
  108. }
  109. }