TabPageBatchTask.Designer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. 
  2. namespace Uestc.Auto6.Dso.Hardware.Calibration.Tool
  3. {
  4. partial class TabPageBatchTask
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region 组件设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.panel1 = new System.Windows.Forms.Panel();
  30. this.buttonOpenResultFile = new System.Windows.Forms.Button();
  31. this.panel5 = new System.Windows.Forms.Panel();
  32. this.richTextBoxTaskDescription = new System.Windows.Forms.RichTextBox();
  33. this.comboBoxTasks = new System.Windows.Forms.ComboBox();
  34. this.buttonCancelTask = new System.Windows.Forms.Button();
  35. this.buttonStartTask = new System.Windows.Forms.Button();
  36. this.label1 = new System.Windows.Forms.Label();
  37. this.panel2 = new System.Windows.Forms.Panel();
  38. this.progressBar1 = new System.Windows.Forms.ProgressBar();
  39. this.panel3 = new System.Windows.Forms.Panel();
  40. this.richTextBoxResultMessage = new System.Windows.Forms.RichTextBox();
  41. this.panel4 = new System.Windows.Forms.Panel();
  42. this.labelCurrentStepMessage = new System.Windows.Forms.Label();
  43. this.panel1.SuspendLayout();
  44. this.panel5.SuspendLayout();
  45. this.panel2.SuspendLayout();
  46. this.panel3.SuspendLayout();
  47. this.panel4.SuspendLayout();
  48. this.SuspendLayout();
  49. //
  50. // panel1
  51. //
  52. this.panel1.Controls.Add(this.buttonOpenResultFile);
  53. this.panel1.Controls.Add(this.panel5);
  54. this.panel1.Controls.Add(this.comboBoxTasks);
  55. this.panel1.Controls.Add(this.buttonCancelTask);
  56. this.panel1.Controls.Add(this.buttonStartTask);
  57. this.panel1.Controls.Add(this.label1);
  58. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  59. this.panel1.Location = new System.Drawing.Point(0, 0);
  60. this.panel1.Name = "panel1";
  61. this.panel1.Size = new System.Drawing.Size(786, 103);
  62. this.panel1.TabIndex = 0;
  63. //
  64. // buttonOpenResultFile
  65. //
  66. this.buttonOpenResultFile.Location = new System.Drawing.Point(575, 10);
  67. this.buttonOpenResultFile.Name = "buttonOpenResultFile";
  68. this.buttonOpenResultFile.Size = new System.Drawing.Size(107, 23);
  69. this.buttonOpenResultFile.TabIndex = 6;
  70. this.buttonOpenResultFile.Text = "打开结果文件";
  71. this.buttonOpenResultFile.UseVisualStyleBackColor = true;
  72. this.buttonOpenResultFile.Visible = false;
  73. this.buttonOpenResultFile.Click += new System.EventHandler(this.buttonOpenResultFile_Click);
  74. //
  75. // panel5
  76. //
  77. this.panel5.Controls.Add(this.richTextBoxTaskDescription);
  78. this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
  79. this.panel5.Location = new System.Drawing.Point(0, 41);
  80. this.panel5.Name = "panel5";
  81. this.panel5.Size = new System.Drawing.Size(786, 62);
  82. this.panel5.TabIndex = 5;
  83. //
  84. // richTextBoxTaskDescription
  85. //
  86. this.richTextBoxTaskDescription.BorderStyle = System.Windows.Forms.BorderStyle.None;
  87. this.richTextBoxTaskDescription.Dock = System.Windows.Forms.DockStyle.Fill;
  88. this.richTextBoxTaskDescription.Location = new System.Drawing.Point(0, 0);
  89. this.richTextBoxTaskDescription.Name = "richTextBoxTaskDescription";
  90. this.richTextBoxTaskDescription.ReadOnly = true;
  91. this.richTextBoxTaskDescription.Size = new System.Drawing.Size(786, 62);
  92. this.richTextBoxTaskDescription.TabIndex = 4;
  93. this.richTextBoxTaskDescription.Text = "";
  94. //
  95. // comboBoxTasks
  96. //
  97. this.comboBoxTasks.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  98. this.comboBoxTasks.FormattingEnabled = true;
  99. this.comboBoxTasks.Location = new System.Drawing.Point(60, 10);
  100. this.comboBoxTasks.Name = "comboBoxTasks";
  101. this.comboBoxTasks.Size = new System.Drawing.Size(246, 25);
  102. this.comboBoxTasks.TabIndex = 3;
  103. this.comboBoxTasks.SelectedIndexChanged += new System.EventHandler(this.comboBoxTasks_SelectedIndexChanged);
  104. //
  105. // buttonCancelTask
  106. //
  107. this.buttonCancelTask.Location = new System.Drawing.Point(452, 9);
  108. this.buttonCancelTask.Name = "buttonCancelTask";
  109. this.buttonCancelTask.Size = new System.Drawing.Size(75, 23);
  110. this.buttonCancelTask.TabIndex = 2;
  111. this.buttonCancelTask.Text = "停止";
  112. this.buttonCancelTask.UseVisualStyleBackColor = true;
  113. this.buttonCancelTask.Click += new System.EventHandler(this.buttonCancelTask_Click);
  114. //
  115. // buttonStartTask
  116. //
  117. this.buttonStartTask.Location = new System.Drawing.Point(343, 9);
  118. this.buttonStartTask.Name = "buttonStartTask";
  119. this.buttonStartTask.Size = new System.Drawing.Size(75, 23);
  120. this.buttonStartTask.TabIndex = 1;
  121. this.buttonStartTask.Text = "开始";
  122. this.buttonStartTask.UseVisualStyleBackColor = true;
  123. this.buttonStartTask.Click += new System.EventHandler(this.buttonStartTask_Click);
  124. //
  125. // label1
  126. //
  127. this.label1.AutoSize = true;
  128. this.label1.Location = new System.Drawing.Point(1, 12);
  129. this.label1.Name = "label1";
  130. this.label1.Size = new System.Drawing.Size(68, 17);
  131. this.label1.TabIndex = 0;
  132. this.label1.Text = "任务名称:";
  133. //
  134. // panel2
  135. //
  136. this.panel2.Controls.Add(this.progressBar1);
  137. this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
  138. this.panel2.Location = new System.Drawing.Point(0, 103);
  139. this.panel2.Name = "panel2";
  140. this.panel2.Size = new System.Drawing.Size(786, 46);
  141. this.panel2.TabIndex = 1;
  142. //
  143. // progressBar1
  144. //
  145. this.progressBar1.Dock = System.Windows.Forms.DockStyle.Fill;
  146. this.progressBar1.Location = new System.Drawing.Point(0, 0);
  147. this.progressBar1.Name = "progressBar1";
  148. this.progressBar1.Size = new System.Drawing.Size(786, 46);
  149. this.progressBar1.TabIndex = 0;
  150. //
  151. // panel3
  152. //
  153. this.panel3.Controls.Add(this.richTextBoxResultMessage);
  154. this.panel3.Controls.Add(this.panel4);
  155. this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
  156. this.panel3.Location = new System.Drawing.Point(0, 149);
  157. this.panel3.Name = "panel3";
  158. this.panel3.Size = new System.Drawing.Size(786, 93);
  159. this.panel3.TabIndex = 2;
  160. //
  161. // richTextBoxResultMessage
  162. //
  163. this.richTextBoxResultMessage.BorderStyle = System.Windows.Forms.BorderStyle.None;
  164. this.richTextBoxResultMessage.Dock = System.Windows.Forms.DockStyle.Fill;
  165. this.richTextBoxResultMessage.Location = new System.Drawing.Point(0, 23);
  166. this.richTextBoxResultMessage.Name = "richTextBoxResultMessage";
  167. this.richTextBoxResultMessage.ReadOnly = true;
  168. this.richTextBoxResultMessage.Size = new System.Drawing.Size(786, 70);
  169. this.richTextBoxResultMessage.TabIndex = 1;
  170. this.richTextBoxResultMessage.Text = "";
  171. //
  172. // panel4
  173. //
  174. this.panel4.Controls.Add(this.labelCurrentStepMessage);
  175. this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
  176. this.panel4.Location = new System.Drawing.Point(0, 0);
  177. this.panel4.Name = "panel4";
  178. this.panel4.Size = new System.Drawing.Size(786, 23);
  179. this.panel4.TabIndex = 0;
  180. //
  181. // labelCurrentStepMessage
  182. //
  183. this.labelCurrentStepMessage.AutoSize = true;
  184. this.labelCurrentStepMessage.Dock = System.Windows.Forms.DockStyle.Fill;
  185. this.labelCurrentStepMessage.Location = new System.Drawing.Point(0, 0);
  186. this.labelCurrentStepMessage.Name = "labelCurrentStepMessage";
  187. this.labelCurrentStepMessage.Size = new System.Drawing.Size(43, 17);
  188. this.labelCurrentStepMessage.TabIndex = 0;
  189. this.labelCurrentStepMessage.Text = "label2";
  190. //
  191. // TabPageBatchTask
  192. //
  193. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  194. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  195. this.Controls.Add(this.panel3);
  196. this.Controls.Add(this.panel2);
  197. this.Controls.Add(this.panel1);
  198. this.Name = "TabPageBatchTask";
  199. this.Size = new System.Drawing.Size(786, 242);
  200. this.panel1.ResumeLayout(false);
  201. this.panel1.PerformLayout();
  202. this.panel5.ResumeLayout(false);
  203. this.panel2.ResumeLayout(false);
  204. this.panel3.ResumeLayout(false);
  205. this.panel4.ResumeLayout(false);
  206. this.panel4.PerformLayout();
  207. this.ResumeLayout(false);
  208. }
  209. #endregion
  210. private System.Windows.Forms.Panel panel1;
  211. private System.Windows.Forms.Panel panel2;
  212. private System.Windows.Forms.Panel panel3;
  213. private System.Windows.Forms.Label label1;
  214. private System.Windows.Forms.Button buttonCancelTask;
  215. private System.Windows.Forms.Button buttonStartTask;
  216. private System.Windows.Forms.ProgressBar progressBar1;
  217. private System.Windows.Forms.RichTextBox richTextBoxResultMessage;
  218. private System.Windows.Forms.Panel panel4;
  219. private System.Windows.Forms.Label labelCurrentStepMessage;
  220. private System.Windows.Forms.ComboBox comboBoxTasks;
  221. private System.Windows.Forms.Panel panel5;
  222. private System.Windows.Forms.RichTextBox richTextBoxTaskDescription;
  223. private System.Windows.Forms.Button buttonOpenResultFile;
  224. }
  225. }