FormMeasureTest.Designer.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. using System.Drawing;
  2. using System.Windows.Forms;
  3. namespace HOZProject
  4. {
  5. partial class FormMeasureTest
  6. {
  7. /// <summary>
  8. /// Required designer variable.
  9. /// </summary>
  10. private System.ComponentModel.IContainer components = null;
  11. /// <summary>
  12. /// Clean up any resources being used.
  13. /// </summary>
  14. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  15. protected override void Dispose(bool disposing)
  16. {
  17. if (disposing && (components != null))
  18. {
  19. components.Dispose();
  20. }
  21. base.Dispose(disposing);
  22. }
  23. #region Windows Form Designer generated code
  24. /// <summary>
  25. /// Required method for Designer support - do not modify
  26. /// the contents of this method with the code editor.
  27. /// </summary>
  28. private void InitializeComponent()
  29. {
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  31. this.NewMeasureFile = new System.Windows.Forms.Button();
  32. this.LoadCutHole = new System.Windows.Forms.Button();
  33. this.CutHoleGridView = new System.Windows.Forms.DataGridView();
  34. this.Name = new System.Windows.Forms.DataGridViewTextBoxColumn();
  35. this.X = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. this.Y = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.Z = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.M = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.R = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.T = new System.Windows.Forms.DataGridViewTextBoxColumn();
  41. this.IsPTcheckBox = new System.Windows.Forms.CheckBox();
  42. this.SampleNametextBox = new System.Windows.Forms.TextBox();
  43. this.SampleNameLabel = new System.Windows.Forms.Label();
  44. this.groupBox1 = new System.Windows.Forms.GroupBox();
  45. this.ManualFocuscheckBox = new System.Windows.Forms.CheckBox();
  46. this.button2 = new System.Windows.Forms.Button();
  47. this.button1 = new System.Windows.Forms.Button();
  48. this.FIBTemptextBox = new System.Windows.Forms.TextBox();
  49. this.label1 = new System.Windows.Forms.Label();
  50. this.button3 = new System.Windows.Forms.Button();
  51. this.button4 = new System.Windows.Forms.Button();
  52. this.button5 = new System.Windows.Forms.Button();
  53. this.button6 = new System.Windows.Forms.Button();
  54. this.groupBox2 = new System.Windows.Forms.GroupBox();
  55. this.groupBox3 = new System.Windows.Forms.GroupBox();
  56. this.textBox1 = new System.Windows.Forms.TextBox();
  57. ((System.ComponentModel.ISupportInitialize)(this.CutHoleGridView)).BeginInit();
  58. this.groupBox1.SuspendLayout();
  59. this.groupBox2.SuspendLayout();
  60. this.groupBox3.SuspendLayout();
  61. this.SuspendLayout();
  62. //
  63. // NewMeasureFile
  64. //
  65. this.NewMeasureFile.Location = new System.Drawing.Point(19, 30);
  66. this.NewMeasureFile.Name = "NewMeasureFile";
  67. this.NewMeasureFile.Size = new System.Drawing.Size(147, 35);
  68. this.NewMeasureFile.TabIndex = 1;
  69. this.NewMeasureFile.Text = "新建";
  70. this.NewMeasureFile.UseVisualStyleBackColor = true;
  71. this.NewMeasureFile.Click += new System.EventHandler(this.button1_Click);
  72. //
  73. // LoadCutHole
  74. //
  75. this.LoadCutHole.Location = new System.Drawing.Point(21, 29);
  76. this.LoadCutHole.Name = "LoadCutHole";
  77. this.LoadCutHole.Size = new System.Drawing.Size(147, 35);
  78. this.LoadCutHole.TabIndex = 2;
  79. this.LoadCutHole.Text = "导入切孔";
  80. this.LoadCutHole.UseVisualStyleBackColor = true;
  81. this.LoadCutHole.Click += new System.EventHandler(this.LoadCutHole_Click);
  82. //
  83. // CutHoleGridView
  84. //
  85. dataGridViewCellStyle1.BackColor = System.Drawing.Color.Beige;
  86. dataGridViewCellStyle1.Font = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Bold);
  87. this.CutHoleGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
  88. this.CutHoleGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  89. this.CutHoleGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  90. this.Name,
  91. this.X,
  92. this.Y,
  93. this.Z,
  94. this.M,
  95. this.R,
  96. this.T});
  97. this.CutHoleGridView.Location = new System.Drawing.Point(29, 367);
  98. this.CutHoleGridView.Name = "CutHoleGridView";
  99. this.CutHoleGridView.ReadOnly = true;
  100. this.CutHoleGridView.RowTemplate.Height = 30;
  101. this.CutHoleGridView.Size = new System.Drawing.Size(745, 144);
  102. this.CutHoleGridView.TabIndex = 3;
  103. //
  104. // Name
  105. //
  106. this.Name.Name = "Name";
  107. this.Name.ReadOnly = true;
  108. //
  109. // X
  110. //
  111. this.X.Name = "X";
  112. this.X.ReadOnly = true;
  113. //
  114. // Y
  115. //
  116. this.Y.Name = "Y";
  117. this.Y.ReadOnly = true;
  118. //
  119. // Z
  120. //
  121. this.Z.Name = "Z";
  122. this.Z.ReadOnly = true;
  123. //
  124. // M
  125. //
  126. this.M.Name = "M";
  127. this.M.ReadOnly = true;
  128. //
  129. // R
  130. //
  131. this.R.Name = "R";
  132. this.R.ReadOnly = true;
  133. //
  134. // T
  135. //
  136. this.T.Name = "T";
  137. this.T.ReadOnly = true;
  138. //
  139. // IsPTcheckBox
  140. //
  141. this.IsPTcheckBox.AutoSize = true;
  142. this.IsPTcheckBox.Location = new System.Drawing.Point(23, 39);
  143. this.IsPTcheckBox.Name = "IsPTcheckBox";
  144. this.IsPTcheckBox.Size = new System.Drawing.Size(106, 22);
  145. this.IsPTcheckBox.TabIndex = 4;
  146. this.IsPTcheckBox.Text = "是否有PT";
  147. this.IsPTcheckBox.UseVisualStyleBackColor = true;
  148. this.IsPTcheckBox.CheckedChanged += new System.EventHandler(this.IsPTcheckBox_CheckedChanged);
  149. //
  150. // SampleNametextBox
  151. //
  152. this.SampleNametextBox.Location = new System.Drawing.Point(106, 68);
  153. this.SampleNametextBox.Name = "SampleNametextBox";
  154. this.SampleNametextBox.Size = new System.Drawing.Size(171, 28);
  155. this.SampleNametextBox.TabIndex = 5;
  156. this.SampleNametextBox.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  157. //
  158. // SampleNameLabel
  159. //
  160. this.SampleNameLabel.AutoSize = true;
  161. this.SampleNameLabel.Location = new System.Drawing.Point(20, 73);
  162. this.SampleNameLabel.Name = "SampleNameLabel";
  163. this.SampleNameLabel.Size = new System.Drawing.Size(80, 18);
  164. this.SampleNameLabel.TabIndex = 6;
  165. this.SampleNameLabel.Text = "样品名称";
  166. //
  167. // groupBox1
  168. //
  169. this.groupBox1.Controls.Add(this.ManualFocuscheckBox);
  170. this.groupBox1.Controls.Add(this.button2);
  171. this.groupBox1.Controls.Add(this.button1);
  172. this.groupBox1.Controls.Add(this.FIBTemptextBox);
  173. this.groupBox1.Controls.Add(this.label1);
  174. this.groupBox1.Controls.Add(this.IsPTcheckBox);
  175. this.groupBox1.Controls.Add(this.SampleNametextBox);
  176. this.groupBox1.Controls.Add(this.SampleNameLabel);
  177. this.groupBox1.Location = new System.Drawing.Point(29, 164);
  178. this.groupBox1.Name = "groupBox1";
  179. this.groupBox1.Size = new System.Drawing.Size(317, 197);
  180. this.groupBox1.TabIndex = 7;
  181. this.groupBox1.TabStop = false;
  182. this.groupBox1.Text = "测量参数";
  183. //
  184. // ManualFocuscheckBox
  185. //
  186. this.ManualFocuscheckBox.AutoSize = true;
  187. this.ManualFocuscheckBox.Location = new System.Drawing.Point(23, 159);
  188. this.ManualFocuscheckBox.Name = "ManualFocuscheckBox";
  189. this.ManualFocuscheckBox.Size = new System.Drawing.Size(142, 22);
  190. this.ManualFocuscheckBox.TabIndex = 11;
  191. this.ManualFocuscheckBox.Text = "是否手动对焦";
  192. this.ManualFocuscheckBox.UseVisualStyleBackColor = true;
  193. this.ManualFocuscheckBox.CheckedChanged += new System.EventHandler(this.ManualFocuscheckBox_CheckedChanged);
  194. //
  195. // button2
  196. //
  197. this.button2.Location = new System.Drawing.Point(233, 112);
  198. this.button2.Name = "button2";
  199. this.button2.Size = new System.Drawing.Size(44, 27);
  200. this.button2.TabIndex = 10;
  201. this.button2.Text = "...";
  202. this.button2.UseVisualStyleBackColor = true;
  203. this.button2.Click += new System.EventHandler(this.button2_Click);
  204. //
  205. // button1
  206. //
  207. this.button1.Location = new System.Drawing.Point(135, 28);
  208. this.button1.Name = "button1";
  209. this.button1.Size = new System.Drawing.Size(142, 30);
  210. this.button1.TabIndex = 9;
  211. this.button1.Text = "确认";
  212. this.button1.UseVisualStyleBackColor = true;
  213. this.button1.Click += new System.EventHandler(this.button1_Click_1);
  214. //
  215. // FIBTemptextBox
  216. //
  217. this.FIBTemptextBox.Location = new System.Drawing.Point(106, 112);
  218. this.FIBTemptextBox.Name = "FIBTemptextBox";
  219. this.FIBTemptextBox.ReadOnly = true;
  220. this.FIBTemptextBox.Size = new System.Drawing.Size(120, 28);
  221. this.FIBTemptextBox.TabIndex = 8;
  222. //
  223. // label1
  224. //
  225. this.label1.AutoSize = true;
  226. this.label1.Location = new System.Drawing.Point(20, 115);
  227. this.label1.Name = "label1";
  228. this.label1.Size = new System.Drawing.Size(80, 18);
  229. this.label1.TabIndex = 7;
  230. this.label1.Text = "操作模板";
  231. //
  232. // button3
  233. //
  234. this.button3.Location = new System.Drawing.Point(184, 29);
  235. this.button3.Name = "button3";
  236. this.button3.Size = new System.Drawing.Size(147, 35);
  237. this.button3.TabIndex = 8;
  238. this.button3.Text = "启动";
  239. this.button3.UseVisualStyleBackColor = true;
  240. this.button3.Click += new System.EventHandler(this.button3_Click);
  241. //
  242. // button4
  243. //
  244. this.button4.Location = new System.Drawing.Point(347, 27);
  245. this.button4.Name = "button4";
  246. this.button4.Size = new System.Drawing.Size(147, 35);
  247. this.button4.TabIndex = 9;
  248. this.button4.Text = "停止";
  249. this.button4.UseVisualStyleBackColor = true;
  250. //
  251. // button5
  252. //
  253. this.button5.Location = new System.Drawing.Point(184, 30);
  254. this.button5.Name = "button5";
  255. this.button5.Size = new System.Drawing.Size(147, 35);
  256. this.button5.TabIndex = 10;
  257. this.button5.Text = "保存";
  258. this.button5.UseVisualStyleBackColor = true;
  259. this.button5.Click += new System.EventHandler(this.button5_Click);
  260. //
  261. // button6
  262. //
  263. this.button6.Location = new System.Drawing.Point(347, 30);
  264. this.button6.Name = "button6";
  265. this.button6.Size = new System.Drawing.Size(147, 35);
  266. this.button6.TabIndex = 11;
  267. this.button6.Text = "打开";
  268. this.button6.UseVisualStyleBackColor = true;
  269. //
  270. // groupBox2
  271. //
  272. this.groupBox2.Controls.Add(this.NewMeasureFile);
  273. this.groupBox2.Controls.Add(this.button5);
  274. this.groupBox2.Controls.Add(this.button6);
  275. this.groupBox2.Location = new System.Drawing.Point(29, 6);
  276. this.groupBox2.Name = "groupBox2";
  277. this.groupBox2.Size = new System.Drawing.Size(745, 71);
  278. this.groupBox2.TabIndex = 12;
  279. this.groupBox2.TabStop = false;
  280. this.groupBox2.Text = "测量文件操作";
  281. //
  282. // groupBox3
  283. //
  284. this.groupBox3.Controls.Add(this.LoadCutHole);
  285. this.groupBox3.Controls.Add(this.button3);
  286. this.groupBox3.Controls.Add(this.button4);
  287. this.groupBox3.Location = new System.Drawing.Point(29, 83);
  288. this.groupBox3.Name = "groupBox3";
  289. this.groupBox3.Size = new System.Drawing.Size(745, 75);
  290. this.groupBox3.TabIndex = 13;
  291. this.groupBox3.TabStop = false;
  292. this.groupBox3.Text = "测量流程";
  293. //
  294. // textBox1
  295. //
  296. this.textBox1.Location = new System.Drawing.Point(352, 164);
  297. this.textBox1.Multiline = true;
  298. this.textBox1.Name = "textBox1";
  299. this.textBox1.Size = new System.Drawing.Size(422, 197);
  300. this.textBox1.TabIndex = 14;
  301. //
  302. // FormMeasureTest
  303. //
  304. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  305. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  306. this.ClientSize = new System.Drawing.Size(800, 523);
  307. this.Controls.Add(this.textBox1);
  308. this.Controls.Add(this.groupBox3);
  309. this.Controls.Add(this.groupBox2);
  310. this.Controls.Add(this.groupBox1);
  311. this.Controls.Add(this.CutHoleGridView);
  312. //this.Name = "FormMeasureTest";
  313. this.Text = "测量流程测试";
  314. ((System.ComponentModel.ISupportInitialize)(this.CutHoleGridView)).EndInit();
  315. this.groupBox1.ResumeLayout(false);
  316. this.groupBox1.PerformLayout();
  317. this.groupBox2.ResumeLayout(false);
  318. this.groupBox3.ResumeLayout(false);
  319. this.ResumeLayout(false);
  320. this.PerformLayout();
  321. }
  322. #endregion
  323. private System.Windows.Forms.Button NewMeasureFile;
  324. private System.Windows.Forms.Button LoadCutHole;
  325. private System.Windows.Forms.DataGridView CutHoleGridView;
  326. private DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
  327. private DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
  328. private DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
  329. private DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
  330. private DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
  331. private DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
  332. private DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
  333. private CheckBox IsPTcheckBox;
  334. private DataGridViewTextBoxColumn Name;
  335. private DataGridViewTextBoxColumn X;
  336. private DataGridViewTextBoxColumn Y;
  337. private DataGridViewTextBoxColumn Z;
  338. private DataGridViewTextBoxColumn M;
  339. private DataGridViewTextBoxColumn R;
  340. private DataGridViewTextBoxColumn T;
  341. private TextBox SampleNametextBox;
  342. private Label SampleNameLabel;
  343. private GroupBox groupBox1;
  344. private Button button1;
  345. private TextBox FIBTemptextBox;
  346. private Label label1;
  347. private Button button2;
  348. private CheckBox ManualFocuscheckBox;
  349. private Button button3;
  350. private Button button4;
  351. private Button button5;
  352. private Button button6;
  353. private GroupBox groupBox2;
  354. private GroupBox groupBox3;
  355. private TextBox textBox1;
  356. }
  357. }