MainForm.Designer.cs 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707
  1. namespace WindowsFormsApp1
  2. {
  3. partial class MainForm
  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 Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  29. this.groupBox1 = new System.Windows.Forms.GroupBox();
  30. this.btnOpenFile = new System.Windows.Forms.Button();
  31. this.btnSaveFile = new System.Windows.Forms.Button();
  32. this.btnNewFile = new System.Windows.Forms.Button();
  33. this.groupBox2 = new System.Windows.Forms.GroupBox();
  34. this.button1 = new System.Windows.Forms.Button();
  35. this.button7 = new System.Windows.Forms.Button();
  36. this.button6 = new System.Windows.Forms.Button();
  37. this.button5 = new System.Windows.Forms.Button();
  38. this.button4 = new System.Windows.Forms.Button();
  39. this.button3 = new System.Windows.Forms.Button();
  40. this.btnLoadCutHoles = new System.Windows.Forms.Button();
  41. this.groupBox3 = new System.Windows.Forms.GroupBox();
  42. this.btParamOK = new System.Windows.Forms.Button();
  43. this.btFIB = new System.Windows.Forms.Button();
  44. this.tBFIBTemp = new System.Windows.Forms.TextBox();
  45. this.label2 = new System.Windows.Forms.Label();
  46. this.label1 = new System.Windows.Forms.Label();
  47. this.tBSampleName = new System.Windows.Forms.TextBox();
  48. this.cBIsManul = new System.Windows.Forms.CheckBox();
  49. this.cBIsPT = new System.Windows.Forms.CheckBox();
  50. this.CutHoleGridView = new System.Windows.Forms.DataGridView();
  51. this.Name = new System.Windows.Forms.DataGridViewTextBoxColumn();
  52. this.X = new System.Windows.Forms.DataGridViewTextBoxColumn();
  53. this.Y = new System.Windows.Forms.DataGridViewTextBoxColumn();
  54. this.Z = new System.Windows.Forms.DataGridViewTextBoxColumn();
  55. this.M = new System.Windows.Forms.DataGridViewTextBoxColumn();
  56. this.R = new System.Windows.Forms.DataGridViewTextBoxColumn();
  57. this.T = new System.Windows.Forms.DataGridViewTextBoxColumn();
  58. this.listmsg = new System.Windows.Forms.ListBox();
  59. this.tbAutoFocus = new System.Windows.Forms.Button();
  60. this.groupBox5 = new System.Windows.Forms.GroupBox();
  61. this.button2 = new System.Windows.Forms.Button();
  62. this.label14 = new System.Windows.Forms.Label();
  63. this.label13 = new System.Windows.Forms.Label();
  64. this.label12 = new System.Windows.Forms.Label();
  65. this.label11 = new System.Windows.Forms.Label();
  66. this.label10 = new System.Windows.Forms.Label();
  67. this.label9 = new System.Windows.Forms.Label();
  68. this.tB_WD = new System.Windows.Forms.TextBox();
  69. this.tB_fStep = new System.Windows.Forms.TextBox();
  70. this.tB_fRange = new System.Windows.Forms.TextBox();
  71. this.tB_Step = new System.Windows.Forms.TextBox();
  72. this.tB_Down = new System.Windows.Forms.TextBox();
  73. this.tB_Up = new System.Windows.Forms.TextBox();
  74. this.label8 = new System.Windows.Forms.Label();
  75. this.label7 = new System.Windows.Forms.Label();
  76. this.label6 = new System.Windows.Forms.Label();
  77. this.label5 = new System.Windows.Forms.Label();
  78. this.label4 = new System.Windows.Forms.Label();
  79. this.label3 = new System.Windows.Forms.Label();
  80. this.tBImgPath = new System.Windows.Forms.TextBox();
  81. this.btImgPath = new System.Windows.Forms.Button();
  82. this.groupBox1.SuspendLayout();
  83. this.groupBox2.SuspendLayout();
  84. this.groupBox3.SuspendLayout();
  85. ((System.ComponentModel.ISupportInitialize)(this.CutHoleGridView)).BeginInit();
  86. this.groupBox5.SuspendLayout();
  87. this.SuspendLayout();
  88. //
  89. // groupBox1
  90. //
  91. this.groupBox1.Controls.Add(this.btnOpenFile);
  92. this.groupBox1.Controls.Add(this.btnSaveFile);
  93. this.groupBox1.Controls.Add(this.btnNewFile);
  94. this.groupBox1.Location = new System.Drawing.Point(12, 12);
  95. this.groupBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  96. this.groupBox1.Name = "groupBox1";
  97. this.groupBox1.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
  98. this.groupBox1.Size = new System.Drawing.Size(454, 80);
  99. this.groupBox1.TabIndex = 1;
  100. this.groupBox1.TabStop = false;
  101. this.groupBox1.Text = "测量文件操作";
  102. //
  103. // btnOpenFile
  104. //
  105. this.btnOpenFile.Location = new System.Drawing.Point(235, 28);
  106. this.btnOpenFile.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  107. this.btnOpenFile.Name = "btnOpenFile";
  108. this.btnOpenFile.Size = new System.Drawing.Size(102, 37);
  109. this.btnOpenFile.TabIndex = 2;
  110. this.btnOpenFile.Text = "打开";
  111. this.btnOpenFile.UseVisualStyleBackColor = true;
  112. this.btnOpenFile.Click += new System.EventHandler(this.btnOpenFile_Click);
  113. //
  114. // btnSaveFile
  115. //
  116. this.btnSaveFile.Location = new System.Drawing.Point(127, 28);
  117. this.btnSaveFile.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  118. this.btnSaveFile.Name = "btnSaveFile";
  119. this.btnSaveFile.Size = new System.Drawing.Size(102, 37);
  120. this.btnSaveFile.TabIndex = 1;
  121. this.btnSaveFile.Text = "保存";
  122. this.btnSaveFile.UseVisualStyleBackColor = true;
  123. this.btnSaveFile.Click += new System.EventHandler(this.btnSaveFile_Click);
  124. //
  125. // btnNewFile
  126. //
  127. this.btnNewFile.Location = new System.Drawing.Point(19, 28);
  128. this.btnNewFile.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  129. this.btnNewFile.Name = "btnNewFile";
  130. this.btnNewFile.Size = new System.Drawing.Size(102, 37);
  131. this.btnNewFile.TabIndex = 0;
  132. this.btnNewFile.Text = "新建";
  133. this.btnNewFile.UseVisualStyleBackColor = true;
  134. this.btnNewFile.Click += new System.EventHandler(this.btnNewFile_Click);
  135. //
  136. // groupBox2
  137. //
  138. this.groupBox2.Controls.Add(this.button1);
  139. this.groupBox2.Controls.Add(this.button7);
  140. this.groupBox2.Controls.Add(this.button6);
  141. this.groupBox2.Controls.Add(this.button5);
  142. this.groupBox2.Controls.Add(this.button4);
  143. this.groupBox2.Controls.Add(this.button3);
  144. this.groupBox2.Controls.Add(this.btnLoadCutHoles);
  145. this.groupBox2.Location = new System.Drawing.Point(12, 98);
  146. this.groupBox2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  147. this.groupBox2.Name = "groupBox2";
  148. this.groupBox2.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
  149. this.groupBox2.Size = new System.Drawing.Size(454, 130);
  150. this.groupBox2.TabIndex = 2;
  151. this.groupBox2.TabStop = false;
  152. this.groupBox2.Text = "测量流程";
  153. //
  154. // button1
  155. //
  156. this.button1.Location = new System.Drawing.Point(343, 80);
  157. this.button1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  158. this.button1.Name = "button1";
  159. this.button1.Size = new System.Drawing.Size(102, 37);
  160. this.button1.TabIndex = 6;
  161. this.button1.Text = "截面";
  162. this.button1.UseVisualStyleBackColor = true;
  163. this.button1.Click += new System.EventHandler(this.button1_Click);
  164. //
  165. // button7
  166. //
  167. this.button7.Location = new System.Drawing.Point(235, 80);
  168. this.button7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  169. this.button7.Name = "button7";
  170. this.button7.Size = new System.Drawing.Size(102, 37);
  171. this.button7.TabIndex = 5;
  172. this.button7.Text = "分析位置";
  173. this.button7.UseVisualStyleBackColor = true;
  174. this.button7.Click += new System.EventHandler(this.button7_Click);
  175. //
  176. // button6
  177. //
  178. this.button6.Location = new System.Drawing.Point(127, 80);
  179. this.button6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  180. this.button6.Name = "button6";
  181. this.button6.Size = new System.Drawing.Size(102, 37);
  182. this.button6.TabIndex = 4;
  183. this.button6.Text = "切割";
  184. this.button6.UseVisualStyleBackColor = true;
  185. this.button6.Click += new System.EventHandler(this.button6_Click);
  186. //
  187. // button5
  188. //
  189. this.button5.Location = new System.Drawing.Point(19, 80);
  190. this.button5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  191. this.button5.Name = "button5";
  192. this.button5.Size = new System.Drawing.Size(102, 37);
  193. this.button5.TabIndex = 3;
  194. this.button5.Text = "定位";
  195. this.button5.UseVisualStyleBackColor = true;
  196. this.button5.Click += new System.EventHandler(this.button5_Click);
  197. //
  198. // button4
  199. //
  200. this.button4.Location = new System.Drawing.Point(235, 38);
  201. this.button4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  202. this.button4.Name = "button4";
  203. this.button4.Size = new System.Drawing.Size(102, 37);
  204. this.button4.TabIndex = 2;
  205. this.button4.Text = "停止";
  206. this.button4.UseVisualStyleBackColor = true;
  207. this.button4.Click += new System.EventHandler(this.button4_Click);
  208. //
  209. // button3
  210. //
  211. this.button3.Location = new System.Drawing.Point(127, 38);
  212. this.button3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  213. this.button3.Name = "button3";
  214. this.button3.Size = new System.Drawing.Size(102, 37);
  215. this.button3.TabIndex = 1;
  216. this.button3.Text = "启动";
  217. this.button3.UseVisualStyleBackColor = true;
  218. this.button3.Click += new System.EventHandler(this.button3_Click);
  219. //
  220. // btnLoadCutHoles
  221. //
  222. this.btnLoadCutHoles.Location = new System.Drawing.Point(19, 38);
  223. this.btnLoadCutHoles.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  224. this.btnLoadCutHoles.Name = "btnLoadCutHoles";
  225. this.btnLoadCutHoles.Size = new System.Drawing.Size(102, 37);
  226. this.btnLoadCutHoles.TabIndex = 0;
  227. this.btnLoadCutHoles.Text = "导入切孔";
  228. this.btnLoadCutHoles.UseVisualStyleBackColor = true;
  229. this.btnLoadCutHoles.Click += new System.EventHandler(this.btnLoadCutHoles_Click);
  230. //
  231. // groupBox3
  232. //
  233. this.groupBox3.Controls.Add(this.btParamOK);
  234. this.groupBox3.Controls.Add(this.btFIB);
  235. this.groupBox3.Controls.Add(this.tBFIBTemp);
  236. this.groupBox3.Controls.Add(this.label2);
  237. this.groupBox3.Controls.Add(this.label1);
  238. this.groupBox3.Controls.Add(this.tBSampleName);
  239. this.groupBox3.Controls.Add(this.cBIsManul);
  240. this.groupBox3.Controls.Add(this.cBIsPT);
  241. this.groupBox3.Location = new System.Drawing.Point(14, 235);
  242. this.groupBox3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  243. this.groupBox3.Name = "groupBox3";
  244. this.groupBox3.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
  245. this.groupBox3.Size = new System.Drawing.Size(774, 76);
  246. this.groupBox3.TabIndex = 3;
  247. this.groupBox3.TabStop = false;
  248. this.groupBox3.Text = "测量参数";
  249. //
  250. // btParamOK
  251. //
  252. this.btParamOK.Location = new System.Drawing.Point(653, 20);
  253. this.btParamOK.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  254. this.btParamOK.Name = "btParamOK";
  255. this.btParamOK.Size = new System.Drawing.Size(102, 37);
  256. this.btParamOK.TabIndex = 7;
  257. this.btParamOK.Text = "确定";
  258. this.btParamOK.UseVisualStyleBackColor = true;
  259. this.btParamOK.Click += new System.EventHandler(this.btParamOK_Click);
  260. //
  261. // btFIB
  262. //
  263. this.btFIB.Location = new System.Drawing.Point(575, 23);
  264. this.btFIB.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  265. this.btFIB.Name = "btFIB";
  266. this.btFIB.Size = new System.Drawing.Size(43, 26);
  267. this.btFIB.TabIndex = 6;
  268. this.btFIB.Text = "...";
  269. this.btFIB.UseVisualStyleBackColor = true;
  270. this.btFIB.Click += new System.EventHandler(this.btFIB_Click);
  271. //
  272. // tBFIBTemp
  273. //
  274. this.tBFIBTemp.Location = new System.Drawing.Point(477, 22);
  275. this.tBFIBTemp.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  276. this.tBFIBTemp.Name = "tBFIBTemp";
  277. this.tBFIBTemp.ReadOnly = true;
  278. this.tBFIBTemp.Size = new System.Drawing.Size(100, 28);
  279. this.tBFIBTemp.TabIndex = 5;
  280. //
  281. // label2
  282. //
  283. this.label2.AutoSize = true;
  284. this.label2.Location = new System.Drawing.Point(408, 31);
  285. this.label2.Name = "label2";
  286. this.label2.Size = new System.Drawing.Size(71, 18);
  287. this.label2.TabIndex = 4;
  288. this.label2.Text = "FIB模板";
  289. //
  290. // label1
  291. //
  292. this.label1.AutoSize = true;
  293. this.label1.Location = new System.Drawing.Point(206, 31);
  294. this.label1.Name = "label1";
  295. this.label1.Size = new System.Drawing.Size(80, 18);
  296. this.label1.TabIndex = 3;
  297. this.label1.Text = "样品名称";
  298. //
  299. // tBSampleName
  300. //
  301. this.tBSampleName.Location = new System.Drawing.Point(288, 28);
  302. this.tBSampleName.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  303. this.tBSampleName.Name = "tBSampleName";
  304. this.tBSampleName.Size = new System.Drawing.Size(100, 28);
  305. this.tBSampleName.TabIndex = 2;
  306. //
  307. // cBIsManul
  308. //
  309. this.cBIsManul.AutoSize = true;
  310. this.cBIsManul.Location = new System.Drawing.Point(94, 28);
  311. this.cBIsManul.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  312. this.cBIsManul.Name = "cBIsManul";
  313. this.cBIsManul.Size = new System.Drawing.Size(106, 22);
  314. this.cBIsManul.TabIndex = 1;
  315. this.cBIsManul.Text = "手动对焦";
  316. this.cBIsManul.UseVisualStyleBackColor = true;
  317. //
  318. // cBIsPT
  319. //
  320. this.cBIsPT.AutoSize = true;
  321. this.cBIsPT.Location = new System.Drawing.Point(18, 28);
  322. this.cBIsPT.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  323. this.cBIsPT.Name = "cBIsPT";
  324. this.cBIsPT.Size = new System.Drawing.Size(70, 22);
  325. this.cBIsPT.TabIndex = 0;
  326. this.cBIsPT.Text = "有PT";
  327. this.cBIsPT.UseVisualStyleBackColor = true;
  328. //
  329. // CutHoleGridView
  330. //
  331. dataGridViewCellStyle1.BackColor = System.Drawing.Color.Beige;
  332. dataGridViewCellStyle1.Font = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Bold);
  333. this.CutHoleGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
  334. this.CutHoleGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  335. this.CutHoleGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  336. this.Name,
  337. this.X,
  338. this.Y,
  339. this.Z,
  340. this.M,
  341. this.R,
  342. this.T});
  343. this.CutHoleGridView.Location = new System.Drawing.Point(15, 326);
  344. this.CutHoleGridView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  345. this.CutHoleGridView.Name = "CutHoleGridView";
  346. this.CutHoleGridView.ReadOnly = true;
  347. this.CutHoleGridView.RowTemplate.Height = 30;
  348. this.CutHoleGridView.Size = new System.Drawing.Size(776, 263);
  349. this.CutHoleGridView.TabIndex = 16;
  350. //
  351. // Name
  352. //
  353. this.Name.Name = "Name";
  354. this.Name.ReadOnly = true;
  355. //
  356. // X
  357. //
  358. this.X.Name = "X";
  359. this.X.ReadOnly = true;
  360. //
  361. // Y
  362. //
  363. this.Y.Name = "Y";
  364. this.Y.ReadOnly = true;
  365. //
  366. // Z
  367. //
  368. this.Z.Name = "Z";
  369. this.Z.ReadOnly = true;
  370. //
  371. // M
  372. //
  373. this.M.Name = "M";
  374. this.M.ReadOnly = true;
  375. //
  376. // R
  377. //
  378. this.R.Name = "R";
  379. this.R.ReadOnly = true;
  380. //
  381. // T
  382. //
  383. this.T.Name = "T";
  384. this.T.ReadOnly = true;
  385. //
  386. // listmsg
  387. //
  388. this.listmsg.FormattingEnabled = true;
  389. this.listmsg.ItemHeight = 18;
  390. this.listmsg.Location = new System.Drawing.Point(802, 18);
  391. this.listmsg.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  392. this.listmsg.Name = "listmsg";
  393. this.listmsg.Size = new System.Drawing.Size(784, 796);
  394. this.listmsg.TabIndex = 17;
  395. //
  396. // tbAutoFocus
  397. //
  398. this.tbAutoFocus.Location = new System.Drawing.Point(630, 158);
  399. this.tbAutoFocus.Name = "tbAutoFocus";
  400. this.tbAutoFocus.Size = new System.Drawing.Size(102, 37);
  401. this.tbAutoFocus.TabIndex = 18;
  402. this.tbAutoFocus.Text = "对焦";
  403. this.tbAutoFocus.UseVisualStyleBackColor = true;
  404. this.tbAutoFocus.Click += new System.EventHandler(this.tbAutoFocus_Click);
  405. //
  406. // groupBox5
  407. //
  408. this.groupBox5.Controls.Add(this.button2);
  409. this.groupBox5.Controls.Add(this.label14);
  410. this.groupBox5.Controls.Add(this.label13);
  411. this.groupBox5.Controls.Add(this.label12);
  412. this.groupBox5.Controls.Add(this.label11);
  413. this.groupBox5.Controls.Add(this.label10);
  414. this.groupBox5.Controls.Add(this.label9);
  415. this.groupBox5.Controls.Add(this.tB_WD);
  416. this.groupBox5.Controls.Add(this.tB_fStep);
  417. this.groupBox5.Controls.Add(this.tB_fRange);
  418. this.groupBox5.Controls.Add(this.tB_Step);
  419. this.groupBox5.Controls.Add(this.tB_Down);
  420. this.groupBox5.Controls.Add(this.tB_Up);
  421. this.groupBox5.Controls.Add(this.label8);
  422. this.groupBox5.Controls.Add(this.label7);
  423. this.groupBox5.Controls.Add(this.label6);
  424. this.groupBox5.Controls.Add(this.label5);
  425. this.groupBox5.Controls.Add(this.label4);
  426. this.groupBox5.Controls.Add(this.label3);
  427. this.groupBox5.Controls.Add(this.tBImgPath);
  428. this.groupBox5.Controls.Add(this.btImgPath);
  429. this.groupBox5.Controls.Add(this.tbAutoFocus);
  430. this.groupBox5.Location = new System.Drawing.Point(17, 609);
  431. this.groupBox5.Name = "groupBox5";
  432. this.groupBox5.Size = new System.Drawing.Size(771, 207);
  433. this.groupBox5.TabIndex = 19;
  434. this.groupBox5.TabStop = false;
  435. this.groupBox5.Text = "自动对焦";
  436. //
  437. // button2
  438. //
  439. this.button2.Location = new System.Drawing.Point(508, 158);
  440. this.button2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  441. this.button2.Name = "button2";
  442. this.button2.Size = new System.Drawing.Size(102, 37);
  443. this.button2.TabIndex = 39;
  444. this.button2.Text = "确定";
  445. this.button2.UseVisualStyleBackColor = true;
  446. this.button2.Click += new System.EventHandler(this.button2_Click);
  447. //
  448. // label14
  449. //
  450. this.label14.AutoSize = true;
  451. this.label14.Location = new System.Drawing.Point(718, 122);
  452. this.label14.Name = "label14";
  453. this.label14.Size = new System.Drawing.Size(26, 18);
  454. this.label14.TabIndex = 38;
  455. this.label14.Text = "um";
  456. //
  457. // label13
  458. //
  459. this.label13.AutoSize = true;
  460. this.label13.Location = new System.Drawing.Point(487, 126);
  461. this.label13.Name = "label13";
  462. this.label13.Size = new System.Drawing.Size(26, 18);
  463. this.label13.TabIndex = 37;
  464. this.label13.Text = "um";
  465. //
  466. // label12
  467. //
  468. this.label12.AutoSize = true;
  469. this.label12.Location = new System.Drawing.Point(222, 121);
  470. this.label12.Name = "label12";
  471. this.label12.Size = new System.Drawing.Size(26, 18);
  472. this.label12.TabIndex = 36;
  473. this.label12.Text = "um";
  474. //
  475. // label11
  476. //
  477. this.label11.AutoSize = true;
  478. this.label11.Location = new System.Drawing.Point(718, 84);
  479. this.label11.Name = "label11";
  480. this.label11.Size = new System.Drawing.Size(26, 18);
  481. this.label11.TabIndex = 35;
  482. this.label11.Text = "um";
  483. //
  484. // label10
  485. //
  486. this.label10.AutoSize = true;
  487. this.label10.Location = new System.Drawing.Point(487, 84);
  488. this.label10.Name = "label10";
  489. this.label10.Size = new System.Drawing.Size(26, 18);
  490. this.label10.TabIndex = 34;
  491. this.label10.Text = "um";
  492. //
  493. // label9
  494. //
  495. this.label9.AutoSize = true;
  496. this.label9.Location = new System.Drawing.Point(218, 84);
  497. this.label9.Name = "label9";
  498. this.label9.Size = new System.Drawing.Size(26, 18);
  499. this.label9.TabIndex = 33;
  500. this.label9.Text = "um";
  501. //
  502. // tB_WD
  503. //
  504. this.tB_WD.Location = new System.Drawing.Point(616, 118);
  505. this.tB_WD.Name = "tB_WD";
  506. this.tB_WD.ReadOnly = true;
  507. this.tB_WD.Size = new System.Drawing.Size(96, 28);
  508. this.tB_WD.TabIndex = 32;
  509. //
  510. // tB_fStep
  511. //
  512. this.tB_fStep.Location = new System.Drawing.Point(385, 119);
  513. this.tB_fStep.Name = "tB_fStep";
  514. this.tB_fStep.Size = new System.Drawing.Size(96, 28);
  515. this.tB_fStep.TabIndex = 31;
  516. this.tB_fStep.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tB_fStep_KeyPress);
  517. //
  518. // tB_fRange
  519. //
  520. this.tB_fRange.Location = new System.Drawing.Point(120, 116);
  521. this.tB_fRange.Name = "tB_fRange";
  522. this.tB_fRange.Size = new System.Drawing.Size(96, 28);
  523. this.tB_fRange.TabIndex = 30;
  524. this.tB_fRange.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tB_fRange_KeyPress);
  525. //
  526. // tB_Step
  527. //
  528. this.tB_Step.Location = new System.Drawing.Point(616, 78);
  529. this.tB_Step.Name = "tB_Step";
  530. this.tB_Step.Size = new System.Drawing.Size(96, 28);
  531. this.tB_Step.TabIndex = 29;
  532. this.tB_Step.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tB_Step_KeyPress);
  533. //
  534. // tB_Down
  535. //
  536. this.tB_Down.Location = new System.Drawing.Point(385, 80);
  537. this.tB_Down.Name = "tB_Down";
  538. this.tB_Down.Size = new System.Drawing.Size(96, 28);
  539. this.tB_Down.TabIndex = 28;
  540. this.tB_Down.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tB_Down_KeyPress);
  541. //
  542. // tB_Up
  543. //
  544. this.tB_Up.Location = new System.Drawing.Point(119, 78);
  545. this.tB_Up.Name = "tB_Up";
  546. this.tB_Up.Size = new System.Drawing.Size(96, 28);
  547. this.tB_Up.TabIndex = 27;
  548. this.tB_Up.TextChanged += new System.EventHandler(this.tB_TextChanged);
  549. this.tB_Up.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tB_Up_KeyPress);
  550. //
  551. // label8
  552. //
  553. this.label8.AutoSize = true;
  554. this.label8.Location = new System.Drawing.Point(530, 119);
  555. this.label8.Name = "label8";
  556. this.label8.Size = new System.Drawing.Size(44, 18);
  557. this.label8.TabIndex = 26;
  558. this.label8.Text = "焦距";
  559. //
  560. // label7
  561. //
  562. this.label7.AutoSize = true;
  563. this.label7.Location = new System.Drawing.Point(305, 119);
  564. this.label7.Name = "label7";
  565. this.label7.Size = new System.Drawing.Size(80, 18);
  566. this.label7.TabIndex = 25;
  567. this.label7.Text = "精调步长";
  568. //
  569. // label6
  570. //
  571. this.label6.AutoSize = true;
  572. this.label6.Location = new System.Drawing.Point(36, 119);
  573. this.label6.Name = "label6";
  574. this.label6.Size = new System.Drawing.Size(80, 18);
  575. this.label6.TabIndex = 24;
  576. this.label6.Text = "精调范围";
  577. //
  578. // label5
  579. //
  580. this.label5.AutoSize = true;
  581. this.label5.Location = new System.Drawing.Point(530, 83);
  582. this.label5.Name = "label5";
  583. this.label5.Size = new System.Drawing.Size(80, 18);
  584. this.label5.TabIndex = 23;
  585. this.label5.Text = "调节步长";
  586. //
  587. // label4
  588. //
  589. this.label4.AutoSize = true;
  590. this.label4.Location = new System.Drawing.Point(299, 83);
  591. this.label4.Name = "label4";
  592. this.label4.Size = new System.Drawing.Size(80, 18);
  593. this.label4.TabIndex = 22;
  594. this.label4.Text = "调节下限";
  595. //
  596. // label3
  597. //
  598. this.label3.AutoSize = true;
  599. this.label3.Location = new System.Drawing.Point(33, 83);
  600. this.label3.Name = "label3";
  601. this.label3.Size = new System.Drawing.Size(80, 18);
  602. this.label3.TabIndex = 8;
  603. this.label3.Text = "调节上限";
  604. //
  605. // tBImgPath
  606. //
  607. this.tBImgPath.Location = new System.Drawing.Point(302, 27);
  608. this.tBImgPath.Name = "tBImgPath";
  609. this.tBImgPath.ReadOnly = true;
  610. this.tBImgPath.Size = new System.Drawing.Size(450, 28);
  611. this.tBImgPath.TabIndex = 21;
  612. //
  613. // btImgPath
  614. //
  615. this.btImgPath.Location = new System.Drawing.Point(17, 25);
  616. this.btImgPath.Name = "btImgPath";
  617. this.btImgPath.Size = new System.Drawing.Size(266, 35);
  618. this.btImgPath.TabIndex = 20;
  619. this.btImgPath.Text = "选择图像存储路径";
  620. this.btImgPath.UseVisualStyleBackColor = true;
  621. this.btImgPath.Click += new System.EventHandler(this.btImgPath_Click);
  622. //
  623. // MainForm
  624. //
  625. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  626. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  627. this.ClientSize = new System.Drawing.Size(1600, 825);
  628. this.Controls.Add(this.groupBox5);
  629. this.Controls.Add(this.listmsg);
  630. this.Controls.Add(this.CutHoleGridView);
  631. this.Controls.Add(this.groupBox3);
  632. this.Controls.Add(this.groupBox2);
  633. this.Controls.Add(this.groupBox1);
  634. this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  635. //this.Name = "MainForm";
  636. this.Text = "测量流程测试";
  637. this.groupBox1.ResumeLayout(false);
  638. this.groupBox2.ResumeLayout(false);
  639. this.groupBox3.ResumeLayout(false);
  640. this.groupBox3.PerformLayout();
  641. ((System.ComponentModel.ISupportInitialize)(this.CutHoleGridView)).EndInit();
  642. this.groupBox5.ResumeLayout(false);
  643. this.groupBox5.PerformLayout();
  644. this.ResumeLayout(false);
  645. }
  646. #endregion
  647. private System.Windows.Forms.GroupBox groupBox1;
  648. private System.Windows.Forms.Button btnOpenFile;
  649. private System.Windows.Forms.Button btnSaveFile;
  650. private System.Windows.Forms.Button btnNewFile;
  651. private System.Windows.Forms.GroupBox groupBox2;
  652. private System.Windows.Forms.Button button7;
  653. private System.Windows.Forms.Button button6;
  654. private System.Windows.Forms.Button button5;
  655. private System.Windows.Forms.Button button4;
  656. private System.Windows.Forms.Button button3;
  657. private System.Windows.Forms.Button btnLoadCutHoles;
  658. private System.Windows.Forms.GroupBox groupBox3;
  659. private System.Windows.Forms.Button button1;
  660. private System.Windows.Forms.CheckBox cBIsManul;
  661. private System.Windows.Forms.CheckBox cBIsPT;
  662. private System.Windows.Forms.TextBox tBFIBTemp;
  663. private System.Windows.Forms.Label label2;
  664. private System.Windows.Forms.Label label1;
  665. private System.Windows.Forms.TextBox tBSampleName;
  666. private System.Windows.Forms.Button btParamOK;
  667. private System.Windows.Forms.Button btFIB;
  668. private System.Windows.Forms.DataGridView CutHoleGridView;
  669. private System.Windows.Forms.DataGridViewTextBoxColumn Name;
  670. private System.Windows.Forms.DataGridViewTextBoxColumn X;
  671. private System.Windows.Forms.DataGridViewTextBoxColumn Y;
  672. private System.Windows.Forms.DataGridViewTextBoxColumn Z;
  673. private System.Windows.Forms.DataGridViewTextBoxColumn M;
  674. private System.Windows.Forms.DataGridViewTextBoxColumn R;
  675. private System.Windows.Forms.DataGridViewTextBoxColumn T;
  676. private System.Windows.Forms.ListBox listmsg;
  677. private System.Windows.Forms.Button tbAutoFocus;
  678. private System.Windows.Forms.GroupBox groupBox5;
  679. private System.Windows.Forms.Button btImgPath;
  680. private System.Windows.Forms.TextBox tBImgPath;
  681. private System.Windows.Forms.Label label9;
  682. private System.Windows.Forms.TextBox tB_WD;
  683. private System.Windows.Forms.TextBox tB_fStep;
  684. private System.Windows.Forms.TextBox tB_fRange;
  685. private System.Windows.Forms.TextBox tB_Step;
  686. private System.Windows.Forms.TextBox tB_Down;
  687. private System.Windows.Forms.TextBox tB_Up;
  688. private System.Windows.Forms.Label label8;
  689. private System.Windows.Forms.Label label7;
  690. private System.Windows.Forms.Label label6;
  691. private System.Windows.Forms.Label label5;
  692. private System.Windows.Forms.Label label4;
  693. private System.Windows.Forms.Label label3;
  694. private System.Windows.Forms.Label label14;
  695. private System.Windows.Forms.Label label13;
  696. private System.Windows.Forms.Label label12;
  697. private System.Windows.Forms.Label label11;
  698. private System.Windows.Forms.Label label10;
  699. private System.Windows.Forms.Button button2;
  700. }
  701. }