UControl_Log.Designer.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. namespace HOZProject
  2. {
  3. partial class UControl_Log
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.panel1 = new System.Windows.Forms.Panel();
  34. this.pbClose = new System.Windows.Forms.PictureBox();
  35. this.dgvLog = new System.Windows.Forms.DataGridView();
  36. this.ColCutHoleName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.ColTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.ColStep = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.ColState = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.panel2 = new System.Windows.Forms.Panel();
  41. this.label2 = new System.Windows.Forms.Label();
  42. this.lblLogCount = new System.Windows.Forms.Label();
  43. this.btnExport = new System.Windows.Forms.Button();
  44. this.panel1.SuspendLayout();
  45. ((System.ComponentModel.ISupportInitialize)(this.pbClose)).BeginInit();
  46. ((System.ComponentModel.ISupportInitialize)(this.dgvLog)).BeginInit();
  47. this.panel2.SuspendLayout();
  48. this.SuspendLayout();
  49. //
  50. // label1
  51. //
  52. this.label1.AutoSize = true;
  53. this.label1.Font = new System.Drawing.Font("宋体", 10F);
  54. this.label1.ForeColor = System.Drawing.Color.Black;
  55. this.label1.Location = new System.Drawing.Point(17, 10);
  56. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  57. this.label1.Name = "label1";
  58. this.label1.Size = new System.Drawing.Size(76, 17);
  59. this.label1.TabIndex = 0;
  60. this.label1.Text = "查看日志";
  61. //
  62. // panel1
  63. //
  64. this.panel1.BackColor = System.Drawing.Color.White;
  65. this.panel1.Controls.Add(this.pbClose);
  66. this.panel1.Controls.Add(this.label1);
  67. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  68. this.panel1.Location = new System.Drawing.Point(0, 0);
  69. this.panel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  70. this.panel1.Name = "panel1";
  71. this.panel1.Size = new System.Drawing.Size(957, 38);
  72. this.panel1.TabIndex = 3;
  73. //
  74. // pbClose
  75. //
  76. this.pbClose.BackColor = System.Drawing.SystemColors.Window;
  77. this.pbClose.BackgroundImage = global::HOZProject.Properties.Resources.Exit;
  78. this.pbClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  79. this.pbClose.Cursor = System.Windows.Forms.Cursors.Hand;
  80. this.pbClose.Dock = System.Windows.Forms.DockStyle.Right;
  81. this.pbClose.Location = new System.Drawing.Point(914, 0);
  82. this.pbClose.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  83. this.pbClose.Name = "pbClose";
  84. this.pbClose.Size = new System.Drawing.Size(43, 38);
  85. this.pbClose.TabIndex = 107;
  86. this.pbClose.TabStop = false;
  87. this.pbClose.Click += new System.EventHandler(this.btnClose_Click);
  88. this.pbClose.MouseEnter += new System.EventHandler(this.pbClose_MouseEnter);
  89. this.pbClose.MouseLeave += new System.EventHandler(this.pbClose_MouseLeave);
  90. //
  91. // dgvLog
  92. //
  93. this.dgvLog.AllowUserToAddRows = false;
  94. this.dgvLog.AllowUserToDeleteRows = false;
  95. this.dgvLog.AllowUserToResizeColumns = false;
  96. this.dgvLog.AllowUserToResizeRows = false;
  97. this.dgvLog.BackgroundColor = System.Drawing.SystemColors.Window;
  98. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  99. dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
  100. dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  101. dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
  102. dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.HighlightText;
  103. dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  104. dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  105. this.dgvLog.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
  106. this.dgvLog.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  107. this.dgvLog.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  108. this.ColCutHoleName,
  109. this.ColTime,
  110. this.ColStep,
  111. this.ColState});
  112. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  113. dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
  114. dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  115. dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
  116. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.HighlightText;
  117. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  118. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  119. this.dgvLog.DefaultCellStyle = dataGridViewCellStyle2;
  120. this.dgvLog.Dock = System.Windows.Forms.DockStyle.Fill;
  121. this.dgvLog.EnableHeadersVisualStyles = false;
  122. this.dgvLog.Location = new System.Drawing.Point(0, 38);
  123. this.dgvLog.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  124. this.dgvLog.MultiSelect = false;
  125. this.dgvLog.Name = "dgvLog";
  126. this.dgvLog.ReadOnly = true;
  127. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  128. dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
  129. dataGridViewCellStyle3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  130. dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
  131. dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.HighlightText;
  132. dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  133. dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  134. this.dgvLog.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
  135. this.dgvLog.RowHeadersVisible = false;
  136. this.dgvLog.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  137. dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
  138. this.dgvLog.RowsDefaultCellStyle = dataGridViewCellStyle4;
  139. this.dgvLog.RowTemplate.DefaultCellStyle.ForeColor = System.Drawing.SystemColors.WindowText;
  140. this.dgvLog.RowTemplate.Height = 23;
  141. this.dgvLog.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  142. this.dgvLog.ShowCellErrors = false;
  143. this.dgvLog.ShowCellToolTips = false;
  144. this.dgvLog.ShowEditingIcon = false;
  145. this.dgvLog.ShowRowErrors = false;
  146. this.dgvLog.Size = new System.Drawing.Size(957, 460);
  147. this.dgvLog.TabIndex = 4;
  148. this.dgvLog.TabStop = false;
  149. this.dgvLog.SelectionChanged += new System.EventHandler(this.dgvLog_SelectionChanged);
  150. //
  151. // ColCutHoleName
  152. //
  153. this.ColCutHoleName.DataPropertyName = "HoleName";
  154. this.ColCutHoleName.HeaderText = "分析点名称";
  155. this.ColCutHoleName.Name = "ColCutHoleName";
  156. this.ColCutHoleName.ReadOnly = true;
  157. this.ColCutHoleName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  158. this.ColCutHoleName.Width = 180;
  159. //
  160. // ColTime
  161. //
  162. this.ColTime.DataPropertyName = "Time";
  163. this.ColTime.HeaderText = "操作时间";
  164. this.ColTime.Name = "ColTime";
  165. this.ColTime.ReadOnly = true;
  166. this.ColTime.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  167. this.ColTime.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  168. this.ColTime.Width = 180;
  169. //
  170. // ColStep
  171. //
  172. this.ColStep.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  173. this.ColStep.DataPropertyName = "Message";
  174. this.ColStep.HeaderText = "描述";
  175. this.ColStep.Name = "ColStep";
  176. this.ColStep.ReadOnly = true;
  177. this.ColStep.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  178. this.ColStep.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  179. //
  180. // ColState
  181. //
  182. this.ColState.DataPropertyName = "State";
  183. this.ColState.HeaderText = "状态";
  184. this.ColState.Name = "ColState";
  185. this.ColState.ReadOnly = true;
  186. this.ColState.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  187. this.ColState.Width = 180;
  188. //
  189. // panel2
  190. //
  191. this.panel2.BackColor = System.Drawing.Color.White;
  192. this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  193. this.panel2.Controls.Add(this.btnExport);
  194. this.panel2.Controls.Add(this.label2);
  195. this.panel2.Controls.Add(this.lblLogCount);
  196. this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
  197. this.panel2.Location = new System.Drawing.Point(0, 470);
  198. this.panel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  199. this.panel2.Name = "panel2";
  200. this.panel2.Size = new System.Drawing.Size(957, 28);
  201. this.panel2.TabIndex = 5;
  202. //
  203. // label2
  204. //
  205. this.label2.AutoSize = true;
  206. this.label2.Font = new System.Drawing.Font("宋体", 10F);
  207. this.label2.ForeColor = System.Drawing.Color.Black;
  208. this.label2.Location = new System.Drawing.Point(11, 5);
  209. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  210. this.label2.Name = "label2";
  211. this.label2.Size = new System.Drawing.Size(59, 17);
  212. this.label2.TabIndex = 1;
  213. this.label2.Text = "共计:";
  214. //
  215. // lblLogCount
  216. //
  217. this.lblLogCount.AutoSize = true;
  218. this.lblLogCount.Font = new System.Drawing.Font("宋体", 10F);
  219. this.lblLogCount.ForeColor = System.Drawing.Color.Black;
  220. this.lblLogCount.Location = new System.Drawing.Point(76, 5);
  221. this.lblLogCount.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  222. this.lblLogCount.Name = "lblLogCount";
  223. this.lblLogCount.Size = new System.Drawing.Size(34, 17);
  224. this.lblLogCount.TabIndex = 0;
  225. this.lblLogCount.Text = "0条";
  226. //
  227. // btnExport
  228. //
  229. this.btnExport.Location = new System.Drawing.Point(859, 0);
  230. this.btnExport.Name = "btnExport";
  231. this.btnExport.Size = new System.Drawing.Size(86, 26);
  232. this.btnExport.TabIndex = 2;
  233. this.btnExport.Text = "导出日志";
  234. this.btnExport.UseVisualStyleBackColor = true;
  235. this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
  236. //
  237. // UControl_Log
  238. //
  239. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  240. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  241. this.BackColor = System.Drawing.Color.Black;
  242. this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  243. this.Controls.Add(this.panel2);
  244. this.Controls.Add(this.dgvLog);
  245. this.Controls.Add(this.panel1);
  246. this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  247. this.Name = "UControl_Log";
  248. this.Size = new System.Drawing.Size(957, 498);
  249. this.panel1.ResumeLayout(false);
  250. this.panel1.PerformLayout();
  251. ((System.ComponentModel.ISupportInitialize)(this.pbClose)).EndInit();
  252. ((System.ComponentModel.ISupportInitialize)(this.dgvLog)).EndInit();
  253. this.panel2.ResumeLayout(false);
  254. this.panel2.PerformLayout();
  255. this.ResumeLayout(false);
  256. }
  257. #endregion
  258. private System.Windows.Forms.Label label1;
  259. private System.Windows.Forms.Panel panel1;
  260. private System.Windows.Forms.Panel panel2;
  261. private System.Windows.Forms.Label lblLogCount;
  262. private System.Windows.Forms.Label label2;
  263. private System.Windows.Forms.PictureBox pbClose;
  264. public System.Windows.Forms.DataGridView dgvLog;
  265. private System.Windows.Forms.DataGridViewTextBoxColumn ColCutHoleName;
  266. private System.Windows.Forms.DataGridViewTextBoxColumn ColTime;
  267. private System.Windows.Forms.DataGridViewTextBoxColumn ColStep;
  268. private System.Windows.Forms.DataGridViewTextBoxColumn ColState;
  269. private System.Windows.Forms.Button btnExport;
  270. }
  271. }