Form1.Designer.cs 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908
  1. namespace OxfordExtenderWrapper
  2. {
  3. partial class Form1
  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.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
  29. System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
  30. System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
  31. System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.label6 = new System.Windows.Forms.Label();
  36. this.label7 = new System.Windows.Forms.Label();
  37. this.tBHV = new System.Windows.Forms.TextBox();
  38. this.label8 = new System.Windows.Forms.Label();
  39. this.button1 = new System.Windows.Forms.Button();
  40. this.tBHVIn = new System.Windows.Forms.TextBox();
  41. this.button2 = new System.Windows.Forms.Button();
  42. this.label9 = new System.Windows.Forms.Label();
  43. this.tBWD = new System.Windows.Forms.TextBox();
  44. this.tBMag = new System.Windows.Forms.TextBox();
  45. this.tBBright = new System.Windows.Forms.TextBox();
  46. this.tBContast = new System.Windows.Forms.TextBox();
  47. this.label10 = new System.Windows.Forms.Label();
  48. this.label11 = new System.Windows.Forms.Label();
  49. this.label12 = new System.Windows.Forms.Label();
  50. this.label13 = new System.Windows.Forms.Label();
  51. this.button3 = new System.Windows.Forms.Button();
  52. this.button4 = new System.Windows.Forms.Button();
  53. this.button5 = new System.Windows.Forms.Button();
  54. this.button6 = new System.Windows.Forms.Button();
  55. this.tBWDIn = new System.Windows.Forms.TextBox();
  56. this.tBMagIn = new System.Windows.Forms.TextBox();
  57. this.tBrightIn = new System.Windows.Forms.TextBox();
  58. this.tBContrastIn = new System.Windows.Forms.TextBox();
  59. this.label14 = new System.Windows.Forms.Label();
  60. this.label15 = new System.Windows.Forms.Label();
  61. this.label16 = new System.Windows.Forms.Label();
  62. this.label17 = new System.Windows.Forms.Label();
  63. this.button7 = new System.Windows.Forms.Button();
  64. this.button8 = new System.Windows.Forms.Button();
  65. this.button9 = new System.Windows.Forms.Button();
  66. this.button10 = new System.Windows.Forms.Button();
  67. this.label4 = new System.Windows.Forms.Label();
  68. this.label5 = new System.Windows.Forms.Label();
  69. this.label18 = new System.Windows.Forms.Label();
  70. this.label19 = new System.Windows.Forms.Label();
  71. this.label20 = new System.Windows.Forms.Label();
  72. this.label21 = new System.Windows.Forms.Label();
  73. this.tBX = new System.Windows.Forms.TextBox();
  74. this.tBY = new System.Windows.Forms.TextBox();
  75. this.tBZ = new System.Windows.Forms.TextBox();
  76. this.tBT = new System.Windows.Forms.TextBox();
  77. this.tBR = new System.Windows.Forms.TextBox();
  78. this.label22 = new System.Windows.Forms.Label();
  79. this.label23 = new System.Windows.Forms.Label();
  80. this.label24 = new System.Windows.Forms.Label();
  81. this.label25 = new System.Windows.Forms.Label();
  82. this.label26 = new System.Windows.Forms.Label();
  83. this.button11 = new System.Windows.Forms.Button();
  84. this.button12 = new System.Windows.Forms.Button();
  85. this.button13 = new System.Windows.Forms.Button();
  86. this.button14 = new System.Windows.Forms.Button();
  87. this.button15 = new System.Windows.Forms.Button();
  88. this.tBXIn = new System.Windows.Forms.TextBox();
  89. this.tBYIn = new System.Windows.Forms.TextBox();
  90. this.tBZIn = new System.Windows.Forms.TextBox();
  91. this.tBTIn = new System.Windows.Forms.TextBox();
  92. this.tBRIn = new System.Windows.Forms.TextBox();
  93. this.label27 = new System.Windows.Forms.Label();
  94. this.label28 = new System.Windows.Forms.Label();
  95. this.label29 = new System.Windows.Forms.Label();
  96. this.label30 = new System.Windows.Forms.Label();
  97. this.label31 = new System.Windows.Forms.Label();
  98. this.button16 = new System.Windows.Forms.Button();
  99. this.button18 = new System.Windows.Forms.Button();
  100. this.button19 = new System.Windows.Forms.Button();
  101. this.button20 = new System.Windows.Forms.Button();
  102. this.button21 = new System.Windows.Forms.Button();
  103. this.button22 = new System.Windows.Forms.Button();
  104. this.button23 = new System.Windows.Forms.Button();
  105. this.groupBox1 = new System.Windows.Forms.GroupBox();
  106. this.button27 = new System.Windows.Forms.Button();
  107. this.拍图 = new System.Windows.Forms.GroupBox();
  108. this.cboSource = new System.Windows.Forms.ComboBox();
  109. this.txtBSEDwell = new System.Windows.Forms.TextBox();
  110. this.txtBSEHeight = new System.Windows.Forms.TextBox();
  111. this.txtBSEWidth = new System.Windows.Forms.TextBox();
  112. this.pBImage = new System.Windows.Forms.PictureBox();
  113. this.button24 = new System.Windows.Forms.Button();
  114. this.label45 = new System.Windows.Forms.Label();
  115. this.label44 = new System.Windows.Forms.Label();
  116. this.label43 = new System.Windows.Forms.Label();
  117. this.groupBox2 = new System.Windows.Forms.GroupBox();
  118. this.button28 = new System.Windows.Forms.Button();
  119. this.btnTest = new System.Windows.Forms.Button();
  120. this.label42 = new System.Windows.Forms.Label();
  121. this.button29 = new System.Windows.Forms.Button();
  122. this.textTime = new System.Windows.Forms.TextBox();
  123. this.label37 = new System.Windows.Forms.Label();
  124. this.txtarea2l3 = new System.Windows.Forms.TextBox();
  125. this.label38 = new System.Windows.Forms.Label();
  126. this.txtarea2l2 = new System.Windows.Forms.TextBox();
  127. this.label40 = new System.Windows.Forms.Label();
  128. this.txtarea2y3 = new System.Windows.Forms.TextBox();
  129. this.txtarea2x3 = new System.Windows.Forms.TextBox();
  130. this.label41 = new System.Windows.Forms.Label();
  131. this.txtarea2y2 = new System.Windows.Forms.TextBox();
  132. this.label39 = new System.Windows.Forms.Label();
  133. this.txtarea2x2 = new System.Windows.Forms.TextBox();
  134. this.textRegionX1 = new System.Windows.Forms.TextBox();
  135. this.txtarea2l1 = new System.Windows.Forms.TextBox();
  136. this.textRegionY1 = new System.Windows.Forms.TextBox();
  137. this.txtarea1l3 = new System.Windows.Forms.TextBox();
  138. this.textRegionwidth1 = new System.Windows.Forms.TextBox();
  139. this.txtarea2y1 = new System.Windows.Forms.TextBox();
  140. this.textRegionHeight = new System.Windows.Forms.TextBox();
  141. this.txtarea2x1 = new System.Windows.Forms.TextBox();
  142. this.txtarea1y3 = new System.Windows.Forms.TextBox();
  143. this.txtarea1x3 = new System.Windows.Forms.TextBox();
  144. this.txtarea1l2 = new System.Windows.Forms.TextBox();
  145. this.txtarea1l1 = new System.Windows.Forms.TextBox();
  146. this.txtarea1y2 = new System.Windows.Forms.TextBox();
  147. this.txtarea1x2 = new System.Windows.Forms.TextBox();
  148. this.txtarea1y1 = new System.Windows.Forms.TextBox();
  149. this.txtarea1x1 = new System.Windows.Forms.TextBox();
  150. this.label36 = new System.Windows.Forms.Label();
  151. this.txtpy5 = new System.Windows.Forms.TextBox();
  152. this.txtpx5 = new System.Windows.Forms.TextBox();
  153. this.txtpy4 = new System.Windows.Forms.TextBox();
  154. this.txtpx4 = new System.Windows.Forms.TextBox();
  155. this.txtpy3 = new System.Windows.Forms.TextBox();
  156. this.txtpx3 = new System.Windows.Forms.TextBox();
  157. this.txtpy2 = new System.Windows.Forms.TextBox();
  158. this.txtpx2 = new System.Windows.Forms.TextBox();
  159. this.label35 = new System.Windows.Forms.Label();
  160. this.label34 = new System.Windows.Forms.Label();
  161. this.label33 = new System.Windows.Forms.Label();
  162. this.txtpy1 = new System.Windows.Forms.TextBox();
  163. this.txtpx1 = new System.Windows.Forms.TextBox();
  164. this.label32 = new System.Windows.Forms.Label();
  165. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  166. this.元素 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  167. this.含量 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  168. this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
  169. this.button26 = new System.Windows.Forms.Button();
  170. this.button25 = new System.Windows.Forms.Button();
  171. this.groupBox1.SuspendLayout();
  172. this.拍图.SuspendLayout();
  173. ((System.ComponentModel.ISupportInitialize)(this.pBImage)).BeginInit();
  174. this.groupBox2.SuspendLayout();
  175. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  176. ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
  177. this.SuspendLayout();
  178. //
  179. // label1
  180. //
  181. this.label1.AutoSize = true;
  182. this.label1.Location = new System.Drawing.Point(62, 25);
  183. this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  184. this.label1.Name = "label1";
  185. this.label1.Size = new System.Drawing.Size(29, 12);
  186. this.label1.TabIndex = 0;
  187. this.label1.Text = "高压";
  188. //
  189. // label2
  190. //
  191. this.label2.AutoSize = true;
  192. this.label2.Location = new System.Drawing.Point(38, 54);
  193. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  194. this.label2.Name = "label2";
  195. this.label2.Size = new System.Drawing.Size(53, 12);
  196. this.label2.TabIndex = 1;
  197. this.label2.Text = "工作距离";
  198. //
  199. // label3
  200. //
  201. this.label3.AutoSize = true;
  202. this.label3.Location = new System.Drawing.Point(38, 84);
  203. this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  204. this.label3.Name = "label3";
  205. this.label3.Size = new System.Drawing.Size(53, 12);
  206. this.label3.TabIndex = 2;
  207. this.label3.Text = "放大倍数";
  208. //
  209. // label6
  210. //
  211. this.label6.AutoSize = true;
  212. this.label6.Location = new System.Drawing.Point(62, 113);
  213. this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  214. this.label6.Name = "label6";
  215. this.label6.Size = new System.Drawing.Size(29, 12);
  216. this.label6.TabIndex = 5;
  217. this.label6.Text = "亮度";
  218. //
  219. // label7
  220. //
  221. this.label7.AutoSize = true;
  222. this.label7.Location = new System.Drawing.Point(50, 151);
  223. this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  224. this.label7.Name = "label7";
  225. this.label7.Size = new System.Drawing.Size(41, 12);
  226. this.label7.TabIndex = 6;
  227. this.label7.Text = "对比度";
  228. //
  229. // tBHV
  230. //
  231. this.tBHV.Location = new System.Drawing.Point(122, 22);
  232. this.tBHV.Margin = new System.Windows.Forms.Padding(2);
  233. this.tBHV.Name = "tBHV";
  234. this.tBHV.ReadOnly = true;
  235. this.tBHV.Size = new System.Drawing.Size(68, 21);
  236. this.tBHV.TabIndex = 7;
  237. //
  238. // label8
  239. //
  240. this.label8.AutoSize = true;
  241. this.label8.Location = new System.Drawing.Point(193, 25);
  242. this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  243. this.label8.Name = "label8";
  244. this.label8.Size = new System.Drawing.Size(17, 12);
  245. this.label8.TabIndex = 8;
  246. this.label8.Text = "kV";
  247. //
  248. // button1
  249. //
  250. this.button1.Location = new System.Drawing.Point(224, 18);
  251. this.button1.Margin = new System.Windows.Forms.Padding(2);
  252. this.button1.Name = "button1";
  253. this.button1.Size = new System.Drawing.Size(50, 26);
  254. this.button1.TabIndex = 9;
  255. this.button1.Text = "获取";
  256. this.button1.UseVisualStyleBackColor = true;
  257. this.button1.Click += new System.EventHandler(this.button1_Click);
  258. //
  259. // tBHVIn
  260. //
  261. this.tBHVIn.Location = new System.Drawing.Point(308, 22);
  262. this.tBHVIn.Margin = new System.Windows.Forms.Padding(2);
  263. this.tBHVIn.Name = "tBHVIn";
  264. this.tBHVIn.Size = new System.Drawing.Size(68, 21);
  265. this.tBHVIn.TabIndex = 10;
  266. this.tBHVIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress);
  267. //
  268. // button2
  269. //
  270. this.button2.Location = new System.Drawing.Point(425, 18);
  271. this.button2.Margin = new System.Windows.Forms.Padding(2);
  272. this.button2.Name = "button2";
  273. this.button2.Size = new System.Drawing.Size(50, 26);
  274. this.button2.TabIndex = 11;
  275. this.button2.Text = "设定";
  276. this.button2.UseVisualStyleBackColor = true;
  277. this.button2.Click += new System.EventHandler(this.button2_Click);
  278. //
  279. // label9
  280. //
  281. this.label9.AutoSize = true;
  282. this.label9.Location = new System.Drawing.Point(379, 25);
  283. this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  284. this.label9.Name = "label9";
  285. this.label9.Size = new System.Drawing.Size(17, 12);
  286. this.label9.TabIndex = 12;
  287. this.label9.Text = "kV";
  288. //
  289. // tBWD
  290. //
  291. this.tBWD.Location = new System.Drawing.Point(122, 51);
  292. this.tBWD.Margin = new System.Windows.Forms.Padding(2);
  293. this.tBWD.Name = "tBWD";
  294. this.tBWD.ReadOnly = true;
  295. this.tBWD.Size = new System.Drawing.Size(68, 21);
  296. this.tBWD.TabIndex = 13;
  297. //
  298. // tBMag
  299. //
  300. this.tBMag.Location = new System.Drawing.Point(122, 82);
  301. this.tBMag.Margin = new System.Windows.Forms.Padding(2);
  302. this.tBMag.Name = "tBMag";
  303. this.tBMag.ReadOnly = true;
  304. this.tBMag.Size = new System.Drawing.Size(68, 21);
  305. this.tBMag.TabIndex = 14;
  306. //
  307. // tBBright
  308. //
  309. this.tBBright.Location = new System.Drawing.Point(122, 110);
  310. this.tBBright.Margin = new System.Windows.Forms.Padding(2);
  311. this.tBBright.Name = "tBBright";
  312. this.tBBright.ReadOnly = true;
  313. this.tBBright.Size = new System.Drawing.Size(68, 21);
  314. this.tBBright.TabIndex = 15;
  315. //
  316. // tBContast
  317. //
  318. this.tBContast.Location = new System.Drawing.Point(122, 145);
  319. this.tBContast.Margin = new System.Windows.Forms.Padding(2);
  320. this.tBContast.Name = "tBContast";
  321. this.tBContast.ReadOnly = true;
  322. this.tBContast.Size = new System.Drawing.Size(68, 21);
  323. this.tBContast.TabIndex = 16;
  324. //
  325. // label10
  326. //
  327. this.label10.AutoSize = true;
  328. this.label10.Location = new System.Drawing.Point(193, 54);
  329. this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  330. this.label10.Name = "label10";
  331. this.label10.Size = new System.Drawing.Size(17, 12);
  332. this.label10.TabIndex = 17;
  333. this.label10.Text = "mm";
  334. //
  335. // label11
  336. //
  337. this.label11.AutoSize = true;
  338. this.label11.Location = new System.Drawing.Point(193, 84);
  339. this.label11.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  340. this.label11.Name = "label11";
  341. this.label11.Size = new System.Drawing.Size(11, 12);
  342. this.label11.TabIndex = 18;
  343. this.label11.Text = "X";
  344. //
  345. // label12
  346. //
  347. this.label12.AutoSize = true;
  348. this.label12.Location = new System.Drawing.Point(193, 113);
  349. this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  350. this.label12.Name = "label12";
  351. this.label12.Size = new System.Drawing.Size(11, 12);
  352. this.label12.TabIndex = 19;
  353. this.label12.Text = "%";
  354. //
  355. // label13
  356. //
  357. this.label13.AutoSize = true;
  358. this.label13.Location = new System.Drawing.Point(193, 146);
  359. this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  360. this.label13.Name = "label13";
  361. this.label13.Size = new System.Drawing.Size(11, 12);
  362. this.label13.TabIndex = 20;
  363. this.label13.Text = "%";
  364. //
  365. // button3
  366. //
  367. this.button3.Location = new System.Drawing.Point(224, 48);
  368. this.button3.Margin = new System.Windows.Forms.Padding(2);
  369. this.button3.Name = "button3";
  370. this.button3.Size = new System.Drawing.Size(50, 26);
  371. this.button3.TabIndex = 21;
  372. this.button3.Text = "获取";
  373. this.button3.UseVisualStyleBackColor = true;
  374. this.button3.Click += new System.EventHandler(this.button3_Click);
  375. //
  376. // button4
  377. //
  378. this.button4.Location = new System.Drawing.Point(224, 78);
  379. this.button4.Margin = new System.Windows.Forms.Padding(2);
  380. this.button4.Name = "button4";
  381. this.button4.Size = new System.Drawing.Size(50, 26);
  382. this.button4.TabIndex = 22;
  383. this.button4.Text = "获取";
  384. this.button4.UseVisualStyleBackColor = true;
  385. this.button4.Click += new System.EventHandler(this.button4_Click);
  386. //
  387. // button5
  388. //
  389. this.button5.Location = new System.Drawing.Point(224, 106);
  390. this.button5.Margin = new System.Windows.Forms.Padding(2);
  391. this.button5.Name = "button5";
  392. this.button5.Size = new System.Drawing.Size(50, 26);
  393. this.button5.TabIndex = 23;
  394. this.button5.Text = "获取";
  395. this.button5.UseVisualStyleBackColor = true;
  396. this.button5.Click += new System.EventHandler(this.button5_Click);
  397. //
  398. // button6
  399. //
  400. this.button6.Location = new System.Drawing.Point(224, 145);
  401. this.button6.Margin = new System.Windows.Forms.Padding(2);
  402. this.button6.Name = "button6";
  403. this.button6.Size = new System.Drawing.Size(50, 26);
  404. this.button6.TabIndex = 24;
  405. this.button6.Text = "获取";
  406. this.button6.UseVisualStyleBackColor = true;
  407. this.button6.Click += new System.EventHandler(this.button6_Click);
  408. //
  409. // tBWDIn
  410. //
  411. this.tBWDIn.Location = new System.Drawing.Point(308, 51);
  412. this.tBWDIn.Margin = new System.Windows.Forms.Padding(2);
  413. this.tBWDIn.Name = "tBWDIn";
  414. this.tBWDIn.Size = new System.Drawing.Size(68, 21);
  415. this.tBWDIn.TabIndex = 25;
  416. this.tBWDIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBWDIn_KeyPress);
  417. //
  418. // tBMagIn
  419. //
  420. this.tBMagIn.Location = new System.Drawing.Point(308, 82);
  421. this.tBMagIn.Margin = new System.Windows.Forms.Padding(2);
  422. this.tBMagIn.Name = "tBMagIn";
  423. this.tBMagIn.Size = new System.Drawing.Size(68, 21);
  424. this.tBMagIn.TabIndex = 26;
  425. this.tBMagIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBMagIn_KeyPress);
  426. //
  427. // tBrightIn
  428. //
  429. this.tBrightIn.Location = new System.Drawing.Point(308, 114);
  430. this.tBrightIn.Margin = new System.Windows.Forms.Padding(2);
  431. this.tBrightIn.Name = "tBrightIn";
  432. this.tBrightIn.Size = new System.Drawing.Size(68, 21);
  433. this.tBrightIn.TabIndex = 27;
  434. this.tBrightIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBrightIn_KeyPress);
  435. //
  436. // tBContrastIn
  437. //
  438. this.tBContrastIn.Location = new System.Drawing.Point(308, 150);
  439. this.tBContrastIn.Margin = new System.Windows.Forms.Padding(2);
  440. this.tBContrastIn.Name = "tBContrastIn";
  441. this.tBContrastIn.Size = new System.Drawing.Size(68, 21);
  442. this.tBContrastIn.TabIndex = 28;
  443. this.tBContrastIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBContrastIn_KeyPress);
  444. //
  445. // label14
  446. //
  447. this.label14.AutoSize = true;
  448. this.label14.Location = new System.Drawing.Point(379, 151);
  449. this.label14.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  450. this.label14.Name = "label14";
  451. this.label14.Size = new System.Drawing.Size(11, 12);
  452. this.label14.TabIndex = 32;
  453. this.label14.Text = "%";
  454. //
  455. // label15
  456. //
  457. this.label15.AutoSize = true;
  458. this.label15.Location = new System.Drawing.Point(379, 118);
  459. this.label15.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  460. this.label15.Name = "label15";
  461. this.label15.Size = new System.Drawing.Size(11, 12);
  462. this.label15.TabIndex = 31;
  463. this.label15.Text = "%";
  464. //
  465. // label16
  466. //
  467. this.label16.AutoSize = true;
  468. this.label16.Location = new System.Drawing.Point(379, 89);
  469. this.label16.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  470. this.label16.Name = "label16";
  471. this.label16.Size = new System.Drawing.Size(11, 12);
  472. this.label16.TabIndex = 30;
  473. this.label16.Text = "X";
  474. //
  475. // label17
  476. //
  477. this.label17.AutoSize = true;
  478. this.label17.Location = new System.Drawing.Point(379, 58);
  479. this.label17.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  480. this.label17.Name = "label17";
  481. this.label17.Size = new System.Drawing.Size(17, 12);
  482. this.label17.TabIndex = 29;
  483. this.label17.Text = "mm";
  484. //
  485. // button7
  486. //
  487. this.button7.Location = new System.Drawing.Point(425, 48);
  488. this.button7.Margin = new System.Windows.Forms.Padding(2);
  489. this.button7.Name = "button7";
  490. this.button7.Size = new System.Drawing.Size(50, 26);
  491. this.button7.TabIndex = 33;
  492. this.button7.Text = "设定";
  493. this.button7.UseVisualStyleBackColor = true;
  494. this.button7.Click += new System.EventHandler(this.button7_Click);
  495. //
  496. // button8
  497. //
  498. this.button8.Location = new System.Drawing.Point(425, 78);
  499. this.button8.Margin = new System.Windows.Forms.Padding(2);
  500. this.button8.Name = "button8";
  501. this.button8.Size = new System.Drawing.Size(50, 26);
  502. this.button8.TabIndex = 34;
  503. this.button8.Text = "设定";
  504. this.button8.UseVisualStyleBackColor = true;
  505. this.button8.Click += new System.EventHandler(this.button8_Click);
  506. //
  507. // button9
  508. //
  509. this.button9.Location = new System.Drawing.Point(425, 106);
  510. this.button9.Margin = new System.Windows.Forms.Padding(2);
  511. this.button9.Name = "button9";
  512. this.button9.Size = new System.Drawing.Size(50, 26);
  513. this.button9.TabIndex = 35;
  514. this.button9.Text = "设定";
  515. this.button9.UseVisualStyleBackColor = true;
  516. this.button9.Click += new System.EventHandler(this.button9_Click);
  517. //
  518. // button10
  519. //
  520. this.button10.Location = new System.Drawing.Point(425, 140);
  521. this.button10.Margin = new System.Windows.Forms.Padding(2);
  522. this.button10.Name = "button10";
  523. this.button10.Size = new System.Drawing.Size(50, 26);
  524. this.button10.TabIndex = 36;
  525. this.button10.Text = "设定";
  526. this.button10.UseVisualStyleBackColor = true;
  527. this.button10.Click += new System.EventHandler(this.button10_Click);
  528. //
  529. // label4
  530. //
  531. this.label4.AutoSize = true;
  532. this.label4.Location = new System.Drawing.Point(50, 182);
  533. this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  534. this.label4.Name = "label4";
  535. this.label4.Size = new System.Drawing.Size(41, 12);
  536. this.label4.TabIndex = 37;
  537. this.label4.Text = "样品台";
  538. //
  539. // label5
  540. //
  541. this.label5.AutoSize = true;
  542. this.label5.Location = new System.Drawing.Point(69, 194);
  543. this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  544. this.label5.Name = "label5";
  545. this.label5.Size = new System.Drawing.Size(11, 12);
  546. this.label5.TabIndex = 38;
  547. this.label5.Text = "X";
  548. //
  549. // label18
  550. //
  551. this.label18.AutoSize = true;
  552. this.label18.Location = new System.Drawing.Point(69, 225);
  553. this.label18.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  554. this.label18.Name = "label18";
  555. this.label18.Size = new System.Drawing.Size(11, 12);
  556. this.label18.TabIndex = 39;
  557. this.label18.Text = "Y";
  558. //
  559. // label19
  560. //
  561. this.label19.AutoSize = true;
  562. this.label19.Location = new System.Drawing.Point(69, 254);
  563. this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  564. this.label19.Name = "label19";
  565. this.label19.Size = new System.Drawing.Size(11, 12);
  566. this.label19.TabIndex = 40;
  567. this.label19.Text = "Z";
  568. //
  569. // label20
  570. //
  571. this.label20.AutoSize = true;
  572. this.label20.Location = new System.Drawing.Point(69, 283);
  573. this.label20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  574. this.label20.Name = "label20";
  575. this.label20.Size = new System.Drawing.Size(11, 12);
  576. this.label20.TabIndex = 41;
  577. this.label20.Text = "T";
  578. //
  579. // label21
  580. //
  581. this.label21.AutoSize = true;
  582. this.label21.Location = new System.Drawing.Point(69, 313);
  583. this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  584. this.label21.Name = "label21";
  585. this.label21.Size = new System.Drawing.Size(11, 12);
  586. this.label21.TabIndex = 42;
  587. this.label21.Text = "R";
  588. //
  589. // tBX
  590. //
  591. this.tBX.Location = new System.Drawing.Point(122, 187);
  592. this.tBX.Margin = new System.Windows.Forms.Padding(2);
  593. this.tBX.Name = "tBX";
  594. this.tBX.ReadOnly = true;
  595. this.tBX.Size = new System.Drawing.Size(68, 21);
  596. this.tBX.TabIndex = 43;
  597. //
  598. // tBY
  599. //
  600. this.tBY.Location = new System.Drawing.Point(122, 222);
  601. this.tBY.Margin = new System.Windows.Forms.Padding(2);
  602. this.tBY.Name = "tBY";
  603. this.tBY.ReadOnly = true;
  604. this.tBY.Size = new System.Drawing.Size(68, 21);
  605. this.tBY.TabIndex = 44;
  606. //
  607. // tBZ
  608. //
  609. this.tBZ.Location = new System.Drawing.Point(122, 254);
  610. this.tBZ.Margin = new System.Windows.Forms.Padding(2);
  611. this.tBZ.Name = "tBZ";
  612. this.tBZ.ReadOnly = true;
  613. this.tBZ.Size = new System.Drawing.Size(68, 21);
  614. this.tBZ.TabIndex = 45;
  615. //
  616. // tBT
  617. //
  618. this.tBT.Location = new System.Drawing.Point(122, 283);
  619. this.tBT.Margin = new System.Windows.Forms.Padding(2);
  620. this.tBT.Name = "tBT";
  621. this.tBT.ReadOnly = true;
  622. this.tBT.Size = new System.Drawing.Size(68, 21);
  623. this.tBT.TabIndex = 46;
  624. //
  625. // tBR
  626. //
  627. this.tBR.Location = new System.Drawing.Point(122, 313);
  628. this.tBR.Margin = new System.Windows.Forms.Padding(2);
  629. this.tBR.Name = "tBR";
  630. this.tBR.ReadOnly = true;
  631. this.tBR.Size = new System.Drawing.Size(68, 21);
  632. this.tBR.TabIndex = 47;
  633. //
  634. // label22
  635. //
  636. this.label22.AutoSize = true;
  637. this.label22.Location = new System.Drawing.Point(193, 194);
  638. this.label22.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  639. this.label22.Name = "label22";
  640. this.label22.Size = new System.Drawing.Size(17, 12);
  641. this.label22.TabIndex = 48;
  642. this.label22.Text = "um";
  643. //
  644. // label23
  645. //
  646. this.label23.AutoSize = true;
  647. this.label23.Location = new System.Drawing.Point(193, 230);
  648. this.label23.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  649. this.label23.Name = "label23";
  650. this.label23.Size = new System.Drawing.Size(17, 12);
  651. this.label23.TabIndex = 49;
  652. this.label23.Text = "um";
  653. //
  654. // label24
  655. //
  656. this.label24.AutoSize = true;
  657. this.label24.Location = new System.Drawing.Point(193, 257);
  658. this.label24.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  659. this.label24.Name = "label24";
  660. this.label24.Size = new System.Drawing.Size(17, 12);
  661. this.label24.TabIndex = 50;
  662. this.label24.Text = "um";
  663. //
  664. // label25
  665. //
  666. this.label25.AutoSize = true;
  667. this.label25.Location = new System.Drawing.Point(193, 286);
  668. this.label25.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  669. this.label25.Name = "label25";
  670. this.label25.Size = new System.Drawing.Size(11, 12);
  671. this.label25.TabIndex = 51;
  672. this.label25.Text = "o";
  673. //
  674. // label26
  675. //
  676. this.label26.AutoSize = true;
  677. this.label26.Location = new System.Drawing.Point(193, 314);
  678. this.label26.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  679. this.label26.Name = "label26";
  680. this.label26.Size = new System.Drawing.Size(11, 12);
  681. this.label26.TabIndex = 52;
  682. this.label26.Text = "o";
  683. //
  684. // button11
  685. //
  686. this.button11.Location = new System.Drawing.Point(224, 182);
  687. this.button11.Margin = new System.Windows.Forms.Padding(2);
  688. this.button11.Name = "button11";
  689. this.button11.Size = new System.Drawing.Size(50, 26);
  690. this.button11.TabIndex = 53;
  691. this.button11.Text = "获取";
  692. this.button11.UseVisualStyleBackColor = true;
  693. this.button11.Click += new System.EventHandler(this.button11_Click);
  694. //
  695. // button12
  696. //
  697. this.button12.Location = new System.Drawing.Point(224, 218);
  698. this.button12.Margin = new System.Windows.Forms.Padding(2);
  699. this.button12.Name = "button12";
  700. this.button12.Size = new System.Drawing.Size(50, 26);
  701. this.button12.TabIndex = 54;
  702. this.button12.Text = "获取";
  703. this.button12.UseVisualStyleBackColor = true;
  704. this.button12.Click += new System.EventHandler(this.button12_Click);
  705. //
  706. // button13
  707. //
  708. this.button13.Location = new System.Drawing.Point(224, 247);
  709. this.button13.Margin = new System.Windows.Forms.Padding(2);
  710. this.button13.Name = "button13";
  711. this.button13.Size = new System.Drawing.Size(50, 26);
  712. this.button13.TabIndex = 55;
  713. this.button13.Text = "获取";
  714. this.button13.UseVisualStyleBackColor = true;
  715. this.button13.Click += new System.EventHandler(this.button13_Click);
  716. //
  717. // button14
  718. //
  719. this.button14.Location = new System.Drawing.Point(224, 278);
  720. this.button14.Margin = new System.Windows.Forms.Padding(2);
  721. this.button14.Name = "button14";
  722. this.button14.Size = new System.Drawing.Size(50, 26);
  723. this.button14.TabIndex = 56;
  724. this.button14.Text = "获取";
  725. this.button14.UseVisualStyleBackColor = true;
  726. this.button14.Click += new System.EventHandler(this.button14_Click);
  727. //
  728. // button15
  729. //
  730. this.button15.Location = new System.Drawing.Point(224, 308);
  731. this.button15.Margin = new System.Windows.Forms.Padding(2);
  732. this.button15.Name = "button15";
  733. this.button15.Size = new System.Drawing.Size(50, 26);
  734. this.button15.TabIndex = 57;
  735. this.button15.Text = "获取";
  736. this.button15.UseVisualStyleBackColor = true;
  737. this.button15.Click += new System.EventHandler(this.button15_Click);
  738. //
  739. // tBXIn
  740. //
  741. this.tBXIn.Location = new System.Drawing.Point(308, 187);
  742. this.tBXIn.Margin = new System.Windows.Forms.Padding(2);
  743. this.tBXIn.Name = "tBXIn";
  744. this.tBXIn.Size = new System.Drawing.Size(68, 21);
  745. this.tBXIn.TabIndex = 58;
  746. this.tBXIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBXIn_KeyPress);
  747. //
  748. // tBYIn
  749. //
  750. this.tBYIn.Location = new System.Drawing.Point(308, 222);
  751. this.tBYIn.Margin = new System.Windows.Forms.Padding(2);
  752. this.tBYIn.Name = "tBYIn";
  753. this.tBYIn.Size = new System.Drawing.Size(68, 21);
  754. this.tBYIn.TabIndex = 59;
  755. this.tBYIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBYIn_KeyPress);
  756. //
  757. // tBZIn
  758. //
  759. this.tBZIn.Location = new System.Drawing.Point(308, 252);
  760. this.tBZIn.Margin = new System.Windows.Forms.Padding(2);
  761. this.tBZIn.Name = "tBZIn";
  762. this.tBZIn.Size = new System.Drawing.Size(68, 21);
  763. this.tBZIn.TabIndex = 60;
  764. this.tBZIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBZIn_KeyPress);
  765. //
  766. // tBTIn
  767. //
  768. this.tBTIn.Location = new System.Drawing.Point(308, 278);
  769. this.tBTIn.Margin = new System.Windows.Forms.Padding(2);
  770. this.tBTIn.Name = "tBTIn";
  771. this.tBTIn.Size = new System.Drawing.Size(68, 21);
  772. this.tBTIn.TabIndex = 61;
  773. this.tBTIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBTIn_KeyPress);
  774. //
  775. // tBRIn
  776. //
  777. this.tBRIn.Location = new System.Drawing.Point(308, 308);
  778. this.tBRIn.Margin = new System.Windows.Forms.Padding(2);
  779. this.tBRIn.Name = "tBRIn";
  780. this.tBRIn.Size = new System.Drawing.Size(68, 21);
  781. this.tBRIn.TabIndex = 62;
  782. this.tBRIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBRIn_KeyPress);
  783. //
  784. // label27
  785. //
  786. this.label27.AutoSize = true;
  787. this.label27.Location = new System.Drawing.Point(379, 194);
  788. this.label27.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  789. this.label27.Name = "label27";
  790. this.label27.Size = new System.Drawing.Size(17, 12);
  791. this.label27.TabIndex = 63;
  792. this.label27.Text = "um";
  793. //
  794. // label28
  795. //
  796. this.label28.AutoSize = true;
  797. this.label28.Location = new System.Drawing.Point(379, 225);
  798. this.label28.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  799. this.label28.Name = "label28";
  800. this.label28.Size = new System.Drawing.Size(17, 12);
  801. this.label28.TabIndex = 64;
  802. this.label28.Text = "um";
  803. //
  804. // label29
  805. //
  806. this.label29.AutoSize = true;
  807. this.label29.Location = new System.Drawing.Point(379, 252);
  808. this.label29.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  809. this.label29.Name = "label29";
  810. this.label29.Size = new System.Drawing.Size(17, 12);
  811. this.label29.TabIndex = 65;
  812. this.label29.Text = "um";
  813. //
  814. // label30
  815. //
  816. this.label30.AutoSize = true;
  817. this.label30.Location = new System.Drawing.Point(379, 284);
  818. this.label30.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  819. this.label30.Name = "label30";
  820. this.label30.Size = new System.Drawing.Size(11, 12);
  821. this.label30.TabIndex = 66;
  822. this.label30.Text = "o";
  823. //
  824. // label31
  825. //
  826. this.label31.AutoSize = true;
  827. this.label31.Location = new System.Drawing.Point(379, 314);
  828. this.label31.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  829. this.label31.Name = "label31";
  830. this.label31.Size = new System.Drawing.Size(11, 12);
  831. this.label31.TabIndex = 67;
  832. this.label31.Text = "o";
  833. //
  834. // button16
  835. //
  836. this.button16.Location = new System.Drawing.Point(425, 187);
  837. this.button16.Margin = new System.Windows.Forms.Padding(2);
  838. this.button16.Name = "button16";
  839. this.button16.Size = new System.Drawing.Size(50, 59);
  840. this.button16.TabIndex = 68;
  841. this.button16.Text = "设定";
  842. this.button16.UseVisualStyleBackColor = true;
  843. this.button16.Click += new System.EventHandler(this.button16_Click);
  844. //
  845. // button18
  846. //
  847. this.button18.Location = new System.Drawing.Point(425, 250);
  848. this.button18.Margin = new System.Windows.Forms.Padding(2);
  849. this.button18.Name = "button18";
  850. this.button18.Size = new System.Drawing.Size(50, 26);
  851. this.button18.TabIndex = 70;
  852. this.button18.Text = "设定";
  853. this.button18.UseVisualStyleBackColor = true;
  854. this.button18.Click += new System.EventHandler(this.button18_Click);
  855. //
  856. // button19
  857. //
  858. this.button19.Location = new System.Drawing.Point(425, 280);
  859. this.button19.Margin = new System.Windows.Forms.Padding(2);
  860. this.button19.Name = "button19";
  861. this.button19.Size = new System.Drawing.Size(50, 26);
  862. this.button19.TabIndex = 71;
  863. this.button19.Text = "设定";
  864. this.button19.UseVisualStyleBackColor = true;
  865. this.button19.Click += new System.EventHandler(this.button19_Click);
  866. //
  867. // button20
  868. //
  869. this.button20.Location = new System.Drawing.Point(425, 310);
  870. this.button20.Margin = new System.Windows.Forms.Padding(2);
  871. this.button20.Name = "button20";
  872. this.button20.Size = new System.Drawing.Size(50, 26);
  873. this.button20.TabIndex = 72;
  874. this.button20.Text = "设定";
  875. this.button20.UseVisualStyleBackColor = true;
  876. this.button20.Click += new System.EventHandler(this.button20_Click);
  877. //
  878. // button21
  879. //
  880. this.button21.Location = new System.Drawing.Point(122, 347);
  881. this.button21.Margin = new System.Windows.Forms.Padding(2);
  882. this.button21.Name = "button21";
  883. this.button21.Size = new System.Drawing.Size(106, 26);
  884. this.button21.TabIndex = 73;
  885. this.button21.Text = "获取全部";
  886. this.button21.UseVisualStyleBackColor = true;
  887. this.button21.Click += new System.EventHandler(this.button21_Click);
  888. //
  889. // button22
  890. //
  891. this.button22.Location = new System.Drawing.Point(252, 347);
  892. this.button22.Margin = new System.Windows.Forms.Padding(2);
  893. this.button22.Name = "button22";
  894. this.button22.Size = new System.Drawing.Size(98, 26);
  895. this.button22.TabIndex = 74;
  896. this.button22.Text = "设定XY";
  897. this.button22.UseVisualStyleBackColor = true;
  898. this.button22.Click += new System.EventHandler(this.button22_Click);
  899. //
  900. // button23
  901. //
  902. this.button23.Location = new System.Drawing.Point(381, 347);
  903. this.button23.Margin = new System.Windows.Forms.Padding(2);
  904. this.button23.Name = "button23";
  905. this.button23.Size = new System.Drawing.Size(94, 26);
  906. this.button23.TabIndex = 75;
  907. this.button23.Text = "设定全部";
  908. this.button23.UseVisualStyleBackColor = true;
  909. this.button23.Click += new System.EventHandler(this.button23_Click);
  910. //
  911. // groupBox1
  912. //
  913. this.groupBox1.Controls.Add(this.button27);
  914. this.groupBox1.Controls.Add(this.button2);
  915. this.groupBox1.Controls.Add(this.button23);
  916. this.groupBox1.Controls.Add(this.label1);
  917. this.groupBox1.Controls.Add(this.button22);
  918. this.groupBox1.Controls.Add(this.label2);
  919. this.groupBox1.Controls.Add(this.button21);
  920. this.groupBox1.Controls.Add(this.label3);
  921. this.groupBox1.Controls.Add(this.button20);
  922. this.groupBox1.Controls.Add(this.label6);
  923. this.groupBox1.Controls.Add(this.button19);
  924. this.groupBox1.Controls.Add(this.label7);
  925. this.groupBox1.Controls.Add(this.button18);
  926. this.groupBox1.Controls.Add(this.tBHV);
  927. this.groupBox1.Controls.Add(this.label8);
  928. this.groupBox1.Controls.Add(this.button16);
  929. this.groupBox1.Controls.Add(this.button1);
  930. this.groupBox1.Controls.Add(this.label31);
  931. this.groupBox1.Controls.Add(this.tBHVIn);
  932. this.groupBox1.Controls.Add(this.label30);
  933. this.groupBox1.Controls.Add(this.label9);
  934. this.groupBox1.Controls.Add(this.label29);
  935. this.groupBox1.Controls.Add(this.tBWD);
  936. this.groupBox1.Controls.Add(this.label28);
  937. this.groupBox1.Controls.Add(this.tBMag);
  938. this.groupBox1.Controls.Add(this.label27);
  939. this.groupBox1.Controls.Add(this.tBBright);
  940. this.groupBox1.Controls.Add(this.tBRIn);
  941. this.groupBox1.Controls.Add(this.tBContast);
  942. this.groupBox1.Controls.Add(this.tBTIn);
  943. this.groupBox1.Controls.Add(this.label10);
  944. this.groupBox1.Controls.Add(this.tBZIn);
  945. this.groupBox1.Controls.Add(this.label11);
  946. this.groupBox1.Controls.Add(this.tBYIn);
  947. this.groupBox1.Controls.Add(this.label12);
  948. this.groupBox1.Controls.Add(this.tBXIn);
  949. this.groupBox1.Controls.Add(this.label13);
  950. this.groupBox1.Controls.Add(this.button15);
  951. this.groupBox1.Controls.Add(this.button3);
  952. this.groupBox1.Controls.Add(this.button14);
  953. this.groupBox1.Controls.Add(this.button4);
  954. this.groupBox1.Controls.Add(this.button13);
  955. this.groupBox1.Controls.Add(this.button5);
  956. this.groupBox1.Controls.Add(this.button12);
  957. this.groupBox1.Controls.Add(this.button6);
  958. this.groupBox1.Controls.Add(this.button11);
  959. this.groupBox1.Controls.Add(this.tBWDIn);
  960. this.groupBox1.Controls.Add(this.label26);
  961. this.groupBox1.Controls.Add(this.tBMagIn);
  962. this.groupBox1.Controls.Add(this.label25);
  963. this.groupBox1.Controls.Add(this.tBrightIn);
  964. this.groupBox1.Controls.Add(this.label24);
  965. this.groupBox1.Controls.Add(this.tBContrastIn);
  966. this.groupBox1.Controls.Add(this.label23);
  967. this.groupBox1.Controls.Add(this.label17);
  968. this.groupBox1.Controls.Add(this.label22);
  969. this.groupBox1.Controls.Add(this.label16);
  970. this.groupBox1.Controls.Add(this.tBR);
  971. this.groupBox1.Controls.Add(this.label15);
  972. this.groupBox1.Controls.Add(this.tBT);
  973. this.groupBox1.Controls.Add(this.label14);
  974. this.groupBox1.Controls.Add(this.tBZ);
  975. this.groupBox1.Controls.Add(this.button7);
  976. this.groupBox1.Controls.Add(this.tBY);
  977. this.groupBox1.Controls.Add(this.button8);
  978. this.groupBox1.Controls.Add(this.tBX);
  979. this.groupBox1.Controls.Add(this.button9);
  980. this.groupBox1.Controls.Add(this.label21);
  981. this.groupBox1.Controls.Add(this.button10);
  982. this.groupBox1.Controls.Add(this.label20);
  983. this.groupBox1.Controls.Add(this.label4);
  984. this.groupBox1.Controls.Add(this.label19);
  985. this.groupBox1.Controls.Add(this.label5);
  986. this.groupBox1.Controls.Add(this.label18);
  987. this.groupBox1.Location = new System.Drawing.Point(0, 1);
  988. this.groupBox1.Margin = new System.Windows.Forms.Padding(2);
  989. this.groupBox1.Name = "groupBox1";
  990. this.groupBox1.Padding = new System.Windows.Forms.Padding(2);
  991. this.groupBox1.Size = new System.Drawing.Size(499, 391);
  992. this.groupBox1.TabIndex = 76;
  993. this.groupBox1.TabStop = false;
  994. this.groupBox1.Text = "电镜和样品台控制";
  995. //
  996. // button27
  997. //
  998. this.button27.Font = new System.Drawing.Font("Microsoft YaHei", 12F);
  999. this.button27.Location = new System.Drawing.Point(4, 114);
  1000. this.button27.Margin = new System.Windows.Forms.Padding(2);
  1001. this.button27.Name = "button27";
  1002. this.button27.Size = new System.Drawing.Size(39, 143);
  1003. this.button27.TabIndex = 79;
  1004. this.button27.Text = "连接能谱";
  1005. this.button27.UseVisualStyleBackColor = true;
  1006. this.button27.Click += new System.EventHandler(this.button27_Click);
  1007. //
  1008. // 拍图
  1009. //
  1010. this.拍图.Controls.Add(this.cboSource);
  1011. this.拍图.Controls.Add(this.txtBSEDwell);
  1012. this.拍图.Controls.Add(this.txtBSEHeight);
  1013. this.拍图.Controls.Add(this.txtBSEWidth);
  1014. this.拍图.Controls.Add(this.pBImage);
  1015. this.拍图.Controls.Add(this.button24);
  1016. this.拍图.Controls.Add(this.label45);
  1017. this.拍图.Controls.Add(this.label44);
  1018. this.拍图.Controls.Add(this.label43);
  1019. this.拍图.Location = new System.Drawing.Point(503, 8);
  1020. this.拍图.Margin = new System.Windows.Forms.Padding(2);
  1021. this.拍图.Name = "拍图";
  1022. this.拍图.Padding = new System.Windows.Forms.Padding(2);
  1023. this.拍图.Size = new System.Drawing.Size(646, 384);
  1024. this.拍图.TabIndex = 77;
  1025. this.拍图.TabStop = false;
  1026. this.拍图.Text = "拍图";
  1027. //
  1028. // cboSource
  1029. //
  1030. this.cboSource.FormattingEnabled = true;
  1031. this.cboSource.Items.AddRange(new object[] {
  1032. "SE",
  1033. "BSE"});
  1034. this.cboSource.Location = new System.Drawing.Point(80, 22);
  1035. this.cboSource.Name = "cboSource";
  1036. this.cboSource.Size = new System.Drawing.Size(50, 20);
  1037. this.cboSource.TabIndex = 13;
  1038. this.cboSource.Text = "BSE";
  1039. //
  1040. // txtBSEDwell
  1041. //
  1042. this.txtBSEDwell.Location = new System.Drawing.Point(451, 19);
  1043. this.txtBSEDwell.Name = "txtBSEDwell";
  1044. this.txtBSEDwell.Size = new System.Drawing.Size(94, 21);
  1045. this.txtBSEDwell.TabIndex = 3;
  1046. this.txtBSEDwell.Text = "2";
  1047. //
  1048. // txtBSEHeight
  1049. //
  1050. this.txtBSEHeight.Location = new System.Drawing.Point(280, 19);
  1051. this.txtBSEHeight.Name = "txtBSEHeight";
  1052. this.txtBSEHeight.Size = new System.Drawing.Size(94, 21);
  1053. this.txtBSEHeight.TabIndex = 3;
  1054. this.txtBSEHeight.Text = "768";
  1055. //
  1056. // txtBSEWidth
  1057. //
  1058. this.txtBSEWidth.Location = new System.Drawing.Point(157, 19);
  1059. this.txtBSEWidth.Name = "txtBSEWidth";
  1060. this.txtBSEWidth.Size = new System.Drawing.Size(94, 21);
  1061. this.txtBSEWidth.TabIndex = 3;
  1062. this.txtBSEWidth.Text = "1024";
  1063. //
  1064. // pBImage
  1065. //
  1066. this.pBImage.Location = new System.Drawing.Point(36, 51);
  1067. this.pBImage.Margin = new System.Windows.Forms.Padding(2);
  1068. this.pBImage.Name = "pBImage";
  1069. this.pBImage.Size = new System.Drawing.Size(593, 329);
  1070. this.pBImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  1071. this.pBImage.TabIndex = 1;
  1072. this.pBImage.TabStop = false;
  1073. //
  1074. // button24
  1075. //
  1076. this.button24.Location = new System.Drawing.Point(26, 18);
  1077. this.button24.Margin = new System.Windows.Forms.Padding(2);
  1078. this.button24.Name = "button24";
  1079. this.button24.Size = new System.Drawing.Size(50, 26);
  1080. this.button24.TabIndex = 0;
  1081. this.button24.Text = "拍图";
  1082. this.button24.UseVisualStyleBackColor = true;
  1083. this.button24.Click += new System.EventHandler(this.button24_Click);
  1084. //
  1085. // label45
  1086. //
  1087. this.label45.AutoSize = true;
  1088. this.label45.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  1089. this.label45.Location = new System.Drawing.Point(405, 22);
  1090. this.label45.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1091. this.label45.Name = "label45";
  1092. this.label45.Size = new System.Drawing.Size(41, 12);
  1093. this.label45.TabIndex = 12;
  1094. this.label45.Text = "DWell:";
  1095. //
  1096. // label44
  1097. //
  1098. this.label44.AutoSize = true;
  1099. this.label44.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  1100. this.label44.Location = new System.Drawing.Point(264, 22);
  1101. this.label44.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1102. this.label44.Name = "label44";
  1103. this.label44.Size = new System.Drawing.Size(17, 12);
  1104. this.label44.TabIndex = 12;
  1105. this.label44.Text = "H:";
  1106. //
  1107. // label43
  1108. //
  1109. this.label43.AutoSize = true;
  1110. this.label43.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  1111. this.label43.Location = new System.Drawing.Point(135, 22);
  1112. this.label43.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1113. this.label43.Name = "label43";
  1114. this.label43.Size = new System.Drawing.Size(17, 12);
  1115. this.label43.TabIndex = 12;
  1116. this.label43.Text = "W:";
  1117. //
  1118. // groupBox2
  1119. //
  1120. this.groupBox2.Controls.Add(this.button28);
  1121. this.groupBox2.Controls.Add(this.btnTest);
  1122. this.groupBox2.Controls.Add(this.label42);
  1123. this.groupBox2.Controls.Add(this.button29);
  1124. this.groupBox2.Controls.Add(this.textTime);
  1125. this.groupBox2.Controls.Add(this.label37);
  1126. this.groupBox2.Controls.Add(this.txtarea2l3);
  1127. this.groupBox2.Controls.Add(this.label38);
  1128. this.groupBox2.Controls.Add(this.txtarea2l2);
  1129. this.groupBox2.Controls.Add(this.label40);
  1130. this.groupBox2.Controls.Add(this.txtarea2y3);
  1131. this.groupBox2.Controls.Add(this.txtarea2x3);
  1132. this.groupBox2.Controls.Add(this.label41);
  1133. this.groupBox2.Controls.Add(this.txtarea2y2);
  1134. this.groupBox2.Controls.Add(this.label39);
  1135. this.groupBox2.Controls.Add(this.txtarea2x2);
  1136. this.groupBox2.Controls.Add(this.textRegionX1);
  1137. this.groupBox2.Controls.Add(this.txtarea2l1);
  1138. this.groupBox2.Controls.Add(this.textRegionY1);
  1139. this.groupBox2.Controls.Add(this.txtarea1l3);
  1140. this.groupBox2.Controls.Add(this.textRegionwidth1);
  1141. this.groupBox2.Controls.Add(this.txtarea2y1);
  1142. this.groupBox2.Controls.Add(this.textRegionHeight);
  1143. this.groupBox2.Controls.Add(this.txtarea2x1);
  1144. this.groupBox2.Controls.Add(this.txtarea1y3);
  1145. this.groupBox2.Controls.Add(this.txtarea1x3);
  1146. this.groupBox2.Controls.Add(this.txtarea1l2);
  1147. this.groupBox2.Controls.Add(this.txtarea1l1);
  1148. this.groupBox2.Controls.Add(this.txtarea1y2);
  1149. this.groupBox2.Controls.Add(this.txtarea1x2);
  1150. this.groupBox2.Controls.Add(this.txtarea1y1);
  1151. this.groupBox2.Controls.Add(this.txtarea1x1);
  1152. this.groupBox2.Controls.Add(this.label36);
  1153. this.groupBox2.Controls.Add(this.txtpy5);
  1154. this.groupBox2.Controls.Add(this.txtpx5);
  1155. this.groupBox2.Controls.Add(this.txtpy4);
  1156. this.groupBox2.Controls.Add(this.txtpx4);
  1157. this.groupBox2.Controls.Add(this.txtpy3);
  1158. this.groupBox2.Controls.Add(this.txtpx3);
  1159. this.groupBox2.Controls.Add(this.txtpy2);
  1160. this.groupBox2.Controls.Add(this.txtpx2);
  1161. this.groupBox2.Controls.Add(this.label35);
  1162. this.groupBox2.Controls.Add(this.label34);
  1163. this.groupBox2.Controls.Add(this.label33);
  1164. this.groupBox2.Controls.Add(this.txtpy1);
  1165. this.groupBox2.Controls.Add(this.txtpx1);
  1166. this.groupBox2.Controls.Add(this.label32);
  1167. this.groupBox2.Controls.Add(this.dataGridView1);
  1168. this.groupBox2.Controls.Add(this.chart1);
  1169. this.groupBox2.Controls.Add(this.button26);
  1170. this.groupBox2.Controls.Add(this.button25);
  1171. this.groupBox2.Location = new System.Drawing.Point(9, 396);
  1172. this.groupBox2.Margin = new System.Windows.Forms.Padding(2);
  1173. this.groupBox2.Name = "groupBox2";
  1174. this.groupBox2.Padding = new System.Windows.Forms.Padding(2);
  1175. this.groupBox2.Size = new System.Drawing.Size(1164, 429);
  1176. this.groupBox2.TabIndex = 78;
  1177. this.groupBox2.TabStop = false;
  1178. this.groupBox2.Text = "能谱";
  1179. //
  1180. // button28
  1181. //
  1182. this.button28.Font = new System.Drawing.Font("Microsoft YaHei", 12F);
  1183. this.button28.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  1184. this.button28.Location = new System.Drawing.Point(501, 147);
  1185. this.button28.Margin = new System.Windows.Forms.Padding(2);
  1186. this.button28.Name = "button28";
  1187. this.button28.Size = new System.Drawing.Size(41, 142);
  1188. this.button28.TabIndex = 116;
  1189. this.button28.Text = "面扫多点";
  1190. this.button28.UseVisualStyleBackColor = true;
  1191. this.button28.Click += new System.EventHandler(this.button28_Click);
  1192. //
  1193. // btnTest
  1194. //
  1195. this.btnTest.Font = new System.Drawing.Font("Microsoft YaHei", 12F);
  1196. this.btnTest.Location = new System.Drawing.Point(499, 26);
  1197. this.btnTest.Margin = new System.Windows.Forms.Padding(2);
  1198. this.btnTest.Name = "btnTest";
  1199. this.btnTest.Size = new System.Drawing.Size(41, 119);
  1200. this.btnTest.TabIndex = 116;
  1201. this.btnTest.Text = "点扫多点";
  1202. this.btnTest.UseVisualStyleBackColor = true;
  1203. this.btnTest.Click += new System.EventHandler(this.btnTest_Click);
  1204. //
  1205. // label42
  1206. //
  1207. this.label42.AutoSize = true;
  1208. this.label42.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  1209. this.label42.Location = new System.Drawing.Point(360, 385);
  1210. this.label42.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1211. this.label42.Name = "label42";
  1212. this.label42.Size = new System.Drawing.Size(29, 12);
  1213. this.label42.TabIndex = 82;
  1214. this.label42.Text = "Time";
  1215. //
  1216. // button29
  1217. //
  1218. this.button29.Font = new System.Drawing.Font("Microsoft YaHei", 12F);
  1219. this.button29.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  1220. this.button29.Location = new System.Drawing.Point(501, 293);
  1221. this.button29.Margin = new System.Windows.Forms.Padding(2);
  1222. this.button29.Name = "button29";
  1223. this.button29.Size = new System.Drawing.Size(39, 125);
  1224. this.button29.TabIndex = 1;
  1225. this.button29.Text = "矩形面采集";
  1226. this.button29.UseVisualStyleBackColor = true;
  1227. this.button29.Click += new System.EventHandler(this.button29_Click);
  1228. //
  1229. // textTime
  1230. //
  1231. this.textTime.Location = new System.Drawing.Point(353, 397);
  1232. this.textTime.Margin = new System.Windows.Forms.Padding(2);
  1233. this.textTime.Name = "textTime";
  1234. this.textTime.Size = new System.Drawing.Size(42, 21);
  1235. this.textTime.TabIndex = 101;
  1236. this.textTime.Text = "1500";
  1237. this.textTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1238. //
  1239. // label37
  1240. //
  1241. this.label37.AutoSize = true;
  1242. this.label37.Location = new System.Drawing.Point(305, 220);
  1243. this.label37.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1244. this.label37.Name = "label37";
  1245. this.label37.Size = new System.Drawing.Size(47, 12);
  1246. this.label37.TabIndex = 115;
  1247. this.label37.Text = "Areas2:";
  1248. //
  1249. // txtarea2l3
  1250. //
  1251. this.txtarea2l3.Location = new System.Drawing.Point(457, 268);
  1252. this.txtarea2l3.Margin = new System.Windows.Forms.Padding(2);
  1253. this.txtarea2l3.Name = "txtarea2l3";
  1254. this.txtarea2l3.Size = new System.Drawing.Size(42, 21);
  1255. this.txtarea2l3.TabIndex = 114;
  1256. this.txtarea2l3.Text = "55";
  1257. this.txtarea2l3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1258. //
  1259. // label38
  1260. //
  1261. this.label38.AutoSize = true;
  1262. this.label38.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  1263. this.label38.Location = new System.Drawing.Point(362, 294);
  1264. this.label38.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1265. this.label38.Name = "label38";
  1266. this.label38.Size = new System.Drawing.Size(11, 12);
  1267. this.label38.TabIndex = 82;
  1268. this.label38.Text = "X";
  1269. //
  1270. // txtarea2l2
  1271. //
  1272. this.txtarea2l2.Location = new System.Drawing.Point(458, 243);
  1273. this.txtarea2l2.Margin = new System.Windows.Forms.Padding(2);
  1274. this.txtarea2l2.Name = "txtarea2l2";
  1275. this.txtarea2l2.Size = new System.Drawing.Size(42, 21);
  1276. this.txtarea2l2.TabIndex = 113;
  1277. this.txtarea2l2.Text = "44";
  1278. this.txtarea2l2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1279. //
  1280. // label40
  1281. //
  1282. this.label40.AutoSize = true;
  1283. this.label40.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  1284. this.label40.Location = new System.Drawing.Point(352, 339);
  1285. this.label40.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1286. this.label40.Name = "label40";
  1287. this.label40.Size = new System.Drawing.Size(29, 12);
  1288. this.label40.TabIndex = 82;
  1289. this.label40.Text = "Wide";
  1290. //
  1291. // txtarea2y3
  1292. //
  1293. this.txtarea2y3.Location = new System.Drawing.Point(403, 268);
  1294. this.txtarea2y3.Margin = new System.Windows.Forms.Padding(2);
  1295. this.txtarea2y3.Name = "txtarea2y3";
  1296. this.txtarea2y3.Size = new System.Drawing.Size(42, 21);
  1297. this.txtarea2y3.TabIndex = 112;
  1298. this.txtarea2y3.Text = "79";
  1299. this.txtarea2y3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1300. //
  1301. // txtarea2x3
  1302. //
  1303. this.txtarea2x3.Location = new System.Drawing.Point(356, 268);
  1304. this.txtarea2x3.Margin = new System.Windows.Forms.Padding(2);
  1305. this.txtarea2x3.Name = "txtarea2x3";
  1306. this.txtarea2x3.Size = new System.Drawing.Size(42, 21);
  1307. this.txtarea2x3.TabIndex = 111;
  1308. this.txtarea2x3.Text = "66";
  1309. this.txtarea2x3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1310. //
  1311. // label41
  1312. //
  1313. this.label41.AutoSize = true;
  1314. this.label41.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  1315. this.label41.Location = new System.Drawing.Point(406, 339);
  1316. this.label41.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1317. this.label41.Name = "label41";
  1318. this.label41.Size = new System.Drawing.Size(35, 12);
  1319. this.label41.TabIndex = 82;
  1320. this.label41.Text = "Heigh";
  1321. //
  1322. // txtarea2y2
  1323. //
  1324. this.txtarea2y2.Location = new System.Drawing.Point(404, 243);
  1325. this.txtarea2y2.Margin = new System.Windows.Forms.Padding(2);
  1326. this.txtarea2y2.Name = "txtarea2y2";
  1327. this.txtarea2y2.Size = new System.Drawing.Size(42, 21);
  1328. this.txtarea2y2.TabIndex = 110;
  1329. this.txtarea2y2.Text = "78";
  1330. this.txtarea2y2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1331. //
  1332. // label39
  1333. //
  1334. this.label39.AutoSize = true;
  1335. this.label39.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  1336. this.label39.Location = new System.Drawing.Point(419, 294);
  1337. this.label39.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1338. this.label39.Name = "label39";
  1339. this.label39.Size = new System.Drawing.Size(11, 12);
  1340. this.label39.TabIndex = 82;
  1341. this.label39.Text = "Y";
  1342. //
  1343. // txtarea2x2
  1344. //
  1345. this.txtarea2x2.Location = new System.Drawing.Point(357, 243);
  1346. this.txtarea2x2.Margin = new System.Windows.Forms.Padding(2);
  1347. this.txtarea2x2.Name = "txtarea2x2";
  1348. this.txtarea2x2.Size = new System.Drawing.Size(42, 21);
  1349. this.txtarea2x2.TabIndex = 109;
  1350. this.txtarea2x2.Text = "19";
  1351. this.txtarea2x2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1352. //
  1353. // textRegionX1
  1354. //
  1355. this.textRegionX1.Location = new System.Drawing.Point(351, 308);
  1356. this.textRegionX1.Margin = new System.Windows.Forms.Padding(2);
  1357. this.textRegionX1.Name = "textRegionX1";
  1358. this.textRegionX1.Size = new System.Drawing.Size(42, 21);
  1359. this.textRegionX1.TabIndex = 101;
  1360. this.textRegionX1.Text = "1";
  1361. this.textRegionX1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1362. //
  1363. // txtarea2l1
  1364. //
  1365. this.txtarea2l1.Location = new System.Drawing.Point(458, 218);
  1366. this.txtarea2l1.Margin = new System.Windows.Forms.Padding(2);
  1367. this.txtarea2l1.Name = "txtarea2l1";
  1368. this.txtarea2l1.Size = new System.Drawing.Size(42, 21);
  1369. this.txtarea2l1.TabIndex = 108;
  1370. this.txtarea2l1.Text = "33";
  1371. this.txtarea2l1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1372. //
  1373. // textRegionY1
  1374. //
  1375. this.textRegionY1.Location = new System.Drawing.Point(404, 308);
  1376. this.textRegionY1.Margin = new System.Windows.Forms.Padding(2);
  1377. this.textRegionY1.Name = "textRegionY1";
  1378. this.textRegionY1.Size = new System.Drawing.Size(42, 21);
  1379. this.textRegionY1.TabIndex = 101;
  1380. this.textRegionY1.Text = "1";
  1381. this.textRegionY1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1382. //
  1383. // txtarea1l3
  1384. //
  1385. this.txtarea1l3.Location = new System.Drawing.Point(458, 195);
  1386. this.txtarea1l3.Margin = new System.Windows.Forms.Padding(2);
  1387. this.txtarea1l3.Name = "txtarea1l3";
  1388. this.txtarea1l3.Size = new System.Drawing.Size(42, 21);
  1389. this.txtarea1l3.TabIndex = 107;
  1390. this.txtarea1l3.Text = "44";
  1391. this.txtarea1l3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1392. //
  1393. // textRegionwidth1
  1394. //
  1395. this.textRegionwidth1.Location = new System.Drawing.Point(351, 355);
  1396. this.textRegionwidth1.Margin = new System.Windows.Forms.Padding(2);
  1397. this.textRegionwidth1.Name = "textRegionwidth1";
  1398. this.textRegionwidth1.Size = new System.Drawing.Size(42, 21);
  1399. this.textRegionwidth1.TabIndex = 101;
  1400. this.textRegionwidth1.Text = "2";
  1401. this.textRegionwidth1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1402. //
  1403. // txtarea2y1
  1404. //
  1405. this.txtarea2y1.Location = new System.Drawing.Point(404, 218);
  1406. this.txtarea2y1.Margin = new System.Windows.Forms.Padding(2);
  1407. this.txtarea2y1.Name = "txtarea2y1";
  1408. this.txtarea2y1.Size = new System.Drawing.Size(42, 21);
  1409. this.txtarea2y1.TabIndex = 106;
  1410. this.txtarea2y1.Text = "77";
  1411. this.txtarea2y1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1412. //
  1413. // textRegionHeight
  1414. //
  1415. this.textRegionHeight.Location = new System.Drawing.Point(404, 355);
  1416. this.textRegionHeight.Margin = new System.Windows.Forms.Padding(2);
  1417. this.textRegionHeight.Name = "textRegionHeight";
  1418. this.textRegionHeight.Size = new System.Drawing.Size(42, 21);
  1419. this.textRegionHeight.TabIndex = 101;
  1420. this.textRegionHeight.Text = "5";
  1421. this.textRegionHeight.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1422. //
  1423. // txtarea2x1
  1424. //
  1425. this.txtarea2x1.Location = new System.Drawing.Point(357, 218);
  1426. this.txtarea2x1.Margin = new System.Windows.Forms.Padding(2);
  1427. this.txtarea2x1.Name = "txtarea2x1";
  1428. this.txtarea2x1.Size = new System.Drawing.Size(42, 21);
  1429. this.txtarea2x1.TabIndex = 105;
  1430. this.txtarea2x1.Text = "5";
  1431. this.txtarea2x1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1432. //
  1433. // txtarea1y3
  1434. //
  1435. this.txtarea1y3.Location = new System.Drawing.Point(404, 195);
  1436. this.txtarea1y3.Margin = new System.Windows.Forms.Padding(2);
  1437. this.txtarea1y3.Name = "txtarea1y3";
  1438. this.txtarea1y3.Size = new System.Drawing.Size(42, 21);
  1439. this.txtarea1y3.TabIndex = 104;
  1440. this.txtarea1y3.Text = "34";
  1441. this.txtarea1y3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1442. //
  1443. // txtarea1x3
  1444. //
  1445. this.txtarea1x3.Location = new System.Drawing.Point(357, 195);
  1446. this.txtarea1x3.Margin = new System.Windows.Forms.Padding(2);
  1447. this.txtarea1x3.Name = "txtarea1x3";
  1448. this.txtarea1x3.Size = new System.Drawing.Size(42, 21);
  1449. this.txtarea1x3.TabIndex = 103;
  1450. this.txtarea1x3.Text = "55";
  1451. this.txtarea1x3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1452. //
  1453. // txtarea1l2
  1454. //
  1455. this.txtarea1l2.Location = new System.Drawing.Point(458, 170);
  1456. this.txtarea1l2.Margin = new System.Windows.Forms.Padding(2);
  1457. this.txtarea1l2.Name = "txtarea1l2";
  1458. this.txtarea1l2.Size = new System.Drawing.Size(42, 21);
  1459. this.txtarea1l2.TabIndex = 102;
  1460. this.txtarea1l2.Text = "25";
  1461. this.txtarea1l2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1462. //
  1463. // txtarea1l1
  1464. //
  1465. this.txtarea1l1.Location = new System.Drawing.Point(458, 147);
  1466. this.txtarea1l1.Margin = new System.Windows.Forms.Padding(2);
  1467. this.txtarea1l1.Name = "txtarea1l1";
  1468. this.txtarea1l1.Size = new System.Drawing.Size(42, 21);
  1469. this.txtarea1l1.TabIndex = 101;
  1470. this.txtarea1l1.Text = "20";
  1471. this.txtarea1l1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1472. //
  1473. // txtarea1y2
  1474. //
  1475. this.txtarea1y2.Location = new System.Drawing.Point(404, 170);
  1476. this.txtarea1y2.Margin = new System.Windows.Forms.Padding(2);
  1477. this.txtarea1y2.Name = "txtarea1y2";
  1478. this.txtarea1y2.Size = new System.Drawing.Size(42, 21);
  1479. this.txtarea1y2.TabIndex = 100;
  1480. this.txtarea1y2.Text = "33";
  1481. this.txtarea1y2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1482. //
  1483. // txtarea1x2
  1484. //
  1485. this.txtarea1x2.Location = new System.Drawing.Point(357, 170);
  1486. this.txtarea1x2.Margin = new System.Windows.Forms.Padding(2);
  1487. this.txtarea1x2.Name = "txtarea1x2";
  1488. this.txtarea1x2.Size = new System.Drawing.Size(42, 21);
  1489. this.txtarea1x2.TabIndex = 99;
  1490. this.txtarea1x2.Text = "11";
  1491. this.txtarea1x2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1492. //
  1493. // txtarea1y1
  1494. //
  1495. this.txtarea1y1.Location = new System.Drawing.Point(404, 147);
  1496. this.txtarea1y1.Margin = new System.Windows.Forms.Padding(2);
  1497. this.txtarea1y1.Name = "txtarea1y1";
  1498. this.txtarea1y1.Size = new System.Drawing.Size(42, 21);
  1499. this.txtarea1y1.TabIndex = 98;
  1500. this.txtarea1y1.Text = "32";
  1501. this.txtarea1y1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1502. //
  1503. // txtarea1x1
  1504. //
  1505. this.txtarea1x1.Location = new System.Drawing.Point(357, 147);
  1506. this.txtarea1x1.Margin = new System.Windows.Forms.Padding(2);
  1507. this.txtarea1x1.Name = "txtarea1x1";
  1508. this.txtarea1x1.Size = new System.Drawing.Size(42, 21);
  1509. this.txtarea1x1.TabIndex = 97;
  1510. this.txtarea1x1.Text = "32";
  1511. this.txtarea1x1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1512. //
  1513. // label36
  1514. //
  1515. this.label36.AutoSize = true;
  1516. this.label36.Location = new System.Drawing.Point(307, 149);
  1517. this.label36.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1518. this.label36.Name = "label36";
  1519. this.label36.Size = new System.Drawing.Size(47, 12);
  1520. this.label36.TabIndex = 96;
  1521. this.label36.Text = "Areas1:";
  1522. //
  1523. // txtpy5
  1524. //
  1525. this.txtpy5.Location = new System.Drawing.Point(404, 121);
  1526. this.txtpy5.Margin = new System.Windows.Forms.Padding(2);
  1527. this.txtpy5.Name = "txtpy5";
  1528. this.txtpy5.Size = new System.Drawing.Size(42, 21);
  1529. this.txtpy5.TabIndex = 95;
  1530. this.txtpy5.Text = "211";
  1531. this.txtpy5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1532. //
  1533. // txtpx5
  1534. //
  1535. this.txtpx5.Location = new System.Drawing.Point(357, 121);
  1536. this.txtpx5.Margin = new System.Windows.Forms.Padding(2);
  1537. this.txtpx5.Name = "txtpx5";
  1538. this.txtpx5.Size = new System.Drawing.Size(42, 21);
  1539. this.txtpx5.TabIndex = 94;
  1540. this.txtpx5.Text = "333";
  1541. this.txtpx5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1542. //
  1543. // txtpy4
  1544. //
  1545. this.txtpy4.Location = new System.Drawing.Point(404, 96);
  1546. this.txtpy4.Margin = new System.Windows.Forms.Padding(2);
  1547. this.txtpy4.Name = "txtpy4";
  1548. this.txtpy4.Size = new System.Drawing.Size(42, 21);
  1549. this.txtpy4.TabIndex = 93;
  1550. this.txtpy4.Text = "222";
  1551. this.txtpy4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1552. //
  1553. // txtpx4
  1554. //
  1555. this.txtpx4.Location = new System.Drawing.Point(357, 96);
  1556. this.txtpx4.Margin = new System.Windows.Forms.Padding(2);
  1557. this.txtpx4.Name = "txtpx4";
  1558. this.txtpx4.Size = new System.Drawing.Size(42, 21);
  1559. this.txtpx4.TabIndex = 92;
  1560. this.txtpx4.Text = "111";
  1561. this.txtpx4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1562. //
  1563. // txtpy3
  1564. //
  1565. this.txtpy3.Location = new System.Drawing.Point(404, 72);
  1566. this.txtpy3.Margin = new System.Windows.Forms.Padding(2);
  1567. this.txtpy3.Name = "txtpy3";
  1568. this.txtpy3.Size = new System.Drawing.Size(42, 21);
  1569. this.txtpy3.TabIndex = 91;
  1570. this.txtpy3.Text = "65";
  1571. this.txtpy3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1572. //
  1573. // txtpx3
  1574. //
  1575. this.txtpx3.Location = new System.Drawing.Point(357, 72);
  1576. this.txtpx3.Margin = new System.Windows.Forms.Padding(2);
  1577. this.txtpx3.Name = "txtpx3";
  1578. this.txtpx3.Size = new System.Drawing.Size(42, 21);
  1579. this.txtpx3.TabIndex = 90;
  1580. this.txtpx3.Text = "55";
  1581. this.txtpx3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1582. //
  1583. // txtpy2
  1584. //
  1585. this.txtpy2.Location = new System.Drawing.Point(404, 47);
  1586. this.txtpy2.Margin = new System.Windows.Forms.Padding(2);
  1587. this.txtpy2.Name = "txtpy2";
  1588. this.txtpy2.Size = new System.Drawing.Size(42, 21);
  1589. this.txtpy2.TabIndex = 89;
  1590. this.txtpy2.Text = "32";
  1591. this.txtpy2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1592. //
  1593. // txtpx2
  1594. //
  1595. this.txtpx2.Location = new System.Drawing.Point(357, 47);
  1596. this.txtpx2.Margin = new System.Windows.Forms.Padding(2);
  1597. this.txtpx2.Name = "txtpx2";
  1598. this.txtpx2.Size = new System.Drawing.Size(42, 21);
  1599. this.txtpx2.TabIndex = 88;
  1600. this.txtpx2.Text = "44";
  1601. this.txtpx2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1602. //
  1603. // label35
  1604. //
  1605. this.label35.AutoSize = true;
  1606. this.label35.Location = new System.Drawing.Point(459, 7);
  1607. this.label35.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1608. this.label35.Name = "label35";
  1609. this.label35.Size = new System.Drawing.Size(41, 12);
  1610. this.label35.TabIndex = 87;
  1611. this.label35.Text = "Length";
  1612. //
  1613. // label34
  1614. //
  1615. this.label34.AutoSize = true;
  1616. this.label34.Location = new System.Drawing.Point(419, 7);
  1617. this.label34.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1618. this.label34.Name = "label34";
  1619. this.label34.Size = new System.Drawing.Size(11, 12);
  1620. this.label34.TabIndex = 86;
  1621. this.label34.Text = "Y";
  1622. //
  1623. // label33
  1624. //
  1625. this.label33.AutoSize = true;
  1626. this.label33.Location = new System.Drawing.Point(373, 7);
  1627. this.label33.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1628. this.label33.Name = "label33";
  1629. this.label33.Size = new System.Drawing.Size(11, 12);
  1630. this.label33.TabIndex = 85;
  1631. this.label33.Text = "X";
  1632. //
  1633. // txtpy1
  1634. //
  1635. this.txtpy1.Location = new System.Drawing.Point(404, 22);
  1636. this.txtpy1.Margin = new System.Windows.Forms.Padding(2);
  1637. this.txtpy1.Name = "txtpy1";
  1638. this.txtpy1.Size = new System.Drawing.Size(42, 21);
  1639. this.txtpy1.TabIndex = 84;
  1640. this.txtpy1.Text = "33";
  1641. this.txtpy1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1642. //
  1643. // txtpx1
  1644. //
  1645. this.txtpx1.Location = new System.Drawing.Point(357, 22);
  1646. this.txtpx1.Margin = new System.Windows.Forms.Padding(2);
  1647. this.txtpx1.Name = "txtpx1";
  1648. this.txtpx1.Size = new System.Drawing.Size(42, 21);
  1649. this.txtpx1.TabIndex = 83;
  1650. this.txtpx1.Text = "22";
  1651. this.txtpx1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1652. //
  1653. // label32
  1654. //
  1655. this.label32.AutoSize = true;
  1656. this.label32.Location = new System.Drawing.Point(307, 26);
  1657. this.label32.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1658. this.label32.Name = "label32";
  1659. this.label32.Size = new System.Drawing.Size(47, 12);
  1660. this.label32.TabIndex = 82;
  1661. this.label32.Text = "points:";
  1662. //
  1663. // dataGridView1
  1664. //
  1665. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1666. this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1667. this.元素,
  1668. this.含量});
  1669. this.dataGridView1.Location = new System.Drawing.Point(11, 51);
  1670. this.dataGridView1.Margin = new System.Windows.Forms.Padding(2);
  1671. this.dataGridView1.Name = "dataGridView1";
  1672. this.dataGridView1.RowTemplate.Height = 30;
  1673. this.dataGridView1.Size = new System.Drawing.Size(247, 373);
  1674. this.dataGridView1.TabIndex = 79;
  1675. //
  1676. // 元素
  1677. //
  1678. this.元素.HeaderText = "元素";
  1679. this.元素.Name = "元素";
  1680. //
  1681. // 含量
  1682. //
  1683. this.含量.HeaderText = "含量";
  1684. this.含量.Name = "含量";
  1685. //
  1686. // chart1
  1687. //
  1688. chartArea1.Name = "ChartArea1";
  1689. this.chart1.ChartAreas.Add(chartArea1);
  1690. legend1.Alignment = System.Drawing.StringAlignment.Center;
  1691. legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
  1692. legend1.Name = "Legend1";
  1693. this.chart1.Legends.Add(legend1);
  1694. this.chart1.Location = new System.Drawing.Point(554, 31);
  1695. this.chart1.Margin = new System.Windows.Forms.Padding(2);
  1696. this.chart1.Name = "chart1";
  1697. series1.ChartArea = "ChartArea1";
  1698. series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
  1699. series1.Legend = "Legend1";
  1700. series1.Name = "Series1";
  1701. series2.ChartArea = "ChartArea1";
  1702. series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
  1703. series2.Legend = "Legend1";
  1704. series2.Name = "Series2";
  1705. this.chart1.Series.Add(series1);
  1706. this.chart1.Series.Add(series2);
  1707. this.chart1.Size = new System.Drawing.Size(593, 352);
  1708. this.chart1.TabIndex = 3;
  1709. this.chart1.Text = "chart1";
  1710. //
  1711. // button26
  1712. //
  1713. this.button26.Location = new System.Drawing.Point(145, 17);
  1714. this.button26.Margin = new System.Windows.Forms.Padding(2);
  1715. this.button26.Name = "button26";
  1716. this.button26.Size = new System.Drawing.Size(82, 30);
  1717. this.button26.TabIndex = 1;
  1718. this.button26.Text = "面采集";
  1719. this.button26.UseVisualStyleBackColor = true;
  1720. this.button26.Click += new System.EventHandler(this.button26_Click);
  1721. //
  1722. // button25
  1723. //
  1724. this.button25.Location = new System.Drawing.Point(46, 17);
  1725. this.button25.Margin = new System.Windows.Forms.Padding(2);
  1726. this.button25.Name = "button25";
  1727. this.button25.Size = new System.Drawing.Size(75, 30);
  1728. this.button25.TabIndex = 0;
  1729. this.button25.Text = "点采集";
  1730. this.button25.UseVisualStyleBackColor = true;
  1731. this.button25.Click += new System.EventHandler(this.button25_Click);
  1732. //
  1733. // Form1
  1734. //
  1735. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1736. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1737. this.AutoScroll = true;
  1738. this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  1739. this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  1740. this.ClientSize = new System.Drawing.Size(1186, 697);
  1741. this.Controls.Add(this.拍图);
  1742. this.Controls.Add(this.groupBox1);
  1743. this.Controls.Add(this.groupBox2);
  1744. this.Margin = new System.Windows.Forms.Padding(2);
  1745. this.Name = "Form1";
  1746. this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
  1747. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  1748. this.Load += new System.EventHandler(this.Form1_Load);
  1749. this.groupBox1.ResumeLayout(false);
  1750. this.groupBox1.PerformLayout();
  1751. this.拍图.ResumeLayout(false);
  1752. this.拍图.PerformLayout();
  1753. ((System.ComponentModel.ISupportInitialize)(this.pBImage)).EndInit();
  1754. this.groupBox2.ResumeLayout(false);
  1755. this.groupBox2.PerformLayout();
  1756. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  1757. ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
  1758. this.ResumeLayout(false);
  1759. }
  1760. #endregion
  1761. private System.Windows.Forms.Label label1;
  1762. private System.Windows.Forms.Label label2;
  1763. private System.Windows.Forms.Label label3;
  1764. private System.Windows.Forms.Label label6;
  1765. private System.Windows.Forms.Label label7;
  1766. private System.Windows.Forms.TextBox tBHV;
  1767. private System.Windows.Forms.Label label8;
  1768. private System.Windows.Forms.Button button1;
  1769. private System.Windows.Forms.TextBox tBHVIn;
  1770. private System.Windows.Forms.Button button2;
  1771. private System.Windows.Forms.Label label9;
  1772. private System.Windows.Forms.TextBox tBWD;
  1773. private System.Windows.Forms.TextBox tBMag;
  1774. private System.Windows.Forms.TextBox tBBright;
  1775. private System.Windows.Forms.TextBox tBContast;
  1776. private System.Windows.Forms.Label label10;
  1777. private System.Windows.Forms.Label label11;
  1778. private System.Windows.Forms.Label label12;
  1779. private System.Windows.Forms.Label label13;
  1780. private System.Windows.Forms.Button button3;
  1781. private System.Windows.Forms.Button button4;
  1782. private System.Windows.Forms.Button button5;
  1783. private System.Windows.Forms.Button button6;
  1784. private System.Windows.Forms.TextBox tBWDIn;
  1785. private System.Windows.Forms.TextBox tBMagIn;
  1786. private System.Windows.Forms.TextBox tBrightIn;
  1787. private System.Windows.Forms.TextBox tBContrastIn;
  1788. private System.Windows.Forms.Label label14;
  1789. private System.Windows.Forms.Label label15;
  1790. private System.Windows.Forms.Label label16;
  1791. private System.Windows.Forms.Label label17;
  1792. private System.Windows.Forms.Button button7;
  1793. private System.Windows.Forms.Button button8;
  1794. private System.Windows.Forms.Button button9;
  1795. private System.Windows.Forms.Button button10;
  1796. private System.Windows.Forms.Label label4;
  1797. private System.Windows.Forms.Label label5;
  1798. private System.Windows.Forms.Label label18;
  1799. private System.Windows.Forms.Label label19;
  1800. private System.Windows.Forms.Label label20;
  1801. private System.Windows.Forms.Label label21;
  1802. private System.Windows.Forms.TextBox tBX;
  1803. private System.Windows.Forms.TextBox tBY;
  1804. private System.Windows.Forms.TextBox tBZ;
  1805. private System.Windows.Forms.TextBox tBT;
  1806. private System.Windows.Forms.TextBox tBR;
  1807. private System.Windows.Forms.Label label22;
  1808. private System.Windows.Forms.Label label23;
  1809. private System.Windows.Forms.Label label24;
  1810. private System.Windows.Forms.Label label25;
  1811. private System.Windows.Forms.Label label26;
  1812. private System.Windows.Forms.Button button11;
  1813. private System.Windows.Forms.Button button12;
  1814. private System.Windows.Forms.Button button13;
  1815. private System.Windows.Forms.Button button14;
  1816. private System.Windows.Forms.Button button15;
  1817. private System.Windows.Forms.TextBox tBXIn;
  1818. private System.Windows.Forms.TextBox tBYIn;
  1819. private System.Windows.Forms.TextBox tBZIn;
  1820. private System.Windows.Forms.TextBox tBTIn;
  1821. private System.Windows.Forms.TextBox tBRIn;
  1822. private System.Windows.Forms.Label label27;
  1823. private System.Windows.Forms.Label label28;
  1824. private System.Windows.Forms.Label label29;
  1825. private System.Windows.Forms.Label label30;
  1826. private System.Windows.Forms.Label label31;
  1827. private System.Windows.Forms.Button button16;
  1828. private System.Windows.Forms.Button button18;
  1829. private System.Windows.Forms.Button button19;
  1830. private System.Windows.Forms.Button button20;
  1831. private System.Windows.Forms.Button button21;
  1832. private System.Windows.Forms.Button button22;
  1833. private System.Windows.Forms.Button button23;
  1834. private System.Windows.Forms.GroupBox groupBox1;
  1835. private System.Windows.Forms.GroupBox 拍图;
  1836. private System.Windows.Forms.Button button24;
  1837. private System.Windows.Forms.PictureBox pBImage;
  1838. private System.Windows.Forms.GroupBox groupBox2;
  1839. private System.Windows.Forms.DataGridView dataGridView1;
  1840. private System.Windows.Forms.DataGridViewTextBoxColumn 元素;
  1841. private System.Windows.Forms.DataGridViewTextBoxColumn 含量;
  1842. private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
  1843. private System.Windows.Forms.Button button26;
  1844. private System.Windows.Forms.Button button25;
  1845. private System.Windows.Forms.Button btnTest;
  1846. private System.Windows.Forms.Label label37;
  1847. private System.Windows.Forms.TextBox txtarea2l3;
  1848. private System.Windows.Forms.TextBox txtarea2l2;
  1849. private System.Windows.Forms.TextBox txtarea2y3;
  1850. private System.Windows.Forms.TextBox txtarea2x3;
  1851. private System.Windows.Forms.TextBox txtarea2y2;
  1852. private System.Windows.Forms.TextBox txtarea2x2;
  1853. private System.Windows.Forms.TextBox txtarea2l1;
  1854. private System.Windows.Forms.TextBox txtarea1l3;
  1855. private System.Windows.Forms.TextBox txtarea2y1;
  1856. private System.Windows.Forms.TextBox txtarea2x1;
  1857. private System.Windows.Forms.TextBox txtarea1y3;
  1858. private System.Windows.Forms.TextBox txtarea1x3;
  1859. private System.Windows.Forms.TextBox txtarea1l2;
  1860. private System.Windows.Forms.TextBox txtarea1l1;
  1861. private System.Windows.Forms.TextBox txtarea1y2;
  1862. private System.Windows.Forms.TextBox txtarea1x2;
  1863. private System.Windows.Forms.TextBox txtarea1y1;
  1864. private System.Windows.Forms.TextBox txtarea1x1;
  1865. private System.Windows.Forms.Label label36;
  1866. private System.Windows.Forms.TextBox txtpy5;
  1867. private System.Windows.Forms.TextBox txtpx5;
  1868. private System.Windows.Forms.TextBox txtpy4;
  1869. private System.Windows.Forms.TextBox txtpx4;
  1870. private System.Windows.Forms.TextBox txtpy3;
  1871. private System.Windows.Forms.TextBox txtpx3;
  1872. private System.Windows.Forms.TextBox txtpy2;
  1873. private System.Windows.Forms.TextBox txtpx2;
  1874. private System.Windows.Forms.Label label35;
  1875. private System.Windows.Forms.Label label34;
  1876. private System.Windows.Forms.Label label33;
  1877. private System.Windows.Forms.TextBox txtpy1;
  1878. private System.Windows.Forms.TextBox txtpx1;
  1879. private System.Windows.Forms.Label label32;
  1880. private System.Windows.Forms.Button button27;
  1881. private System.Windows.Forms.TextBox textRegionHeight;
  1882. private System.Windows.Forms.TextBox textTime;
  1883. private System.Windows.Forms.TextBox textRegionwidth1;
  1884. private System.Windows.Forms.TextBox textRegionY1;
  1885. private System.Windows.Forms.TextBox textRegionX1;
  1886. private System.Windows.Forms.Label label39;
  1887. private System.Windows.Forms.Label label41;
  1888. private System.Windows.Forms.Label label42;
  1889. private System.Windows.Forms.Label label40;
  1890. private System.Windows.Forms.Label label38;
  1891. private System.Windows.Forms.Button button29;
  1892. private System.Windows.Forms.TextBox txtBSEWidth;
  1893. private System.Windows.Forms.TextBox txtBSEHeight;
  1894. private System.Windows.Forms.Label label44;
  1895. private System.Windows.Forms.Label label43;
  1896. private System.Windows.Forms.TextBox txtBSEDwell;
  1897. private System.Windows.Forms.Label label45;
  1898. private System.Windows.Forms.Button button28;
  1899. private System.Windows.Forms.ComboBox cboSource;
  1900. }
  1901. }