UControl_Log.Designer.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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 dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
  32. this.btnClose = new System.Windows.Forms.Button();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.panel1 = new System.Windows.Forms.Panel();
  35. this.dgvLog = new System.Windows.Forms.DataGridView();
  36. this.panel2 = new System.Windows.Forms.Panel();
  37. this.lblLogCount = new System.Windows.Forms.Label();
  38. this.label2 = new System.Windows.Forms.Label();
  39. this.ColCutHoleName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.ColStep = new System.Windows.Forms.DataGridViewTextBoxColumn();
  41. this.ColTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  42. this.ColState = new System.Windows.Forms.DataGridViewTextBoxColumn();
  43. this.panel1.SuspendLayout();
  44. ((System.ComponentModel.ISupportInitialize)(this.dgvLog)).BeginInit();
  45. this.panel2.SuspendLayout();
  46. this.SuspendLayout();
  47. //
  48. // btnClose
  49. //
  50. this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand;
  51. this.btnClose.Dock = System.Windows.Forms.DockStyle.Right;
  52. this.btnClose.Location = new System.Drawing.Point(690, 0);
  53. this.btnClose.Name = "btnClose";
  54. this.btnClose.Size = new System.Drawing.Size(28, 30);
  55. this.btnClose.TabIndex = 3;
  56. this.btnClose.Text = "X";
  57. this.btnClose.UseVisualStyleBackColor = true;
  58. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  59. //
  60. // label1
  61. //
  62. this.label1.AutoSize = true;
  63. this.label1.Font = new System.Drawing.Font("宋体", 10F);
  64. this.label1.ForeColor = System.Drawing.Color.Black;
  65. this.label1.Location = new System.Drawing.Point(13, 8);
  66. this.label1.Name = "label1";
  67. this.label1.Size = new System.Drawing.Size(63, 14);
  68. this.label1.TabIndex = 0;
  69. this.label1.Text = "查看日志";
  70. //
  71. // panel1
  72. //
  73. this.panel1.BackColor = System.Drawing.Color.White;
  74. this.panel1.Controls.Add(this.btnClose);
  75. this.panel1.Controls.Add(this.label1);
  76. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  77. this.panel1.Location = new System.Drawing.Point(0, 0);
  78. this.panel1.Name = "panel1";
  79. this.panel1.Size = new System.Drawing.Size(718, 30);
  80. this.panel1.TabIndex = 3;
  81. //
  82. // dgvLog
  83. //
  84. this.dgvLog.AllowUserToAddRows = false;
  85. this.dgvLog.AllowUserToDeleteRows = false;
  86. this.dgvLog.AllowUserToResizeColumns = false;
  87. this.dgvLog.AllowUserToResizeRows = false;
  88. dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  89. dataGridViewCellStyle9.BackColor = System.Drawing.SystemColors.Control;
  90. dataGridViewCellStyle9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  91. dataGridViewCellStyle9.ForeColor = System.Drawing.SystemColors.WindowText;
  92. dataGridViewCellStyle9.SelectionBackColor = System.Drawing.SystemColors.HighlightText;
  93. dataGridViewCellStyle9.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  94. dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  95. this.dgvLog.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle9;
  96. this.dgvLog.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  97. this.dgvLog.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  98. this.ColCutHoleName,
  99. this.ColStep,
  100. this.ColTime,
  101. this.ColState});
  102. dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  103. dataGridViewCellStyle10.BackColor = System.Drawing.SystemColors.Window;
  104. dataGridViewCellStyle10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  105. dataGridViewCellStyle10.ForeColor = System.Drawing.SystemColors.ControlText;
  106. dataGridViewCellStyle10.SelectionBackColor = System.Drawing.SystemColors.HighlightText;
  107. dataGridViewCellStyle10.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  108. dataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  109. this.dgvLog.DefaultCellStyle = dataGridViewCellStyle10;
  110. this.dgvLog.Dock = System.Windows.Forms.DockStyle.Fill;
  111. this.dgvLog.EnableHeadersVisualStyles = false;
  112. this.dgvLog.Location = new System.Drawing.Point(0, 30);
  113. this.dgvLog.MultiSelect = false;
  114. this.dgvLog.Name = "dgvLog";
  115. this.dgvLog.ReadOnly = true;
  116. dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  117. dataGridViewCellStyle11.BackColor = System.Drawing.SystemColors.Control;
  118. dataGridViewCellStyle11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  119. dataGridViewCellStyle11.ForeColor = System.Drawing.SystemColors.WindowText;
  120. dataGridViewCellStyle11.SelectionBackColor = System.Drawing.SystemColors.HighlightText;
  121. dataGridViewCellStyle11.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  122. dataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  123. this.dgvLog.RowHeadersDefaultCellStyle = dataGridViewCellStyle11;
  124. this.dgvLog.RowHeadersVisible = false;
  125. this.dgvLog.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  126. dataGridViewCellStyle12.ForeColor = System.Drawing.SystemColors.WindowText;
  127. this.dgvLog.RowsDefaultCellStyle = dataGridViewCellStyle12;
  128. this.dgvLog.RowTemplate.DefaultCellStyle.ForeColor = System.Drawing.SystemColors.WindowText;
  129. this.dgvLog.RowTemplate.Height = 23;
  130. this.dgvLog.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  131. this.dgvLog.ShowCellErrors = false;
  132. this.dgvLog.ShowCellToolTips = false;
  133. this.dgvLog.ShowEditingIcon = false;
  134. this.dgvLog.ShowRowErrors = false;
  135. this.dgvLog.Size = new System.Drawing.Size(718, 368);
  136. this.dgvLog.TabIndex = 4;
  137. this.dgvLog.TabStop = false;
  138. this.dgvLog.SelectionChanged += new System.EventHandler(this.dgvLog_SelectionChanged);
  139. //
  140. // panel2
  141. //
  142. this.panel2.BackColor = System.Drawing.Color.White;
  143. this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  144. this.panel2.Controls.Add(this.label2);
  145. this.panel2.Controls.Add(this.lblLogCount);
  146. this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
  147. this.panel2.Location = new System.Drawing.Point(0, 375);
  148. this.panel2.Name = "panel2";
  149. this.panel2.Size = new System.Drawing.Size(718, 23);
  150. this.panel2.TabIndex = 5;
  151. //
  152. // lblLogCount
  153. //
  154. this.lblLogCount.AutoSize = true;
  155. this.lblLogCount.Font = new System.Drawing.Font("宋体", 10F);
  156. this.lblLogCount.ForeColor = System.Drawing.Color.Black;
  157. this.lblLogCount.Location = new System.Drawing.Point(52, 4);
  158. this.lblLogCount.Name = "lblLogCount";
  159. this.lblLogCount.Size = new System.Drawing.Size(0, 14);
  160. this.lblLogCount.TabIndex = 0;
  161. //
  162. // label2
  163. //
  164. this.label2.AutoSize = true;
  165. this.label2.Font = new System.Drawing.Font("宋体", 10F);
  166. this.label2.ForeColor = System.Drawing.Color.Black;
  167. this.label2.Location = new System.Drawing.Point(8, 4);
  168. this.label2.Name = "label2";
  169. this.label2.Size = new System.Drawing.Size(49, 14);
  170. this.label2.TabIndex = 1;
  171. this.label2.Text = "共计:";
  172. //
  173. // ColCutHoleName
  174. //
  175. this.ColCutHoleName.DataPropertyName = "CutHoleName";
  176. this.ColCutHoleName.HeaderText = "切孔名称";
  177. this.ColCutHoleName.Name = "ColCutHoleName";
  178. this.ColCutHoleName.ReadOnly = true;
  179. this.ColCutHoleName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  180. this.ColCutHoleName.Visible = false;
  181. this.ColCutHoleName.Width = 180;
  182. //
  183. // ColStep
  184. //
  185. this.ColStep.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  186. this.ColStep.DataPropertyName = "Name";
  187. this.ColStep.HeaderText = "步骤名称";
  188. this.ColStep.Name = "ColStep";
  189. this.ColStep.ReadOnly = true;
  190. this.ColStep.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  191. this.ColStep.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  192. //
  193. // ColTime
  194. //
  195. this.ColTime.DataPropertyName = "Time";
  196. this.ColTime.HeaderText = "完成时间";
  197. this.ColTime.Name = "ColTime";
  198. this.ColTime.ReadOnly = true;
  199. this.ColTime.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  200. this.ColTime.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  201. this.ColTime.Width = 180;
  202. //
  203. // ColState
  204. //
  205. this.ColState.DataPropertyName = "state";
  206. this.ColState.HeaderText = "状态";
  207. this.ColState.Name = "ColState";
  208. this.ColState.ReadOnly = true;
  209. this.ColState.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  210. this.ColState.Visible = false;
  211. this.ColState.Width = 180;
  212. //
  213. // UControl_Log
  214. //
  215. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  216. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  217. this.BackColor = System.Drawing.Color.Black;
  218. this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  219. this.Controls.Add(this.panel2);
  220. this.Controls.Add(this.dgvLog);
  221. this.Controls.Add(this.panel1);
  222. this.Name = "UControl_Log";
  223. this.Size = new System.Drawing.Size(718, 398);
  224. this.panel1.ResumeLayout(false);
  225. this.panel1.PerformLayout();
  226. ((System.ComponentModel.ISupportInitialize)(this.dgvLog)).EndInit();
  227. this.panel2.ResumeLayout(false);
  228. this.panel2.PerformLayout();
  229. this.ResumeLayout(false);
  230. }
  231. #endregion
  232. private System.Windows.Forms.Button btnClose;
  233. private System.Windows.Forms.Label label1;
  234. private System.Windows.Forms.Panel panel1;
  235. private System.Windows.Forms.Panel panel2;
  236. private System.Windows.Forms.Label lblLogCount;
  237. private System.Windows.Forms.Label label2;
  238. private System.Windows.Forms.DataGridView dgvLog;
  239. private System.Windows.Forms.DataGridViewTextBoxColumn ColCutHoleName;
  240. private System.Windows.Forms.DataGridViewTextBoxColumn ColStep;
  241. private System.Windows.Forms.DataGridViewTextBoxColumn ColTime;
  242. private System.Windows.Forms.DataGridViewTextBoxColumn ColState;
  243. }
  244. }