ProcessMonitorFormMain.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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
  11. {
  12. public partial class ProcessMonitorFormMain : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public ProcessMonitorFormMain()
  15. {
  16. InitializeComponent();
  17. this.dgvData.RefreshTheme();
  18. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  19. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  20. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  21. // this.panelEx2.BackColor = UIBlueThemeResources.BorderAreaColor;
  22. this.UcNavigationTool.LabTitle = "流程监控";
  23. this.Shown += ProcessMonitorFormMain_Shown;
  24. this.Load += ProcessMonitorFormMain_Load;
  25. this.cmbQueryText.KeyDown += cmbQueryText_KeyDown;
  26. this.btnQuery.Click += btnQuery_Click;
  27. this.btnWarningSet.Click += btnWarningSet_Click;
  28. this.btnExport.Click += btnExport_Click;
  29. this.btnClose.Click += btnClose_Click;
  30. this.chkDressVersion.Click += chkDressVersion_Click;
  31. this.chkKidsVersion.Click += chkKidsVersion_Click;
  32. this.chkPortraitVersion.Click += chkPortraitVersion_Click;
  33. this.dgvData.CellMouseDoubleClick += dgvData_CellMouseDoubleClick;
  34. this.Resize += ProcessMonitorFormMain_Resize;
  35. }
  36. /// <summary>
  37. /// 窗体加载事件
  38. /// </summary>
  39. /// <param name="sender"></param>
  40. /// <param name="e"></param>
  41. protected virtual void ProcessMonitorFormMain_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 ProcessMonitorFormMain_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 cmbQueryText_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 btnWarningSet_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 btnExport_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 btnClose_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 chkDressVersion_Click(object sender, EventArgs e)
  105. {
  106. // throw new NotImplementedException();
  107. }
  108. /// <summary>
  109. /// 儿童版
  110. /// </summary>
  111. /// <param name="sender"></param>
  112. /// <param name="e"></param>
  113. protected virtual void chkKidsVersion_Click(object sender, EventArgs e)
  114. {
  115. //throw new NotImplementedException();
  116. }
  117. /// <summary>
  118. /// 写真版
  119. /// </summary>
  120. /// <param name="sender"></param>
  121. /// <param name="e"></param>
  122. protected virtual void chkPortraitVersion_Click(object sender, EventArgs e)
  123. {
  124. //throw new NotImplementedException();
  125. }
  126. /// <summary>
  127. /// 双击事件
  128. /// </summary>
  129. /// <param name="sender"></param>
  130. /// <param name="e"></param>
  131. protected virtual void dgvData_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
  132. {
  133. //throw new NotImplementedException();
  134. }
  135. /// <summary>
  136. /// 窗体大小发生变化事件
  137. /// </summary>
  138. /// <param name="sender"></param>
  139. /// <param name="e"></param>
  140. protected virtual void ProcessMonitorFormMain_Resize(object sender, EventArgs e)
  141. {
  142. //throw new NotImplementedException();
  143. }
  144. /// <summary>
  145. /// 定义列表属性
  146. /// </summary>
  147. public LYFZ.ComponentLibrary.DataGridViewEx DataGridViewEx1
  148. {
  149. get { return this.dgvData; }
  150. set { this.dgvData = value; }
  151. }
  152. /// <summary>
  153. /// 定义分页控件属性
  154. /// </summary>
  155. public LYFZ.UCPager.ucPagerEx UcPagerEx1
  156. {
  157. get { return this.ucPagerEx1; }
  158. set { this.ucPagerEx1 = value; }
  159. }
  160. }
  161. }