UControl_Log.Designer.cs 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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. this.btnClose = new System.Windows.Forms.Button();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.panel1 = new System.Windows.Forms.Panel();
  31. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  32. this.ColCutHoleName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  33. this.ColStep = new System.Windows.Forms.DataGridViewTextBoxColumn();
  34. this.ColTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  35. this.ColState = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. this.panel1.SuspendLayout();
  37. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  38. this.SuspendLayout();
  39. //
  40. // btnClose
  41. //
  42. this.btnClose.Dock = System.Windows.Forms.DockStyle.Right;
  43. this.btnClose.Location = new System.Drawing.Point(690, 0);
  44. this.btnClose.Name = "btnClose";
  45. this.btnClose.Size = new System.Drawing.Size(28, 30);
  46. this.btnClose.TabIndex = 3;
  47. this.btnClose.Text = "X";
  48. this.btnClose.UseVisualStyleBackColor = true;
  49. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  50. //
  51. // label1
  52. //
  53. this.label1.AutoSize = true;
  54. this.label1.Font = new System.Drawing.Font("宋体", 10F);
  55. this.label1.ForeColor = System.Drawing.Color.Black;
  56. this.label1.Location = new System.Drawing.Point(13, 8);
  57. this.label1.Name = "label1";
  58. this.label1.Size = new System.Drawing.Size(63, 14);
  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.btnClose);
  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.Name = "panel1";
  70. this.panel1.Size = new System.Drawing.Size(718, 30);
  71. this.panel1.TabIndex = 3;
  72. //
  73. // dataGridView1
  74. //
  75. this.dataGridView1.AllowUserToAddRows = false;
  76. this.dataGridView1.AllowUserToDeleteRows = false;
  77. this.dataGridView1.AllowUserToResizeColumns = false;
  78. this.dataGridView1.AllowUserToResizeRows = false;
  79. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  80. this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  81. this.ColCutHoleName,
  82. this.ColStep,
  83. this.ColTime,
  84. this.ColState});
  85. this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
  86. this.dataGridView1.Location = new System.Drawing.Point(0, 30);
  87. this.dataGridView1.MultiSelect = false;
  88. this.dataGridView1.Name = "dataGridView1";
  89. this.dataGridView1.ReadOnly = true;
  90. this.dataGridView1.RowHeadersVisible = false;
  91. this.dataGridView1.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  92. this.dataGridView1.RowTemplate.Height = 23;
  93. this.dataGridView1.ShowCellErrors = false;
  94. this.dataGridView1.ShowCellToolTips = false;
  95. this.dataGridView1.ShowEditingIcon = false;
  96. this.dataGridView1.ShowRowErrors = false;
  97. this.dataGridView1.Size = new System.Drawing.Size(718, 368);
  98. this.dataGridView1.TabIndex = 4;
  99. //
  100. // ColCutHoleName
  101. //
  102. this.ColCutHoleName.HeaderText = "切孔名称";
  103. this.ColCutHoleName.Name = "ColCutHoleName";
  104. this.ColCutHoleName.ReadOnly = true;
  105. this.ColCutHoleName.Width = 180;
  106. //
  107. // ColStep
  108. //
  109. this.ColStep.HeaderText = "步骤名称";
  110. this.ColStep.Name = "ColStep";
  111. this.ColStep.ReadOnly = true;
  112. this.ColStep.Width = 180;
  113. //
  114. // ColTime
  115. //
  116. this.ColTime.HeaderText = "完成时间";
  117. this.ColTime.Name = "ColTime";
  118. this.ColTime.ReadOnly = true;
  119. this.ColTime.Width = 180;
  120. //
  121. // ColState
  122. //
  123. this.ColState.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  124. this.ColState.HeaderText = "状态";
  125. this.ColState.Name = "ColState";
  126. this.ColState.ReadOnly = true;
  127. //
  128. // UControl_Log
  129. //
  130. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  131. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  132. this.BackColor = System.Drawing.Color.Black;
  133. this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  134. this.Controls.Add(this.dataGridView1);
  135. this.Controls.Add(this.panel1);
  136. this.Name = "UControl_Log";
  137. this.Size = new System.Drawing.Size(718, 398);
  138. this.panel1.ResumeLayout(false);
  139. this.panel1.PerformLayout();
  140. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  141. this.ResumeLayout(false);
  142. }
  143. #endregion
  144. private System.Windows.Forms.Button btnClose;
  145. private System.Windows.Forms.Label label1;
  146. private System.Windows.Forms.Panel panel1;
  147. private System.Windows.Forms.DataGridView dataGridView1;
  148. private System.Windows.Forms.DataGridViewTextBoxColumn ColCutHoleName;
  149. private System.Windows.Forms.DataGridViewTextBoxColumn ColStep;
  150. private System.Windows.Forms.DataGridViewTextBoxColumn ColTime;
  151. private System.Windows.Forms.DataGridViewTextBoxColumn ColState;
  152. }
  153. }