FormUCMain.Designer.cs 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902
  1. namespace HOZProject
  2. {
  3. partial class FormUCMain
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.pichide = new System.Windows.Forms.PictureBox();
  29. this.picexit = new System.Windows.Forms.PictureBox();
  30. this.panel1 = new System.Windows.Forms.Panel();
  31. this.btnenlargeSet = new System.Windows.Forms.Button();
  32. this.txtenlarge = new System.Windows.Forms.TextBox();
  33. this.lblFocus = new System.Windows.Forms.Label();
  34. this.btnenlargeGet = new System.Windows.Forms.Button();
  35. this.panel2 = new System.Windows.Forms.Panel();
  36. this.btnBrightnessSet = new System.Windows.Forms.Button();
  37. this.txtBrightness = new System.Windows.Forms.TextBox();
  38. this.label1 = new System.Windows.Forms.Label();
  39. this.btnBrightnessGet = new System.Windows.Forms.Button();
  40. this.panel3 = new System.Windows.Forms.Panel();
  41. this.btnTiltAngleSet = new System.Windows.Forms.Button();
  42. this.txtTiltAngle = new System.Windows.Forms.TextBox();
  43. this.label2 = new System.Windows.Forms.Label();
  44. this.btnTiltAngleGet = new System.Windows.Forms.Button();
  45. this.panel4 = new System.Windows.Forms.Panel();
  46. this.btnAstigmatismXSet = new System.Windows.Forms.Button();
  47. this.txtAstigmatismX = new System.Windows.Forms.TextBox();
  48. this.label3 = new System.Windows.Forms.Label();
  49. this.btnAstigmatismXGet = new System.Windows.Forms.Button();
  50. this.panel5 = new System.Windows.Forms.Panel();
  51. this.txtPixelSize = new System.Windows.Forms.TextBox();
  52. this.label4 = new System.Windows.Forms.Label();
  53. this.btnPixelSizeGet = new System.Windows.Forms.Button();
  54. this.panel8 = new System.Windows.Forms.Panel();
  55. this.btnAstigmatismYSet = new System.Windows.Forms.Button();
  56. this.txtAstigmatismY = new System.Windows.Forms.TextBox();
  57. this.label6 = new System.Windows.Forms.Label();
  58. this.btnAstigmatismYGet = new System.Windows.Forms.Button();
  59. this.panel9 = new System.Windows.Forms.Panel();
  60. this.btnScanRotationSet = new System.Windows.Forms.Button();
  61. this.txtScanRotation = new System.Windows.Forms.TextBox();
  62. this.label7 = new System.Windows.Forms.Label();
  63. this.btnScanRotationGet = new System.Windows.Forms.Button();
  64. this.panel10 = new System.Windows.Forms.Panel();
  65. this.btnContrastSet = new System.Windows.Forms.Button();
  66. this.txtContrast = new System.Windows.Forms.TextBox();
  67. this.label8 = new System.Windows.Forms.Label();
  68. this.btnContrastGet = new System.Windows.Forms.Button();
  69. this.panel11 = new System.Windows.Forms.Panel();
  70. this.btnWDSet = new System.Windows.Forms.Button();
  71. this.txtWD = new System.Windows.Forms.TextBox();
  72. this.label9 = new System.Windows.Forms.Label();
  73. this.btnWDGet = new System.Windows.Forms.Button();
  74. this.panel7 = new System.Windows.Forms.Panel();
  75. this.btnStageSetM = new System.Windows.Forms.Button();
  76. this.txtStageM = new System.Windows.Forms.TextBox();
  77. this.label5 = new System.Windows.Forms.Label();
  78. this.btnStageGetM = new System.Windows.Forms.Button();
  79. this.panel12 = new System.Windows.Forms.Panel();
  80. this.btnStageSetR = new System.Windows.Forms.Button();
  81. this.txtStageR = new System.Windows.Forms.TextBox();
  82. this.label10 = new System.Windows.Forms.Label();
  83. this.btnStageGetR = new System.Windows.Forms.Button();
  84. this.panel13 = new System.Windows.Forms.Panel();
  85. this.btnStageSetT = new System.Windows.Forms.Button();
  86. this.txtStageT = new System.Windows.Forms.TextBox();
  87. this.label11 = new System.Windows.Forms.Label();
  88. this.btnStageGetT = new System.Windows.Forms.Button();
  89. this.panel14 = new System.Windows.Forms.Panel();
  90. this.btnStageSetZ = new System.Windows.Forms.Button();
  91. this.txtStageZ = new System.Windows.Forms.TextBox();
  92. this.label12 = new System.Windows.Forms.Label();
  93. this.btnStageGetZ = new System.Windows.Forms.Button();
  94. this.panel15 = new System.Windows.Forms.Panel();
  95. this.btnStageSetY = new System.Windows.Forms.Button();
  96. this.txtStageY = new System.Windows.Forms.TextBox();
  97. this.label13 = new System.Windows.Forms.Label();
  98. this.btnStageGetY = new System.Windows.Forms.Button();
  99. this.panel16 = new System.Windows.Forms.Panel();
  100. this.btnStageSetX = new System.Windows.Forms.Button();
  101. this.txtStageX = new System.Windows.Forms.TextBox();
  102. this.label14 = new System.Windows.Forms.Label();
  103. this.btnStageGetX = new System.Windows.Forms.Button();
  104. this.label15 = new System.Windows.Forms.Label();
  105. this.label22 = new System.Windows.Forms.Label();
  106. this.label23 = new System.Windows.Forms.Label();
  107. this.label24 = new System.Windows.Forms.Label();
  108. this.btnAutoWD = new System.Windows.Forms.Button();
  109. this.btnAutoAstigmatism = new System.Windows.Forms.Button();
  110. this.btnAutoBrightness = new System.Windows.Forms.Button();
  111. this.btnGetStagePosition = new System.Windows.Forms.Button();
  112. this.pbHT = new System.Windows.Forms.PictureBox();
  113. this.lblState = new System.Windows.Forms.Label();
  114. this.panel6 = new System.Windows.Forms.Panel();
  115. this.button1 = new System.Windows.Forms.Button();
  116. this.comboBox1 = new System.Windows.Forms.ComboBox();
  117. this.label17 = new System.Windows.Forms.Label();
  118. this.panel20 = new System.Windows.Forms.Panel();
  119. this.button3 = new System.Windows.Forms.Button();
  120. this.textBox3 = new System.Windows.Forms.TextBox();
  121. this.label20 = new System.Windows.Forms.Label();
  122. this.button4 = new System.Windows.Forms.Button();
  123. this.panel17 = new System.Windows.Forms.Panel();
  124. this.button6 = new System.Windows.Forms.Button();
  125. this.button5 = new System.Windows.Forms.Button();
  126. this.textBox1 = new System.Windows.Forms.TextBox();
  127. this.label16 = new System.Windows.Forms.Label();
  128. this.panel18 = new System.Windows.Forms.Panel();
  129. this.button2 = new System.Windows.Forms.Button();
  130. this.button7 = new System.Windows.Forms.Button();
  131. this.textBox2 = new System.Windows.Forms.TextBox();
  132. this.label18 = new System.Windows.Forms.Label();
  133. this.panel19 = new System.Windows.Forms.Panel();
  134. this.button8 = new System.Windows.Forms.Button();
  135. this.comboBox2 = new System.Windows.Forms.ComboBox();
  136. this.label19 = new System.Windows.Forms.Label();
  137. this.groupBox1 = new System.Windows.Forms.GroupBox();
  138. this.btnMoveSEMCenter = new System.Windows.Forms.Button();
  139. this.txtMoveStageY = new System.Windows.Forms.TextBox();
  140. this.label25 = new System.Windows.Forms.Label();
  141. this.txtMoveStageX = new System.Windows.Forms.TextBox();
  142. this.label21 = new System.Windows.Forms.Label();
  143. this.btnConnect = new System.Windows.Forms.Button();
  144. this.btnGetImage = new System.Windows.Forms.Button();
  145. this.btnStop = new System.Windows.Forms.Button();
  146. ((System.ComponentModel.ISupportInitialize)(this.pichide)).BeginInit();
  147. ((System.ComponentModel.ISupportInitialize)(this.picexit)).BeginInit();
  148. this.panel1.SuspendLayout();
  149. this.panel2.SuspendLayout();
  150. this.panel3.SuspendLayout();
  151. this.panel4.SuspendLayout();
  152. this.panel5.SuspendLayout();
  153. this.panel8.SuspendLayout();
  154. this.panel9.SuspendLayout();
  155. this.panel10.SuspendLayout();
  156. this.panel11.SuspendLayout();
  157. this.panel7.SuspendLayout();
  158. this.panel12.SuspendLayout();
  159. this.panel13.SuspendLayout();
  160. this.panel14.SuspendLayout();
  161. this.panel15.SuspendLayout();
  162. this.panel16.SuspendLayout();
  163. ((System.ComponentModel.ISupportInitialize)(this.pbHT)).BeginInit();
  164. this.panel6.SuspendLayout();
  165. this.panel20.SuspendLayout();
  166. this.panel17.SuspendLayout();
  167. this.panel18.SuspendLayout();
  168. this.panel19.SuspendLayout();
  169. this.groupBox1.SuspendLayout();
  170. this.SuspendLayout();
  171. //
  172. // pichide
  173. //
  174. this.pichide.BackColor = System.Drawing.Color.Transparent;
  175. this.pichide.Cursor = System.Windows.Forms.Cursors.Hand;
  176. this.pichide.Image = global::HOZProject.Properties.Resources.Min_Gray;
  177. this.pichide.Location = new System.Drawing.Point(1478, 14);
  178. this.pichide.Margin = new System.Windows.Forms.Padding(6);
  179. this.pichide.Name = "pichide";
  180. this.pichide.Size = new System.Drawing.Size(20, 20);
  181. this.pichide.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  182. this.pichide.TabIndex = 56;
  183. this.pichide.TabStop = false;
  184. this.pichide.Click += new System.EventHandler(this.pichide_Click);
  185. this.pichide.MouseEnter += new System.EventHandler(this.pichide_MouseEnter);
  186. this.pichide.MouseLeave += new System.EventHandler(this.pichide_MouseLeave);
  187. //
  188. // picexit
  189. //
  190. this.picexit.BackColor = System.Drawing.Color.Transparent;
  191. this.picexit.Cursor = System.Windows.Forms.Cursors.Hand;
  192. this.picexit.Image = global::HOZProject.Properties.Resources.exit_Gray;
  193. this.picexit.Location = new System.Drawing.Point(1502, 14);
  194. this.picexit.Margin = new System.Windows.Forms.Padding(6);
  195. this.picexit.Name = "picexit";
  196. this.picexit.Size = new System.Drawing.Size(20, 20);
  197. this.picexit.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  198. this.picexit.TabIndex = 55;
  199. this.picexit.TabStop = false;
  200. this.picexit.Click += new System.EventHandler(this.picexit_Click);
  201. this.picexit.MouseEnter += new System.EventHandler(this.picexit_MouseEnter);
  202. this.picexit.MouseLeave += new System.EventHandler(this.picexit_MouseLeave);
  203. //
  204. // panel1
  205. //
  206. this.panel1.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  207. this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  208. this.panel1.Controls.Add(this.btnenlargeSet);
  209. this.panel1.Controls.Add(this.txtenlarge);
  210. this.panel1.Controls.Add(this.lblFocus);
  211. this.panel1.Controls.Add(this.btnenlargeGet);
  212. this.panel1.Location = new System.Drawing.Point(45, 279);
  213. this.panel1.Name = "panel1";
  214. this.panel1.Size = new System.Drawing.Size(274, 45);
  215. this.panel1.TabIndex = 58;
  216. //
  217. // btnenlargeSet
  218. //
  219. this.btnenlargeSet.BackColor = System.Drawing.Color.White;
  220. this.btnenlargeSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  221. this.btnenlargeSet.Cursor = System.Windows.Forms.Cursors.Hand;
  222. this.btnenlargeSet.Font = new System.Drawing.Font("宋体", 10F);
  223. this.btnenlargeSet.ForeColor = System.Drawing.Color.Black;
  224. this.btnenlargeSet.Location = new System.Drawing.Point(224, 4);
  225. this.btnenlargeSet.Name = "btnenlargeSet";
  226. this.btnenlargeSet.Size = new System.Drawing.Size(48, 36);
  227. this.btnenlargeSet.TabIndex = 60;
  228. this.btnenlargeSet.TabStop = false;
  229. this.btnenlargeSet.Text = "写";
  230. this.btnenlargeSet.UseVisualStyleBackColor = false;
  231. this.btnenlargeSet.Click += new System.EventHandler(this.btnenlargeSet_Click);
  232. //
  233. // txtenlarge
  234. //
  235. this.txtenlarge.Location = new System.Drawing.Point(57, 8);
  236. this.txtenlarge.Name = "txtenlarge";
  237. this.txtenlarge.Size = new System.Drawing.Size(114, 28);
  238. this.txtenlarge.TabIndex = 1;
  239. //
  240. // lblFocus
  241. //
  242. this.lblFocus.AutoSize = true;
  243. this.lblFocus.BackColor = System.Drawing.Color.Transparent;
  244. this.lblFocus.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  245. this.lblFocus.Location = new System.Drawing.Point(4, 14);
  246. this.lblFocus.Name = "lblFocus";
  247. this.lblFocus.Size = new System.Drawing.Size(49, 20);
  248. this.lblFocus.TabIndex = 59;
  249. this.lblFocus.Text = "缩放";
  250. //
  251. // btnenlargeGet
  252. //
  253. this.btnenlargeGet.BackColor = System.Drawing.Color.Black;
  254. this.btnenlargeGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  255. this.btnenlargeGet.Cursor = System.Windows.Forms.Cursors.Hand;
  256. this.btnenlargeGet.Font = new System.Drawing.Font("宋体", 9F);
  257. this.btnenlargeGet.ForeColor = System.Drawing.Color.White;
  258. this.btnenlargeGet.Location = new System.Drawing.Point(178, 4);
  259. this.btnenlargeGet.Margin = new System.Windows.Forms.Padding(0);
  260. this.btnenlargeGet.Name = "btnenlargeGet";
  261. this.btnenlargeGet.Size = new System.Drawing.Size(48, 36);
  262. this.btnenlargeGet.TabIndex = 59;
  263. this.btnenlargeGet.TabStop = false;
  264. this.btnenlargeGet.Text = "读";
  265. this.btnenlargeGet.UseVisualStyleBackColor = false;
  266. this.btnenlargeGet.Click += new System.EventHandler(this.btnenlargeGet_Click);
  267. //
  268. // panel2
  269. //
  270. this.panel2.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  271. this.panel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  272. this.panel2.Controls.Add(this.btnBrightnessSet);
  273. this.panel2.Controls.Add(this.txtBrightness);
  274. this.panel2.Controls.Add(this.label1);
  275. this.panel2.Controls.Add(this.btnBrightnessGet);
  276. this.panel2.Location = new System.Drawing.Point(334, 279);
  277. this.panel2.Name = "panel2";
  278. this.panel2.Size = new System.Drawing.Size(274, 45);
  279. this.panel2.TabIndex = 58;
  280. //
  281. // btnBrightnessSet
  282. //
  283. this.btnBrightnessSet.BackColor = System.Drawing.Color.White;
  284. this.btnBrightnessSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  285. this.btnBrightnessSet.Cursor = System.Windows.Forms.Cursors.Hand;
  286. this.btnBrightnessSet.Font = new System.Drawing.Font("宋体", 10F);
  287. this.btnBrightnessSet.ForeColor = System.Drawing.Color.Black;
  288. this.btnBrightnessSet.Location = new System.Drawing.Point(224, 4);
  289. this.btnBrightnessSet.Name = "btnBrightnessSet";
  290. this.btnBrightnessSet.Size = new System.Drawing.Size(48, 36);
  291. this.btnBrightnessSet.TabIndex = 60;
  292. this.btnBrightnessSet.TabStop = false;
  293. this.btnBrightnessSet.Text = "写";
  294. this.btnBrightnessSet.UseVisualStyleBackColor = false;
  295. this.btnBrightnessSet.Click += new System.EventHandler(this.btnBrightnessSet_Click);
  296. //
  297. // txtBrightness
  298. //
  299. this.txtBrightness.Location = new System.Drawing.Point(57, 8);
  300. this.txtBrightness.Name = "txtBrightness";
  301. this.txtBrightness.Size = new System.Drawing.Size(114, 28);
  302. this.txtBrightness.TabIndex = 59;
  303. //
  304. // label1
  305. //
  306. this.label1.AutoSize = true;
  307. this.label1.BackColor = System.Drawing.Color.Transparent;
  308. this.label1.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  309. this.label1.Location = new System.Drawing.Point(4, 14);
  310. this.label1.Name = "label1";
  311. this.label1.Size = new System.Drawing.Size(49, 20);
  312. this.label1.TabIndex = 59;
  313. this.label1.Text = "亮度";
  314. //
  315. // btnBrightnessGet
  316. //
  317. this.btnBrightnessGet.BackColor = System.Drawing.Color.Black;
  318. this.btnBrightnessGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  319. this.btnBrightnessGet.Cursor = System.Windows.Forms.Cursors.Hand;
  320. this.btnBrightnessGet.Font = new System.Drawing.Font("宋体", 10F);
  321. this.btnBrightnessGet.ForeColor = System.Drawing.Color.White;
  322. this.btnBrightnessGet.Location = new System.Drawing.Point(178, 4);
  323. this.btnBrightnessGet.Name = "btnBrightnessGet";
  324. this.btnBrightnessGet.Size = new System.Drawing.Size(48, 36);
  325. this.btnBrightnessGet.TabIndex = 59;
  326. this.btnBrightnessGet.TabStop = false;
  327. this.btnBrightnessGet.Text = "读";
  328. this.btnBrightnessGet.UseVisualStyleBackColor = false;
  329. this.btnBrightnessGet.Click += new System.EventHandler(this.btnBrightnessGet_Click);
  330. //
  331. // panel3
  332. //
  333. this.panel3.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  334. this.panel3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  335. this.panel3.Controls.Add(this.btnTiltAngleSet);
  336. this.panel3.Controls.Add(this.txtTiltAngle);
  337. this.panel3.Controls.Add(this.label2);
  338. this.panel3.Controls.Add(this.btnTiltAngleGet);
  339. this.panel3.Location = new System.Drawing.Point(624, 279);
  340. this.panel3.Name = "panel3";
  341. this.panel3.Size = new System.Drawing.Size(274, 45);
  342. this.panel3.TabIndex = 58;
  343. //
  344. // btnTiltAngleSet
  345. //
  346. this.btnTiltAngleSet.BackColor = System.Drawing.Color.White;
  347. this.btnTiltAngleSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  348. this.btnTiltAngleSet.Cursor = System.Windows.Forms.Cursors.Hand;
  349. this.btnTiltAngleSet.Font = new System.Drawing.Font("宋体", 10F);
  350. this.btnTiltAngleSet.ForeColor = System.Drawing.Color.Black;
  351. this.btnTiltAngleSet.Location = new System.Drawing.Point(224, 4);
  352. this.btnTiltAngleSet.Name = "btnTiltAngleSet";
  353. this.btnTiltAngleSet.Size = new System.Drawing.Size(48, 36);
  354. this.btnTiltAngleSet.TabIndex = 60;
  355. this.btnTiltAngleSet.TabStop = false;
  356. this.btnTiltAngleSet.Text = "写";
  357. this.btnTiltAngleSet.UseVisualStyleBackColor = false;
  358. this.btnTiltAngleSet.Click += new System.EventHandler(this.btnTiltAngleSet_Click);
  359. //
  360. // txtTiltAngle
  361. //
  362. this.txtTiltAngle.Location = new System.Drawing.Point(88, 8);
  363. this.txtTiltAngle.Name = "txtTiltAngle";
  364. this.txtTiltAngle.Size = new System.Drawing.Size(82, 28);
  365. this.txtTiltAngle.TabIndex = 59;
  366. //
  367. // label2
  368. //
  369. this.label2.AutoSize = true;
  370. this.label2.BackColor = System.Drawing.Color.Transparent;
  371. this.label2.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  372. this.label2.Location = new System.Drawing.Point(4, 14);
  373. this.label2.Name = "label2";
  374. this.label2.Size = new System.Drawing.Size(89, 20);
  375. this.label2.TabIndex = 59;
  376. this.label2.Text = "倾斜矫正";
  377. //
  378. // btnTiltAngleGet
  379. //
  380. this.btnTiltAngleGet.BackColor = System.Drawing.Color.Black;
  381. this.btnTiltAngleGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  382. this.btnTiltAngleGet.Cursor = System.Windows.Forms.Cursors.Hand;
  383. this.btnTiltAngleGet.Font = new System.Drawing.Font("宋体", 10F);
  384. this.btnTiltAngleGet.ForeColor = System.Drawing.Color.White;
  385. this.btnTiltAngleGet.Location = new System.Drawing.Point(178, 4);
  386. this.btnTiltAngleGet.Name = "btnTiltAngleGet";
  387. this.btnTiltAngleGet.Size = new System.Drawing.Size(48, 36);
  388. this.btnTiltAngleGet.TabIndex = 59;
  389. this.btnTiltAngleGet.TabStop = false;
  390. this.btnTiltAngleGet.Text = "读";
  391. this.btnTiltAngleGet.UseVisualStyleBackColor = false;
  392. this.btnTiltAngleGet.Click += new System.EventHandler(this.btnTiltAngleGet_Click);
  393. //
  394. // panel4
  395. //
  396. this.panel4.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  397. this.panel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  398. this.panel4.Controls.Add(this.btnAstigmatismXSet);
  399. this.panel4.Controls.Add(this.txtAstigmatismX);
  400. this.panel4.Controls.Add(this.label3);
  401. this.panel4.Controls.Add(this.btnAstigmatismXGet);
  402. this.panel4.Location = new System.Drawing.Point(914, 279);
  403. this.panel4.Name = "panel4";
  404. this.panel4.Size = new System.Drawing.Size(274, 45);
  405. this.panel4.TabIndex = 58;
  406. //
  407. // btnAstigmatismXSet
  408. //
  409. this.btnAstigmatismXSet.BackColor = System.Drawing.Color.White;
  410. this.btnAstigmatismXSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  411. this.btnAstigmatismXSet.Cursor = System.Windows.Forms.Cursors.Hand;
  412. this.btnAstigmatismXSet.Font = new System.Drawing.Font("宋体", 10F);
  413. this.btnAstigmatismXSet.ForeColor = System.Drawing.Color.Black;
  414. this.btnAstigmatismXSet.Location = new System.Drawing.Point(224, 4);
  415. this.btnAstigmatismXSet.Name = "btnAstigmatismXSet";
  416. this.btnAstigmatismXSet.Size = new System.Drawing.Size(48, 36);
  417. this.btnAstigmatismXSet.TabIndex = 60;
  418. this.btnAstigmatismXSet.TabStop = false;
  419. this.btnAstigmatismXSet.Text = "写";
  420. this.btnAstigmatismXSet.UseVisualStyleBackColor = false;
  421. this.btnAstigmatismXSet.Click += new System.EventHandler(this.btnAstigmatismXSet_Click);
  422. //
  423. // txtAstigmatismX
  424. //
  425. this.txtAstigmatismX.Location = new System.Drawing.Point(90, 8);
  426. this.txtAstigmatismX.Name = "txtAstigmatismX";
  427. this.txtAstigmatismX.Size = new System.Drawing.Size(80, 28);
  428. this.txtAstigmatismX.TabIndex = 59;
  429. //
  430. // label3
  431. //
  432. this.label3.AutoSize = true;
  433. this.label3.BackColor = System.Drawing.Color.Transparent;
  434. this.label3.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  435. this.label3.Location = new System.Drawing.Point(4, 14);
  436. this.label3.Name = "label3";
  437. this.label3.Size = new System.Drawing.Size(79, 20);
  438. this.label3.TabIndex = 59;
  439. this.label3.Text = "消像散X";
  440. //
  441. // btnAstigmatismXGet
  442. //
  443. this.btnAstigmatismXGet.BackColor = System.Drawing.Color.Black;
  444. this.btnAstigmatismXGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  445. this.btnAstigmatismXGet.Cursor = System.Windows.Forms.Cursors.Hand;
  446. this.btnAstigmatismXGet.Font = new System.Drawing.Font("宋体", 10F);
  447. this.btnAstigmatismXGet.ForeColor = System.Drawing.Color.White;
  448. this.btnAstigmatismXGet.Location = new System.Drawing.Point(178, 4);
  449. this.btnAstigmatismXGet.Name = "btnAstigmatismXGet";
  450. this.btnAstigmatismXGet.Size = new System.Drawing.Size(48, 36);
  451. this.btnAstigmatismXGet.TabIndex = 59;
  452. this.btnAstigmatismXGet.TabStop = false;
  453. this.btnAstigmatismXGet.Text = "读";
  454. this.btnAstigmatismXGet.UseVisualStyleBackColor = false;
  455. this.btnAstigmatismXGet.Click += new System.EventHandler(this.btnAstigmatismXGet_Click);
  456. //
  457. // panel5
  458. //
  459. this.panel5.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  460. this.panel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  461. this.panel5.Controls.Add(this.txtPixelSize);
  462. this.panel5.Controls.Add(this.label4);
  463. this.panel5.Controls.Add(this.btnPixelSizeGet);
  464. this.panel5.Location = new System.Drawing.Point(1203, 279);
  465. this.panel5.Name = "panel5";
  466. this.panel5.Size = new System.Drawing.Size(234, 45);
  467. this.panel5.TabIndex = 58;
  468. //
  469. // txtPixelSize
  470. //
  471. this.txtPixelSize.Location = new System.Drawing.Point(90, 8);
  472. this.txtPixelSize.Name = "txtPixelSize";
  473. this.txtPixelSize.Size = new System.Drawing.Size(80, 28);
  474. this.txtPixelSize.TabIndex = 59;
  475. //
  476. // label4
  477. //
  478. this.label4.AutoSize = true;
  479. this.label4.BackColor = System.Drawing.Color.Transparent;
  480. this.label4.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  481. this.label4.Location = new System.Drawing.Point(4, 14);
  482. this.label4.Name = "label4";
  483. this.label4.Size = new System.Drawing.Size(89, 20);
  484. this.label4.TabIndex = 59;
  485. this.label4.Text = "像素尺寸";
  486. //
  487. // btnPixelSizeGet
  488. //
  489. this.btnPixelSizeGet.BackColor = System.Drawing.Color.Black;
  490. this.btnPixelSizeGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  491. this.btnPixelSizeGet.Cursor = System.Windows.Forms.Cursors.Hand;
  492. this.btnPixelSizeGet.Font = new System.Drawing.Font("宋体", 10F);
  493. this.btnPixelSizeGet.ForeColor = System.Drawing.Color.White;
  494. this.btnPixelSizeGet.Location = new System.Drawing.Point(178, 4);
  495. this.btnPixelSizeGet.Name = "btnPixelSizeGet";
  496. this.btnPixelSizeGet.Size = new System.Drawing.Size(48, 36);
  497. this.btnPixelSizeGet.TabIndex = 59;
  498. this.btnPixelSizeGet.TabStop = false;
  499. this.btnPixelSizeGet.Text = "读";
  500. this.btnPixelSizeGet.UseVisualStyleBackColor = false;
  501. this.btnPixelSizeGet.Click += new System.EventHandler(this.btnPixelSizeGet_Click);
  502. //
  503. // panel8
  504. //
  505. this.panel8.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  506. this.panel8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  507. this.panel8.Controls.Add(this.btnAstigmatismYSet);
  508. this.panel8.Controls.Add(this.txtAstigmatismY);
  509. this.panel8.Controls.Add(this.label6);
  510. this.panel8.Controls.Add(this.btnAstigmatismYGet);
  511. this.panel8.Location = new System.Drawing.Point(914, 340);
  512. this.panel8.Name = "panel8";
  513. this.panel8.Size = new System.Drawing.Size(274, 45);
  514. this.panel8.TabIndex = 68;
  515. //
  516. // btnAstigmatismYSet
  517. //
  518. this.btnAstigmatismYSet.BackColor = System.Drawing.Color.White;
  519. this.btnAstigmatismYSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  520. this.btnAstigmatismYSet.Cursor = System.Windows.Forms.Cursors.Hand;
  521. this.btnAstigmatismYSet.Font = new System.Drawing.Font("宋体", 10F);
  522. this.btnAstigmatismYSet.ForeColor = System.Drawing.Color.Black;
  523. this.btnAstigmatismYSet.Location = new System.Drawing.Point(224, 4);
  524. this.btnAstigmatismYSet.Name = "btnAstigmatismYSet";
  525. this.btnAstigmatismYSet.Size = new System.Drawing.Size(48, 36);
  526. this.btnAstigmatismYSet.TabIndex = 60;
  527. this.btnAstigmatismYSet.TabStop = false;
  528. this.btnAstigmatismYSet.Text = "写";
  529. this.btnAstigmatismYSet.UseVisualStyleBackColor = false;
  530. this.btnAstigmatismYSet.Click += new System.EventHandler(this.btnAstigmatismYSet_Click);
  531. //
  532. // txtAstigmatismY
  533. //
  534. this.txtAstigmatismY.Location = new System.Drawing.Point(90, 8);
  535. this.txtAstigmatismY.Name = "txtAstigmatismY";
  536. this.txtAstigmatismY.Size = new System.Drawing.Size(80, 28);
  537. this.txtAstigmatismY.TabIndex = 59;
  538. //
  539. // label6
  540. //
  541. this.label6.AutoSize = true;
  542. this.label6.BackColor = System.Drawing.Color.Transparent;
  543. this.label6.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  544. this.label6.Location = new System.Drawing.Point(4, 14);
  545. this.label6.Name = "label6";
  546. this.label6.Size = new System.Drawing.Size(79, 20);
  547. this.label6.TabIndex = 59;
  548. this.label6.Text = "消像散Y";
  549. //
  550. // btnAstigmatismYGet
  551. //
  552. this.btnAstigmatismYGet.BackColor = System.Drawing.Color.Black;
  553. this.btnAstigmatismYGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  554. this.btnAstigmatismYGet.Cursor = System.Windows.Forms.Cursors.Hand;
  555. this.btnAstigmatismYGet.Font = new System.Drawing.Font("宋体", 10F);
  556. this.btnAstigmatismYGet.ForeColor = System.Drawing.Color.White;
  557. this.btnAstigmatismYGet.Location = new System.Drawing.Point(178, 4);
  558. this.btnAstigmatismYGet.Name = "btnAstigmatismYGet";
  559. this.btnAstigmatismYGet.Size = new System.Drawing.Size(48, 36);
  560. this.btnAstigmatismYGet.TabIndex = 59;
  561. this.btnAstigmatismYGet.TabStop = false;
  562. this.btnAstigmatismYGet.Text = "读";
  563. this.btnAstigmatismYGet.UseVisualStyleBackColor = false;
  564. this.btnAstigmatismYGet.Click += new System.EventHandler(this.btnAstigmatismYGet_Click);
  565. //
  566. // panel9
  567. //
  568. this.panel9.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  569. this.panel9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  570. this.panel9.Controls.Add(this.btnScanRotationSet);
  571. this.panel9.Controls.Add(this.txtScanRotation);
  572. this.panel9.Controls.Add(this.label7);
  573. this.panel9.Controls.Add(this.btnScanRotationGet);
  574. this.panel9.Location = new System.Drawing.Point(624, 340);
  575. this.panel9.Name = "panel9";
  576. this.panel9.Size = new System.Drawing.Size(274, 45);
  577. this.panel9.TabIndex = 69;
  578. //
  579. // btnScanRotationSet
  580. //
  581. this.btnScanRotationSet.BackColor = System.Drawing.Color.White;
  582. this.btnScanRotationSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  583. this.btnScanRotationSet.Cursor = System.Windows.Forms.Cursors.Hand;
  584. this.btnScanRotationSet.Font = new System.Drawing.Font("宋体", 10F);
  585. this.btnScanRotationSet.ForeColor = System.Drawing.Color.Black;
  586. this.btnScanRotationSet.Location = new System.Drawing.Point(224, 4);
  587. this.btnScanRotationSet.Name = "btnScanRotationSet";
  588. this.btnScanRotationSet.Size = new System.Drawing.Size(48, 36);
  589. this.btnScanRotationSet.TabIndex = 60;
  590. this.btnScanRotationSet.TabStop = false;
  591. this.btnScanRotationSet.Text = "写";
  592. this.btnScanRotationSet.UseVisualStyleBackColor = false;
  593. this.btnScanRotationSet.Click += new System.EventHandler(this.btnScanRotationSet_Click);
  594. //
  595. // txtScanRotation
  596. //
  597. this.txtScanRotation.Location = new System.Drawing.Point(88, 8);
  598. this.txtScanRotation.Name = "txtScanRotation";
  599. this.txtScanRotation.Size = new System.Drawing.Size(82, 28);
  600. this.txtScanRotation.TabIndex = 59;
  601. //
  602. // label7
  603. //
  604. this.label7.AutoSize = true;
  605. this.label7.BackColor = System.Drawing.Color.Transparent;
  606. this.label7.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  607. this.label7.Location = new System.Drawing.Point(4, 14);
  608. this.label7.Name = "label7";
  609. this.label7.Size = new System.Drawing.Size(89, 20);
  610. this.label7.TabIndex = 59;
  611. this.label7.Text = "旋转角度";
  612. //
  613. // btnScanRotationGet
  614. //
  615. this.btnScanRotationGet.BackColor = System.Drawing.Color.Black;
  616. this.btnScanRotationGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  617. this.btnScanRotationGet.Cursor = System.Windows.Forms.Cursors.Hand;
  618. this.btnScanRotationGet.Font = new System.Drawing.Font("宋体", 10F);
  619. this.btnScanRotationGet.ForeColor = System.Drawing.Color.White;
  620. this.btnScanRotationGet.Location = new System.Drawing.Point(178, 4);
  621. this.btnScanRotationGet.Name = "btnScanRotationGet";
  622. this.btnScanRotationGet.Size = new System.Drawing.Size(48, 36);
  623. this.btnScanRotationGet.TabIndex = 59;
  624. this.btnScanRotationGet.TabStop = false;
  625. this.btnScanRotationGet.Text = "读";
  626. this.btnScanRotationGet.UseVisualStyleBackColor = false;
  627. this.btnScanRotationGet.Click += new System.EventHandler(this.btnScanRotationGet_Click);
  628. //
  629. // panel10
  630. //
  631. this.panel10.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  632. this.panel10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  633. this.panel10.Controls.Add(this.btnContrastSet);
  634. this.panel10.Controls.Add(this.txtContrast);
  635. this.panel10.Controls.Add(this.label8);
  636. this.panel10.Controls.Add(this.btnContrastGet);
  637. this.panel10.Location = new System.Drawing.Point(334, 340);
  638. this.panel10.Name = "panel10";
  639. this.panel10.Size = new System.Drawing.Size(274, 45);
  640. this.panel10.TabIndex = 70;
  641. //
  642. // btnContrastSet
  643. //
  644. this.btnContrastSet.BackColor = System.Drawing.Color.White;
  645. this.btnContrastSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  646. this.btnContrastSet.Cursor = System.Windows.Forms.Cursors.Hand;
  647. this.btnContrastSet.Font = new System.Drawing.Font("宋体", 10F);
  648. this.btnContrastSet.ForeColor = System.Drawing.Color.Black;
  649. this.btnContrastSet.Location = new System.Drawing.Point(224, 4);
  650. this.btnContrastSet.Name = "btnContrastSet";
  651. this.btnContrastSet.Size = new System.Drawing.Size(48, 36);
  652. this.btnContrastSet.TabIndex = 60;
  653. this.btnContrastSet.TabStop = false;
  654. this.btnContrastSet.Text = "写";
  655. this.btnContrastSet.UseVisualStyleBackColor = false;
  656. this.btnContrastSet.Click += new System.EventHandler(this.btnContrastSet_Click);
  657. //
  658. // txtContrast
  659. //
  660. this.txtContrast.Location = new System.Drawing.Point(70, 8);
  661. this.txtContrast.Name = "txtContrast";
  662. this.txtContrast.Size = new System.Drawing.Size(100, 28);
  663. this.txtContrast.TabIndex = 59;
  664. //
  665. // label8
  666. //
  667. this.label8.AutoSize = true;
  668. this.label8.BackColor = System.Drawing.Color.Transparent;
  669. this.label8.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  670. this.label8.Location = new System.Drawing.Point(4, 14);
  671. this.label8.Name = "label8";
  672. this.label8.Size = new System.Drawing.Size(69, 20);
  673. this.label8.TabIndex = 59;
  674. this.label8.Text = "对比度";
  675. //
  676. // btnContrastGet
  677. //
  678. this.btnContrastGet.BackColor = System.Drawing.Color.Black;
  679. this.btnContrastGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  680. this.btnContrastGet.Cursor = System.Windows.Forms.Cursors.Hand;
  681. this.btnContrastGet.Font = new System.Drawing.Font("宋体", 10F);
  682. this.btnContrastGet.ForeColor = System.Drawing.Color.White;
  683. this.btnContrastGet.Location = new System.Drawing.Point(178, 4);
  684. this.btnContrastGet.Name = "btnContrastGet";
  685. this.btnContrastGet.Size = new System.Drawing.Size(48, 36);
  686. this.btnContrastGet.TabIndex = 59;
  687. this.btnContrastGet.TabStop = false;
  688. this.btnContrastGet.Text = "读";
  689. this.btnContrastGet.UseVisualStyleBackColor = false;
  690. this.btnContrastGet.Click += new System.EventHandler(this.btnContrastGet_Click);
  691. //
  692. // panel11
  693. //
  694. this.panel11.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  695. this.panel11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  696. this.panel11.Controls.Add(this.btnWDSet);
  697. this.panel11.Controls.Add(this.txtWD);
  698. this.panel11.Controls.Add(this.label9);
  699. this.panel11.Controls.Add(this.btnWDGet);
  700. this.panel11.Location = new System.Drawing.Point(45, 340);
  701. this.panel11.Name = "panel11";
  702. this.panel11.Size = new System.Drawing.Size(274, 45);
  703. this.panel11.TabIndex = 71;
  704. //
  705. // btnWDSet
  706. //
  707. this.btnWDSet.BackColor = System.Drawing.Color.White;
  708. this.btnWDSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  709. this.btnWDSet.Cursor = System.Windows.Forms.Cursors.Hand;
  710. this.btnWDSet.Font = new System.Drawing.Font("宋体", 10F);
  711. this.btnWDSet.ForeColor = System.Drawing.Color.Black;
  712. this.btnWDSet.Location = new System.Drawing.Point(224, 4);
  713. this.btnWDSet.Name = "btnWDSet";
  714. this.btnWDSet.Size = new System.Drawing.Size(48, 36);
  715. this.btnWDSet.TabIndex = 60;
  716. this.btnWDSet.TabStop = false;
  717. this.btnWDSet.Text = "写";
  718. this.btnWDSet.UseVisualStyleBackColor = false;
  719. this.btnWDSet.Click += new System.EventHandler(this.btnWDSet_Click);
  720. //
  721. // txtWD
  722. //
  723. this.txtWD.Location = new System.Drawing.Point(57, 8);
  724. this.txtWD.Name = "txtWD";
  725. this.txtWD.Size = new System.Drawing.Size(114, 28);
  726. this.txtWD.TabIndex = 59;
  727. //
  728. // label9
  729. //
  730. this.label9.AutoSize = true;
  731. this.label9.BackColor = System.Drawing.Color.Transparent;
  732. this.label9.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  733. this.label9.Location = new System.Drawing.Point(4, 14);
  734. this.label9.Name = "label9";
  735. this.label9.Size = new System.Drawing.Size(49, 20);
  736. this.label9.TabIndex = 59;
  737. this.label9.Text = "焦距";
  738. //
  739. // btnWDGet
  740. //
  741. this.btnWDGet.BackColor = System.Drawing.Color.Black;
  742. this.btnWDGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  743. this.btnWDGet.Cursor = System.Windows.Forms.Cursors.Hand;
  744. this.btnWDGet.Font = new System.Drawing.Font("宋体", 10F);
  745. this.btnWDGet.ForeColor = System.Drawing.Color.White;
  746. this.btnWDGet.Location = new System.Drawing.Point(178, 4);
  747. this.btnWDGet.Name = "btnWDGet";
  748. this.btnWDGet.Size = new System.Drawing.Size(48, 36);
  749. this.btnWDGet.TabIndex = 59;
  750. this.btnWDGet.TabStop = false;
  751. this.btnWDGet.Text = "读";
  752. this.btnWDGet.UseVisualStyleBackColor = false;
  753. this.btnWDGet.Click += new System.EventHandler(this.btnWDGet_Click);
  754. //
  755. // panel7
  756. //
  757. this.panel7.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  758. this.panel7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  759. this.panel7.Controls.Add(this.btnStageSetM);
  760. this.panel7.Controls.Add(this.txtStageM);
  761. this.panel7.Controls.Add(this.label5);
  762. this.panel7.Controls.Add(this.btnStageGetM);
  763. this.panel7.Location = new System.Drawing.Point(624, 483);
  764. this.panel7.Name = "panel7";
  765. this.panel7.Size = new System.Drawing.Size(274, 45);
  766. this.panel7.TabIndex = 75;
  767. //
  768. // btnStageSetM
  769. //
  770. this.btnStageSetM.BackColor = System.Drawing.Color.White;
  771. this.btnStageSetM.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  772. this.btnStageSetM.Cursor = System.Windows.Forms.Cursors.Hand;
  773. this.btnStageSetM.Font = new System.Drawing.Font("宋体", 10F);
  774. this.btnStageSetM.ForeColor = System.Drawing.Color.Black;
  775. this.btnStageSetM.Location = new System.Drawing.Point(224, 4);
  776. this.btnStageSetM.Name = "btnStageSetM";
  777. this.btnStageSetM.Size = new System.Drawing.Size(48, 36);
  778. this.btnStageSetM.TabIndex = 60;
  779. this.btnStageSetM.TabStop = false;
  780. this.btnStageSetM.Text = "写";
  781. this.btnStageSetM.UseVisualStyleBackColor = false;
  782. this.btnStageSetM.Click += new System.EventHandler(this.btnStageSetM_Click);
  783. //
  784. // txtStageM
  785. //
  786. this.txtStageM.Location = new System.Drawing.Point(102, 8);
  787. this.txtStageM.Name = "txtStageM";
  788. this.txtStageM.Size = new System.Drawing.Size(68, 28);
  789. this.txtStageM.TabIndex = 59;
  790. //
  791. // label5
  792. //
  793. this.label5.AutoSize = true;
  794. this.label5.BackColor = System.Drawing.Color.Transparent;
  795. this.label5.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  796. this.label5.Location = new System.Drawing.Point(4, 14);
  797. this.label5.Name = "label5";
  798. this.label5.Size = new System.Drawing.Size(99, 20);
  799. this.label5.TabIndex = 59;
  800. this.label5.Text = "样品台M轴";
  801. //
  802. // btnStageGetM
  803. //
  804. this.btnStageGetM.BackColor = System.Drawing.Color.Black;
  805. this.btnStageGetM.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  806. this.btnStageGetM.Cursor = System.Windows.Forms.Cursors.Hand;
  807. this.btnStageGetM.Font = new System.Drawing.Font("宋体", 10F);
  808. this.btnStageGetM.ForeColor = System.Drawing.Color.White;
  809. this.btnStageGetM.Location = new System.Drawing.Point(178, 4);
  810. this.btnStageGetM.Name = "btnStageGetM";
  811. this.btnStageGetM.Size = new System.Drawing.Size(48, 36);
  812. this.btnStageGetM.TabIndex = 59;
  813. this.btnStageGetM.TabStop = false;
  814. this.btnStageGetM.Text = "读";
  815. this.btnStageGetM.UseVisualStyleBackColor = false;
  816. this.btnStageGetM.Click += new System.EventHandler(this.btnStageGetM_Click);
  817. //
  818. // panel12
  819. //
  820. this.panel12.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  821. this.panel12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  822. this.panel12.Controls.Add(this.btnStageSetR);
  823. this.panel12.Controls.Add(this.txtStageR);
  824. this.panel12.Controls.Add(this.label10);
  825. this.panel12.Controls.Add(this.btnStageGetR);
  826. this.panel12.Location = new System.Drawing.Point(334, 483);
  827. this.panel12.Name = "panel12";
  828. this.panel12.Size = new System.Drawing.Size(274, 45);
  829. this.panel12.TabIndex = 76;
  830. //
  831. // btnStageSetR
  832. //
  833. this.btnStageSetR.BackColor = System.Drawing.Color.White;
  834. this.btnStageSetR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  835. this.btnStageSetR.Cursor = System.Windows.Forms.Cursors.Hand;
  836. this.btnStageSetR.Font = new System.Drawing.Font("宋体", 10F);
  837. this.btnStageSetR.ForeColor = System.Drawing.Color.Black;
  838. this.btnStageSetR.Location = new System.Drawing.Point(224, 4);
  839. this.btnStageSetR.Name = "btnStageSetR";
  840. this.btnStageSetR.Size = new System.Drawing.Size(48, 36);
  841. this.btnStageSetR.TabIndex = 60;
  842. this.btnStageSetR.TabStop = false;
  843. this.btnStageSetR.Text = "写";
  844. this.btnStageSetR.UseVisualStyleBackColor = false;
  845. this.btnStageSetR.Click += new System.EventHandler(this.btnStageSetR_Click);
  846. //
  847. // txtStageR
  848. //
  849. this.txtStageR.Location = new System.Drawing.Point(102, 8);
  850. this.txtStageR.Name = "txtStageR";
  851. this.txtStageR.Size = new System.Drawing.Size(68, 28);
  852. this.txtStageR.TabIndex = 59;
  853. //
  854. // label10
  855. //
  856. this.label10.AutoSize = true;
  857. this.label10.BackColor = System.Drawing.Color.Transparent;
  858. this.label10.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  859. this.label10.Location = new System.Drawing.Point(4, 14);
  860. this.label10.Name = "label10";
  861. this.label10.Size = new System.Drawing.Size(99, 20);
  862. this.label10.TabIndex = 59;
  863. this.label10.Text = "样品台R轴";
  864. //
  865. // btnStageGetR
  866. //
  867. this.btnStageGetR.BackColor = System.Drawing.Color.Black;
  868. this.btnStageGetR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  869. this.btnStageGetR.Cursor = System.Windows.Forms.Cursors.Hand;
  870. this.btnStageGetR.Font = new System.Drawing.Font("宋体", 10F);
  871. this.btnStageGetR.ForeColor = System.Drawing.Color.White;
  872. this.btnStageGetR.Location = new System.Drawing.Point(178, 4);
  873. this.btnStageGetR.Name = "btnStageGetR";
  874. this.btnStageGetR.Size = new System.Drawing.Size(48, 36);
  875. this.btnStageGetR.TabIndex = 59;
  876. this.btnStageGetR.TabStop = false;
  877. this.btnStageGetR.Text = "读";
  878. this.btnStageGetR.UseVisualStyleBackColor = false;
  879. this.btnStageGetR.Click += new System.EventHandler(this.btnStageGetR_Click);
  880. //
  881. // panel13
  882. //
  883. this.panel13.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  884. this.panel13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  885. this.panel13.Controls.Add(this.btnStageSetT);
  886. this.panel13.Controls.Add(this.txtStageT);
  887. this.panel13.Controls.Add(this.label11);
  888. this.panel13.Controls.Add(this.btnStageGetT);
  889. this.panel13.Location = new System.Drawing.Point(45, 483);
  890. this.panel13.Name = "panel13";
  891. this.panel13.Size = new System.Drawing.Size(274, 45);
  892. this.panel13.TabIndex = 77;
  893. //
  894. // btnStageSetT
  895. //
  896. this.btnStageSetT.BackColor = System.Drawing.Color.White;
  897. this.btnStageSetT.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  898. this.btnStageSetT.Cursor = System.Windows.Forms.Cursors.Hand;
  899. this.btnStageSetT.Font = new System.Drawing.Font("宋体", 10F);
  900. this.btnStageSetT.ForeColor = System.Drawing.Color.Black;
  901. this.btnStageSetT.Location = new System.Drawing.Point(224, 4);
  902. this.btnStageSetT.Name = "btnStageSetT";
  903. this.btnStageSetT.Size = new System.Drawing.Size(48, 36);
  904. this.btnStageSetT.TabIndex = 60;
  905. this.btnStageSetT.TabStop = false;
  906. this.btnStageSetT.Text = "写";
  907. this.btnStageSetT.UseVisualStyleBackColor = false;
  908. this.btnStageSetT.Click += new System.EventHandler(this.btnStageSetT_Click);
  909. //
  910. // txtStageT
  911. //
  912. this.txtStageT.Location = new System.Drawing.Point(102, 8);
  913. this.txtStageT.Name = "txtStageT";
  914. this.txtStageT.Size = new System.Drawing.Size(68, 28);
  915. this.txtStageT.TabIndex = 59;
  916. //
  917. // label11
  918. //
  919. this.label11.AutoSize = true;
  920. this.label11.BackColor = System.Drawing.Color.Transparent;
  921. this.label11.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  922. this.label11.Location = new System.Drawing.Point(4, 14);
  923. this.label11.Name = "label11";
  924. this.label11.Size = new System.Drawing.Size(99, 20);
  925. this.label11.TabIndex = 59;
  926. this.label11.Text = "样品台T轴";
  927. //
  928. // btnStageGetT
  929. //
  930. this.btnStageGetT.BackColor = System.Drawing.Color.Black;
  931. this.btnStageGetT.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  932. this.btnStageGetT.Cursor = System.Windows.Forms.Cursors.Hand;
  933. this.btnStageGetT.Font = new System.Drawing.Font("宋体", 10F);
  934. this.btnStageGetT.ForeColor = System.Drawing.Color.White;
  935. this.btnStageGetT.Location = new System.Drawing.Point(178, 4);
  936. this.btnStageGetT.Name = "btnStageGetT";
  937. this.btnStageGetT.Size = new System.Drawing.Size(48, 36);
  938. this.btnStageGetT.TabIndex = 59;
  939. this.btnStageGetT.TabStop = false;
  940. this.btnStageGetT.Text = "读";
  941. this.btnStageGetT.UseVisualStyleBackColor = false;
  942. this.btnStageGetT.Click += new System.EventHandler(this.btnStageGetT_Click);
  943. //
  944. // panel14
  945. //
  946. this.panel14.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  947. this.panel14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  948. this.panel14.Controls.Add(this.btnStageSetZ);
  949. this.panel14.Controls.Add(this.txtStageZ);
  950. this.panel14.Controls.Add(this.label12);
  951. this.panel14.Controls.Add(this.btnStageGetZ);
  952. this.panel14.Location = new System.Drawing.Point(624, 422);
  953. this.panel14.Name = "panel14";
  954. this.panel14.Size = new System.Drawing.Size(274, 45);
  955. this.panel14.TabIndex = 72;
  956. //
  957. // btnStageSetZ
  958. //
  959. this.btnStageSetZ.BackColor = System.Drawing.Color.White;
  960. this.btnStageSetZ.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  961. this.btnStageSetZ.Cursor = System.Windows.Forms.Cursors.Hand;
  962. this.btnStageSetZ.Font = new System.Drawing.Font("宋体", 10F);
  963. this.btnStageSetZ.ForeColor = System.Drawing.Color.Black;
  964. this.btnStageSetZ.Location = new System.Drawing.Point(224, 4);
  965. this.btnStageSetZ.Name = "btnStageSetZ";
  966. this.btnStageSetZ.Size = new System.Drawing.Size(48, 36);
  967. this.btnStageSetZ.TabIndex = 60;
  968. this.btnStageSetZ.TabStop = false;
  969. this.btnStageSetZ.Text = "写";
  970. this.btnStageSetZ.UseVisualStyleBackColor = false;
  971. this.btnStageSetZ.Click += new System.EventHandler(this.btnStageSetZ_Click);
  972. //
  973. // txtStageZ
  974. //
  975. this.txtStageZ.Location = new System.Drawing.Point(102, 8);
  976. this.txtStageZ.Name = "txtStageZ";
  977. this.txtStageZ.Size = new System.Drawing.Size(68, 28);
  978. this.txtStageZ.TabIndex = 59;
  979. //
  980. // label12
  981. //
  982. this.label12.AutoSize = true;
  983. this.label12.BackColor = System.Drawing.Color.Transparent;
  984. this.label12.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  985. this.label12.Location = new System.Drawing.Point(4, 14);
  986. this.label12.Name = "label12";
  987. this.label12.Size = new System.Drawing.Size(99, 20);
  988. this.label12.TabIndex = 59;
  989. this.label12.Text = "样品台Z轴";
  990. //
  991. // btnStageGetZ
  992. //
  993. this.btnStageGetZ.BackColor = System.Drawing.Color.Black;
  994. this.btnStageGetZ.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  995. this.btnStageGetZ.Cursor = System.Windows.Forms.Cursors.Hand;
  996. this.btnStageGetZ.Font = new System.Drawing.Font("宋体", 10F);
  997. this.btnStageGetZ.ForeColor = System.Drawing.Color.White;
  998. this.btnStageGetZ.Location = new System.Drawing.Point(178, 4);
  999. this.btnStageGetZ.Name = "btnStageGetZ";
  1000. this.btnStageGetZ.Size = new System.Drawing.Size(48, 36);
  1001. this.btnStageGetZ.TabIndex = 59;
  1002. this.btnStageGetZ.TabStop = false;
  1003. this.btnStageGetZ.Text = "读";
  1004. this.btnStageGetZ.UseVisualStyleBackColor = false;
  1005. this.btnStageGetZ.Click += new System.EventHandler(this.btnStageGetZ_Click);
  1006. //
  1007. // panel15
  1008. //
  1009. this.panel15.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  1010. this.panel15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1011. this.panel15.Controls.Add(this.btnStageSetY);
  1012. this.panel15.Controls.Add(this.txtStageY);
  1013. this.panel15.Controls.Add(this.label13);
  1014. this.panel15.Controls.Add(this.btnStageGetY);
  1015. this.panel15.Location = new System.Drawing.Point(334, 422);
  1016. this.panel15.Name = "panel15";
  1017. this.panel15.Size = new System.Drawing.Size(274, 45);
  1018. this.panel15.TabIndex = 73;
  1019. //
  1020. // btnStageSetY
  1021. //
  1022. this.btnStageSetY.BackColor = System.Drawing.Color.White;
  1023. this.btnStageSetY.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1024. this.btnStageSetY.Cursor = System.Windows.Forms.Cursors.Hand;
  1025. this.btnStageSetY.Font = new System.Drawing.Font("宋体", 10F);
  1026. this.btnStageSetY.ForeColor = System.Drawing.Color.Black;
  1027. this.btnStageSetY.Location = new System.Drawing.Point(224, 4);
  1028. this.btnStageSetY.Name = "btnStageSetY";
  1029. this.btnStageSetY.Size = new System.Drawing.Size(48, 36);
  1030. this.btnStageSetY.TabIndex = 60;
  1031. this.btnStageSetY.TabStop = false;
  1032. this.btnStageSetY.Text = "写";
  1033. this.btnStageSetY.UseVisualStyleBackColor = false;
  1034. this.btnStageSetY.Click += new System.EventHandler(this.btnStageSetY_Click);
  1035. //
  1036. // txtStageY
  1037. //
  1038. this.txtStageY.Location = new System.Drawing.Point(102, 8);
  1039. this.txtStageY.Name = "txtStageY";
  1040. this.txtStageY.Size = new System.Drawing.Size(68, 28);
  1041. this.txtStageY.TabIndex = 59;
  1042. //
  1043. // label13
  1044. //
  1045. this.label13.AutoSize = true;
  1046. this.label13.BackColor = System.Drawing.Color.Transparent;
  1047. this.label13.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1048. this.label13.Location = new System.Drawing.Point(4, 14);
  1049. this.label13.Name = "label13";
  1050. this.label13.Size = new System.Drawing.Size(99, 20);
  1051. this.label13.TabIndex = 59;
  1052. this.label13.Text = "样品台Y轴";
  1053. //
  1054. // btnStageGetY
  1055. //
  1056. this.btnStageGetY.BackColor = System.Drawing.Color.Black;
  1057. this.btnStageGetY.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1058. this.btnStageGetY.Cursor = System.Windows.Forms.Cursors.Hand;
  1059. this.btnStageGetY.Font = new System.Drawing.Font("宋体", 10F);
  1060. this.btnStageGetY.ForeColor = System.Drawing.Color.White;
  1061. this.btnStageGetY.Location = new System.Drawing.Point(178, 4);
  1062. this.btnStageGetY.Name = "btnStageGetY";
  1063. this.btnStageGetY.Size = new System.Drawing.Size(48, 36);
  1064. this.btnStageGetY.TabIndex = 59;
  1065. this.btnStageGetY.TabStop = false;
  1066. this.btnStageGetY.Text = "读";
  1067. this.btnStageGetY.UseVisualStyleBackColor = false;
  1068. this.btnStageGetY.Click += new System.EventHandler(this.btnStageGetY_Click);
  1069. //
  1070. // panel16
  1071. //
  1072. this.panel16.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  1073. this.panel16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1074. this.panel16.Controls.Add(this.btnStageSetX);
  1075. this.panel16.Controls.Add(this.txtStageX);
  1076. this.panel16.Controls.Add(this.label14);
  1077. this.panel16.Controls.Add(this.btnStageGetX);
  1078. this.panel16.Location = new System.Drawing.Point(45, 422);
  1079. this.panel16.Name = "panel16";
  1080. this.panel16.Size = new System.Drawing.Size(274, 45);
  1081. this.panel16.TabIndex = 74;
  1082. //
  1083. // btnStageSetX
  1084. //
  1085. this.btnStageSetX.BackColor = System.Drawing.Color.White;
  1086. this.btnStageSetX.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1087. this.btnStageSetX.Cursor = System.Windows.Forms.Cursors.Hand;
  1088. this.btnStageSetX.Font = new System.Drawing.Font("宋体", 10F);
  1089. this.btnStageSetX.ForeColor = System.Drawing.Color.Black;
  1090. this.btnStageSetX.Location = new System.Drawing.Point(224, 4);
  1091. this.btnStageSetX.Name = "btnStageSetX";
  1092. this.btnStageSetX.Size = new System.Drawing.Size(48, 36);
  1093. this.btnStageSetX.TabIndex = 60;
  1094. this.btnStageSetX.TabStop = false;
  1095. this.btnStageSetX.Text = "写";
  1096. this.btnStageSetX.UseVisualStyleBackColor = false;
  1097. this.btnStageSetX.Click += new System.EventHandler(this.btnStageSetX_Click);
  1098. //
  1099. // txtStageX
  1100. //
  1101. this.txtStageX.Location = new System.Drawing.Point(102, 8);
  1102. this.txtStageX.Name = "txtStageX";
  1103. this.txtStageX.Size = new System.Drawing.Size(68, 28);
  1104. this.txtStageX.TabIndex = 59;
  1105. //
  1106. // label14
  1107. //
  1108. this.label14.AutoSize = true;
  1109. this.label14.BackColor = System.Drawing.Color.Transparent;
  1110. this.label14.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1111. this.label14.Location = new System.Drawing.Point(4, 14);
  1112. this.label14.Name = "label14";
  1113. this.label14.Size = new System.Drawing.Size(99, 20);
  1114. this.label14.TabIndex = 59;
  1115. this.label14.Text = "样品台X轴";
  1116. //
  1117. // btnStageGetX
  1118. //
  1119. this.btnStageGetX.BackColor = System.Drawing.Color.Black;
  1120. this.btnStageGetX.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1121. this.btnStageGetX.Cursor = System.Windows.Forms.Cursors.Hand;
  1122. this.btnStageGetX.Font = new System.Drawing.Font("宋体", 10F);
  1123. this.btnStageGetX.ForeColor = System.Drawing.Color.White;
  1124. this.btnStageGetX.Location = new System.Drawing.Point(178, 4);
  1125. this.btnStageGetX.Name = "btnStageGetX";
  1126. this.btnStageGetX.Size = new System.Drawing.Size(48, 36);
  1127. this.btnStageGetX.TabIndex = 59;
  1128. this.btnStageGetX.TabStop = false;
  1129. this.btnStageGetX.Text = "读";
  1130. this.btnStageGetX.UseVisualStyleBackColor = false;
  1131. this.btnStageGetX.Click += new System.EventHandler(this.btnStageGetX_Click);
  1132. //
  1133. // label15
  1134. //
  1135. this.label15.AutoSize = true;
  1136. this.label15.BackColor = System.Drawing.Color.Transparent;
  1137. this.label15.Font = new System.Drawing.Font("宋体", 11F);
  1138. this.label15.ForeColor = System.Drawing.Color.White;
  1139. this.label15.Location = new System.Drawing.Point(32, 186);
  1140. this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1141. this.label15.Name = "label15";
  1142. this.label15.Size = new System.Drawing.Size(142, 22);
  1143. this.label15.TabIndex = 78;
  1144. this.label15.Text = "设备功能设置";
  1145. //
  1146. // label22
  1147. //
  1148. this.label22.AutoSize = true;
  1149. this.label22.BackColor = System.Drawing.Color.Transparent;
  1150. this.label22.Font = new System.Drawing.Font("宋体", 10F);
  1151. this.label22.ForeColor = System.Drawing.Color.White;
  1152. this.label22.Location = new System.Drawing.Point(40, 234);
  1153. this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1154. this.label22.Name = "label22";
  1155. this.label22.Size = new System.Drawing.Size(119, 20);
  1156. this.label22.TabIndex = 78;
  1157. this.label22.Text = "SEM功能设置";
  1158. //
  1159. // label23
  1160. //
  1161. this.label23.AutoSize = true;
  1162. this.label23.BackColor = System.Drawing.Color.Transparent;
  1163. this.label23.Font = new System.Drawing.Font("宋体", 10F);
  1164. this.label23.ForeColor = System.Drawing.Color.White;
  1165. this.label23.Location = new System.Drawing.Point(40, 580);
  1166. this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1167. this.label23.Name = "label23";
  1168. this.label23.Size = new System.Drawing.Size(119, 20);
  1169. this.label23.TabIndex = 78;
  1170. this.label23.Text = "FIB功能设置";
  1171. //
  1172. // label24
  1173. //
  1174. this.label24.AutoSize = true;
  1175. this.label24.BackColor = System.Drawing.Color.Transparent;
  1176. this.label24.Font = new System.Drawing.Font("宋体", 10F);
  1177. this.label24.ForeColor = System.Drawing.Color.White;
  1178. this.label24.Location = new System.Drawing.Point(46, 710);
  1179. this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1180. this.label24.Name = "label24";
  1181. this.label24.Size = new System.Drawing.Size(109, 20);
  1182. this.label24.TabIndex = 78;
  1183. this.label24.Text = "PT功能设置";
  1184. //
  1185. // btnAutoWD
  1186. //
  1187. this.btnAutoWD.BackgroundImage = global::HOZProject.Properties.Resources.buttonBG;
  1188. this.btnAutoWD.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1189. this.btnAutoWD.Cursor = System.Windows.Forms.Cursors.Hand;
  1190. this.btnAutoWD.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1191. this.btnAutoWD.Font = new System.Drawing.Font("宋体", 9F);
  1192. this.btnAutoWD.ForeColor = System.Drawing.Color.White;
  1193. this.btnAutoWD.Location = new System.Drawing.Point(1200, 327);
  1194. this.btnAutoWD.Margin = new System.Windows.Forms.Padding(4);
  1195. this.btnAutoWD.Name = "btnAutoWD";
  1196. this.btnAutoWD.Size = new System.Drawing.Size(120, 32);
  1197. this.btnAutoWD.TabIndex = 80;
  1198. this.btnAutoWD.Text = "自动对焦";
  1199. this.btnAutoWD.UseVisualStyleBackColor = true;
  1200. this.btnAutoWD.Click += new System.EventHandler(this.btnAutoWD_Click);
  1201. //
  1202. // btnAutoAstigmatism
  1203. //
  1204. this.btnAutoAstigmatism.BackgroundImage = global::HOZProject.Properties.Resources.buttonBG;
  1205. this.btnAutoAstigmatism.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1206. this.btnAutoAstigmatism.Cursor = System.Windows.Forms.Cursors.Hand;
  1207. this.btnAutoAstigmatism.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1208. this.btnAutoAstigmatism.Font = new System.Drawing.Font("宋体", 9F);
  1209. this.btnAutoAstigmatism.ForeColor = System.Drawing.Color.White;
  1210. this.btnAutoAstigmatism.Location = new System.Drawing.Point(1200, 357);
  1211. this.btnAutoAstigmatism.Margin = new System.Windows.Forms.Padding(4);
  1212. this.btnAutoAstigmatism.Name = "btnAutoAstigmatism";
  1213. this.btnAutoAstigmatism.Size = new System.Drawing.Size(120, 32);
  1214. this.btnAutoAstigmatism.TabIndex = 80;
  1215. this.btnAutoAstigmatism.Text = " 自动消像散";
  1216. this.btnAutoAstigmatism.UseVisualStyleBackColor = true;
  1217. this.btnAutoAstigmatism.Click += new System.EventHandler(this.btnAutoAstigmatism_Click);
  1218. //
  1219. // btnAutoBrightness
  1220. //
  1221. this.btnAutoBrightness.BackgroundImage = global::HOZProject.Properties.Resources.buttonBG;
  1222. this.btnAutoBrightness.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1223. this.btnAutoBrightness.Cursor = System.Windows.Forms.Cursors.Hand;
  1224. this.btnAutoBrightness.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  1225. this.btnAutoBrightness.Font = new System.Drawing.Font("宋体", 9F);
  1226. this.btnAutoBrightness.ForeColor = System.Drawing.Color.White;
  1227. this.btnAutoBrightness.Location = new System.Drawing.Point(1318, 327);
  1228. this.btnAutoBrightness.Margin = new System.Windows.Forms.Padding(4);
  1229. this.btnAutoBrightness.Name = "btnAutoBrightness";
  1230. this.btnAutoBrightness.Size = new System.Drawing.Size(120, 62);
  1231. this.btnAutoBrightness.TabIndex = 82;
  1232. this.btnAutoBrightness.Text = "自动亮度 对比度";
  1233. this.btnAutoBrightness.UseVisualStyleBackColor = true;
  1234. this.btnAutoBrightness.Click += new System.EventHandler(this.btnAutoBrightness_Click);
  1235. //
  1236. // btnGetStagePosition
  1237. //
  1238. this.btnGetStagePosition.BackgroundImage = global::HOZProject.Properties.Resources.GetLocationBG;
  1239. this.btnGetStagePosition.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1240. this.btnGetStagePosition.Cursor = System.Windows.Forms.Cursors.Hand;
  1241. this.btnGetStagePosition.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
  1242. this.btnGetStagePosition.Font = new System.Drawing.Font("宋体", 10F);
  1243. this.btnGetStagePosition.ForeColor = System.Drawing.Color.White;
  1244. this.btnGetStagePosition.Location = new System.Drawing.Point(914, 422);
  1245. this.btnGetStagePosition.Margin = new System.Windows.Forms.Padding(4);
  1246. this.btnGetStagePosition.Name = "btnGetStagePosition";
  1247. this.btnGetStagePosition.Size = new System.Drawing.Size(123, 106);
  1248. this.btnGetStagePosition.TabIndex = 83;
  1249. this.btnGetStagePosition.Text = "获取位置";
  1250. this.btnGetStagePosition.UseVisualStyleBackColor = true;
  1251. this.btnGetStagePosition.Click += new System.EventHandler(this.btnGetStagePosition_Click);
  1252. //
  1253. // pbHT
  1254. //
  1255. this.pbHT.BackColor = System.Drawing.Color.Transparent;
  1256. this.pbHT.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1257. this.pbHT.Cursor = System.Windows.Forms.Cursors.Hand;
  1258. this.pbHT.Image = global::HOZProject.Properties.Resources.OFF;
  1259. this.pbHT.Location = new System.Drawing.Point(1425, 231);
  1260. this.pbHT.Name = "pbHT";
  1261. this.pbHT.Size = new System.Drawing.Size(72, 28);
  1262. this.pbHT.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1263. this.pbHT.TabIndex = 0;
  1264. this.pbHT.TabStop = false;
  1265. this.pbHT.Click += new System.EventHandler(this.pbHT_Click);
  1266. //
  1267. // lblState
  1268. //
  1269. this.lblState.AutoSize = true;
  1270. this.lblState.BackColor = System.Drawing.Color.Transparent;
  1271. this.lblState.ForeColor = System.Drawing.Color.White;
  1272. this.lblState.Location = new System.Drawing.Point(1340, 988);
  1273. this.lblState.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1274. this.lblState.Name = "lblState";
  1275. this.lblState.Size = new System.Drawing.Size(179, 18);
  1276. this.lblState.TabIndex = 84;
  1277. this.lblState.Tag = "";
  1278. this.lblState.Text = "当前连接状态:未连接";
  1279. this.lblState.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1280. //
  1281. // panel6
  1282. //
  1283. this.panel6.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  1284. this.panel6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1285. this.panel6.Controls.Add(this.button1);
  1286. this.panel6.Controls.Add(this.comboBox1);
  1287. this.panel6.Controls.Add(this.label17);
  1288. this.panel6.Location = new System.Drawing.Point(45, 618);
  1289. this.panel6.Name = "panel6";
  1290. this.panel6.Size = new System.Drawing.Size(393, 45);
  1291. this.panel6.TabIndex = 77;
  1292. //
  1293. // button1
  1294. //
  1295. this.button1.BackColor = System.Drawing.Color.Black;
  1296. this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1297. this.button1.Cursor = System.Windows.Forms.Cursors.Hand;
  1298. this.button1.Font = new System.Drawing.Font("宋体", 10F);
  1299. this.button1.ForeColor = System.Drawing.Color.White;
  1300. this.button1.Location = new System.Drawing.Point(276, 4);
  1301. this.button1.Name = "button1";
  1302. this.button1.Size = new System.Drawing.Size(114, 36);
  1303. this.button1.TabIndex = 88;
  1304. this.button1.TabStop = false;
  1305. this.button1.Text = "执行";
  1306. this.button1.UseVisualStyleBackColor = false;
  1307. //
  1308. // comboBox1
  1309. //
  1310. this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1311. this.comboBox1.FormattingEnabled = true;
  1312. this.comboBox1.Location = new System.Drawing.Point(100, 8);
  1313. this.comboBox1.Margin = new System.Windows.Forms.Padding(4);
  1314. this.comboBox1.Name = "comboBox1";
  1315. this.comboBox1.Size = new System.Drawing.Size(166, 26);
  1316. this.comboBox1.TabIndex = 85;
  1317. //
  1318. // label17
  1319. //
  1320. this.label17.AutoSize = true;
  1321. this.label17.BackColor = System.Drawing.Color.Transparent;
  1322. this.label17.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1323. this.label17.Location = new System.Drawing.Point(4, 14);
  1324. this.label17.Name = "label17";
  1325. this.label17.Size = new System.Drawing.Size(89, 20);
  1326. this.label17.TabIndex = 59;
  1327. this.label17.Text = "选择模板";
  1328. //
  1329. // panel20
  1330. //
  1331. this.panel20.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  1332. this.panel20.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1333. this.panel20.Controls.Add(this.button3);
  1334. this.panel20.Controls.Add(this.textBox3);
  1335. this.panel20.Controls.Add(this.label20);
  1336. this.panel20.Controls.Add(this.button4);
  1337. this.panel20.Location = new System.Drawing.Point(45, 742);
  1338. this.panel20.Name = "panel20";
  1339. this.panel20.Size = new System.Drawing.Size(274, 45);
  1340. this.panel20.TabIndex = 87;
  1341. //
  1342. // button3
  1343. //
  1344. this.button3.BackColor = System.Drawing.Color.White;
  1345. this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1346. this.button3.Cursor = System.Windows.Forms.Cursors.Hand;
  1347. this.button3.Font = new System.Drawing.Font("宋体", 10F);
  1348. this.button3.ForeColor = System.Drawing.Color.Black;
  1349. this.button3.Location = new System.Drawing.Point(224, 4);
  1350. this.button3.Name = "button3";
  1351. this.button3.Size = new System.Drawing.Size(48, 36);
  1352. this.button3.TabIndex = 60;
  1353. this.button3.TabStop = false;
  1354. this.button3.Text = "出";
  1355. this.button3.UseVisualStyleBackColor = false;
  1356. //
  1357. // textBox3
  1358. //
  1359. this.textBox3.Location = new System.Drawing.Point(102, 8);
  1360. this.textBox3.Name = "textBox3";
  1361. this.textBox3.Size = new System.Drawing.Size(68, 28);
  1362. this.textBox3.TabIndex = 59;
  1363. //
  1364. // label20
  1365. //
  1366. this.label20.AutoSize = true;
  1367. this.label20.BackColor = System.Drawing.Color.Transparent;
  1368. this.label20.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1369. this.label20.Location = new System.Drawing.Point(4, 14);
  1370. this.label20.Name = "label20";
  1371. this.label20.Size = new System.Drawing.Size(89, 20);
  1372. this.label20.TabIndex = 59;
  1373. this.label20.Text = "PT针操作";
  1374. //
  1375. // button4
  1376. //
  1377. this.button4.BackColor = System.Drawing.Color.Black;
  1378. this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1379. this.button4.Cursor = System.Windows.Forms.Cursors.Hand;
  1380. this.button4.Font = new System.Drawing.Font("宋体", 10F);
  1381. this.button4.ForeColor = System.Drawing.Color.White;
  1382. this.button4.Location = new System.Drawing.Point(178, 4);
  1383. this.button4.Name = "button4";
  1384. this.button4.Size = new System.Drawing.Size(48, 36);
  1385. this.button4.TabIndex = 59;
  1386. this.button4.TabStop = false;
  1387. this.button4.Text = "入";
  1388. this.button4.UseVisualStyleBackColor = false;
  1389. //
  1390. // panel17
  1391. //
  1392. this.panel17.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  1393. this.panel17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1394. this.panel17.Controls.Add(this.button6);
  1395. this.panel17.Controls.Add(this.button5);
  1396. this.panel17.Controls.Add(this.textBox1);
  1397. this.panel17.Controls.Add(this.label16);
  1398. this.panel17.Location = new System.Drawing.Point(448, 618);
  1399. this.panel17.Name = "panel17";
  1400. this.panel17.Size = new System.Drawing.Size(675, 45);
  1401. this.panel17.TabIndex = 87;
  1402. //
  1403. // button6
  1404. //
  1405. this.button6.BackColor = System.Drawing.Color.Black;
  1406. this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1407. this.button6.Cursor = System.Windows.Forms.Cursors.Hand;
  1408. this.button6.Font = new System.Drawing.Font("宋体", 10F);
  1409. this.button6.ForeColor = System.Drawing.Color.White;
  1410. this.button6.Location = new System.Drawing.Point(558, 4);
  1411. this.button6.Name = "button6";
  1412. this.button6.Size = new System.Drawing.Size(114, 36);
  1413. this.button6.TabIndex = 89;
  1414. this.button6.TabStop = false;
  1415. this.button6.Text = "执行";
  1416. this.button6.UseVisualStyleBackColor = false;
  1417. //
  1418. // button5
  1419. //
  1420. this.button5.BackColor = System.Drawing.Color.White;
  1421. this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1422. this.button5.Font = new System.Drawing.Font("宋体", 9F);
  1423. this.button5.ForeColor = System.Drawing.Color.Black;
  1424. this.button5.Location = new System.Drawing.Point(506, 4);
  1425. this.button5.Name = "button5";
  1426. this.button5.Size = new System.Drawing.Size(48, 36);
  1427. this.button5.TabIndex = 60;
  1428. this.button5.TabStop = false;
  1429. this.button5.Text = "...";
  1430. this.button5.UseVisualStyleBackColor = false;
  1431. //
  1432. // textBox1
  1433. //
  1434. this.textBox1.Location = new System.Drawing.Point(99, 8);
  1435. this.textBox1.Name = "textBox1";
  1436. this.textBox1.Size = new System.Drawing.Size(403, 28);
  1437. this.textBox1.TabIndex = 59;
  1438. //
  1439. // label16
  1440. //
  1441. this.label16.AutoSize = true;
  1442. this.label16.BackColor = System.Drawing.Color.Transparent;
  1443. this.label16.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1444. this.label16.Location = new System.Drawing.Point(4, 14);
  1445. this.label16.Name = "label16";
  1446. this.label16.Size = new System.Drawing.Size(89, 20);
  1447. this.label16.TabIndex = 59;
  1448. this.label16.Text = "选择模板";
  1449. //
  1450. // panel18
  1451. //
  1452. this.panel18.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  1453. this.panel18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1454. this.panel18.Controls.Add(this.button2);
  1455. this.panel18.Controls.Add(this.button7);
  1456. this.panel18.Controls.Add(this.textBox2);
  1457. this.panel18.Controls.Add(this.label18);
  1458. this.panel18.Location = new System.Drawing.Point(738, 742);
  1459. this.panel18.Name = "panel18";
  1460. this.panel18.Size = new System.Drawing.Size(675, 45);
  1461. this.panel18.TabIndex = 89;
  1462. //
  1463. // button2
  1464. //
  1465. this.button2.BackColor = System.Drawing.Color.Black;
  1466. this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1467. this.button2.Cursor = System.Windows.Forms.Cursors.Hand;
  1468. this.button2.Font = new System.Drawing.Font("宋体", 10F);
  1469. this.button2.ForeColor = System.Drawing.Color.White;
  1470. this.button2.Location = new System.Drawing.Point(558, 4);
  1471. this.button2.Name = "button2";
  1472. this.button2.Size = new System.Drawing.Size(114, 36);
  1473. this.button2.TabIndex = 89;
  1474. this.button2.TabStop = false;
  1475. this.button2.Text = "执行";
  1476. this.button2.UseVisualStyleBackColor = false;
  1477. //
  1478. // button7
  1479. //
  1480. this.button7.BackColor = System.Drawing.Color.White;
  1481. this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1482. this.button7.Font = new System.Drawing.Font("宋体", 9F);
  1483. this.button7.ForeColor = System.Drawing.Color.Black;
  1484. this.button7.Location = new System.Drawing.Point(506, 4);
  1485. this.button7.Name = "button7";
  1486. this.button7.Size = new System.Drawing.Size(48, 36);
  1487. this.button7.TabIndex = 60;
  1488. this.button7.TabStop = false;
  1489. this.button7.Text = "...";
  1490. this.button7.UseVisualStyleBackColor = false;
  1491. //
  1492. // textBox2
  1493. //
  1494. this.textBox2.Location = new System.Drawing.Point(99, 8);
  1495. this.textBox2.Name = "textBox2";
  1496. this.textBox2.Size = new System.Drawing.Size(403, 28);
  1497. this.textBox2.TabIndex = 59;
  1498. //
  1499. // label18
  1500. //
  1501. this.label18.AutoSize = true;
  1502. this.label18.BackColor = System.Drawing.Color.Transparent;
  1503. this.label18.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1504. this.label18.Location = new System.Drawing.Point(4, 14);
  1505. this.label18.Name = "label18";
  1506. this.label18.Size = new System.Drawing.Size(89, 20);
  1507. this.label18.TabIndex = 59;
  1508. this.label18.Text = "选择模板";
  1509. //
  1510. // panel19
  1511. //
  1512. this.panel19.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
  1513. this.panel19.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1514. this.panel19.Controls.Add(this.button8);
  1515. this.panel19.Controls.Add(this.comboBox2);
  1516. this.panel19.Controls.Add(this.label19);
  1517. this.panel19.Location = new System.Drawing.Point(334, 742);
  1518. this.panel19.Name = "panel19";
  1519. this.panel19.Size = new System.Drawing.Size(393, 45);
  1520. this.panel19.TabIndex = 88;
  1521. //
  1522. // button8
  1523. //
  1524. this.button8.BackColor = System.Drawing.Color.Black;
  1525. this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1526. this.button8.Cursor = System.Windows.Forms.Cursors.Hand;
  1527. this.button8.Font = new System.Drawing.Font("宋体", 10F);
  1528. this.button8.ForeColor = System.Drawing.Color.White;
  1529. this.button8.Location = new System.Drawing.Point(276, 4);
  1530. this.button8.Name = "button8";
  1531. this.button8.Size = new System.Drawing.Size(114, 36);
  1532. this.button8.TabIndex = 88;
  1533. this.button8.TabStop = false;
  1534. this.button8.Text = "执行";
  1535. this.button8.UseVisualStyleBackColor = false;
  1536. //
  1537. // comboBox2
  1538. //
  1539. this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1540. this.comboBox2.FormattingEnabled = true;
  1541. this.comboBox2.Location = new System.Drawing.Point(100, 8);
  1542. this.comboBox2.Margin = new System.Windows.Forms.Padding(4);
  1543. this.comboBox2.Name = "comboBox2";
  1544. this.comboBox2.Size = new System.Drawing.Size(166, 26);
  1545. this.comboBox2.TabIndex = 85;
  1546. //
  1547. // label19
  1548. //
  1549. this.label19.AutoSize = true;
  1550. this.label19.BackColor = System.Drawing.Color.Transparent;
  1551. this.label19.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1552. this.label19.Location = new System.Drawing.Point(4, 14);
  1553. this.label19.Name = "label19";
  1554. this.label19.Size = new System.Drawing.Size(89, 20);
  1555. this.label19.TabIndex = 59;
  1556. this.label19.Text = "选择模板";
  1557. //
  1558. // groupBox1
  1559. //
  1560. this.groupBox1.BackColor = System.Drawing.Color.Transparent;
  1561. this.groupBox1.Controls.Add(this.btnMoveSEMCenter);
  1562. this.groupBox1.Controls.Add(this.txtMoveStageY);
  1563. this.groupBox1.Controls.Add(this.label25);
  1564. this.groupBox1.Controls.Add(this.txtMoveStageX);
  1565. this.groupBox1.Controls.Add(this.label21);
  1566. this.groupBox1.ForeColor = System.Drawing.Color.White;
  1567. this.groupBox1.Location = new System.Drawing.Point(1057, 422);
  1568. this.groupBox1.Margin = new System.Windows.Forms.Padding(4);
  1569. this.groupBox1.Name = "groupBox1";
  1570. this.groupBox1.Padding = new System.Windows.Forms.Padding(4);
  1571. this.groupBox1.Size = new System.Drawing.Size(237, 106);
  1572. this.groupBox1.TabIndex = 90;
  1573. this.groupBox1.TabStop = false;
  1574. this.groupBox1.Text = "移动当前位置至SEM中心";
  1575. //
  1576. // btnMoveSEMCenter
  1577. //
  1578. this.btnMoveSEMCenter.BackgroundImage = global::HOZProject.Properties.Resources.GetLocationBG;
  1579. this.btnMoveSEMCenter.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1580. this.btnMoveSEMCenter.Cursor = System.Windows.Forms.Cursors.Hand;
  1581. this.btnMoveSEMCenter.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
  1582. this.btnMoveSEMCenter.Font = new System.Drawing.Font("宋体", 10F);
  1583. this.btnMoveSEMCenter.ForeColor = System.Drawing.Color.White;
  1584. this.btnMoveSEMCenter.Location = new System.Drawing.Point(164, 28);
  1585. this.btnMoveSEMCenter.Margin = new System.Windows.Forms.Padding(4);
  1586. this.btnMoveSEMCenter.Name = "btnMoveSEMCenter";
  1587. this.btnMoveSEMCenter.Size = new System.Drawing.Size(68, 63);
  1588. this.btnMoveSEMCenter.TabIndex = 91;
  1589. this.btnMoveSEMCenter.Text = "执行";
  1590. this.btnMoveSEMCenter.UseVisualStyleBackColor = true;
  1591. this.btnMoveSEMCenter.Click += new System.EventHandler(this.btnMoveSEMCenter_Click);
  1592. //
  1593. // txtMoveStageY
  1594. //
  1595. this.txtMoveStageY.Location = new System.Drawing.Point(48, 63);
  1596. this.txtMoveStageY.Name = "txtMoveStageY";
  1597. this.txtMoveStageY.Size = new System.Drawing.Size(109, 28);
  1598. this.txtMoveStageY.TabIndex = 62;
  1599. //
  1600. // label25
  1601. //
  1602. this.label25.AutoSize = true;
  1603. this.label25.BackColor = System.Drawing.Color.Transparent;
  1604. this.label25.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1605. this.label25.Location = new System.Drawing.Point(9, 69);
  1606. this.label25.Name = "label25";
  1607. this.label25.Size = new System.Drawing.Size(39, 20);
  1608. this.label25.TabIndex = 63;
  1609. this.label25.Text = "Y轴";
  1610. //
  1611. // txtMoveStageX
  1612. //
  1613. this.txtMoveStageX.Location = new System.Drawing.Point(48, 26);
  1614. this.txtMoveStageX.Name = "txtMoveStageX";
  1615. this.txtMoveStageX.Size = new System.Drawing.Size(109, 28);
  1616. this.txtMoveStageX.TabIndex = 60;
  1617. //
  1618. // label21
  1619. //
  1620. this.label21.AutoSize = true;
  1621. this.label21.BackColor = System.Drawing.Color.Transparent;
  1622. this.label21.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1623. this.label21.Location = new System.Drawing.Point(9, 32);
  1624. this.label21.Name = "label21";
  1625. this.label21.Size = new System.Drawing.Size(39, 20);
  1626. this.label21.TabIndex = 61;
  1627. this.label21.Text = "X轴";
  1628. //
  1629. // btnConnect
  1630. //
  1631. this.btnConnect.BackgroundImage = global::HOZProject.Properties.Resources.ConnectImg;
  1632. this.btnConnect.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1633. this.btnConnect.Cursor = System.Windows.Forms.Cursors.Hand;
  1634. this.btnConnect.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
  1635. this.btnConnect.Location = new System.Drawing.Point(1167, 39);
  1636. this.btnConnect.Margin = new System.Windows.Forms.Padding(4);
  1637. this.btnConnect.Name = "btnConnect";
  1638. this.btnConnect.Size = new System.Drawing.Size(166, 138);
  1639. this.btnConnect.TabIndex = 91;
  1640. this.btnConnect.UseVisualStyleBackColor = true;
  1641. this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
  1642. //
  1643. // btnGetImage
  1644. //
  1645. this.btnGetImage.BackgroundImage = global::HOZProject.Properties.Resources.GetImage;
  1646. this.btnGetImage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1647. this.btnGetImage.Cursor = System.Windows.Forms.Cursors.Hand;
  1648. this.btnGetImage.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
  1649. this.btnGetImage.ForeColor = System.Drawing.Color.White;
  1650. this.btnGetImage.Location = new System.Drawing.Point(1344, 39);
  1651. this.btnGetImage.Margin = new System.Windows.Forms.Padding(4);
  1652. this.btnGetImage.Name = "btnGetImage";
  1653. this.btnGetImage.Size = new System.Drawing.Size(166, 138);
  1654. this.btnGetImage.TabIndex = 91;
  1655. this.btnGetImage.UseVisualStyleBackColor = true;
  1656. this.btnGetImage.Click += new System.EventHandler(this.btnGetImage_Click);
  1657. //
  1658. // btnStop
  1659. //
  1660. this.btnStop.BackColor = System.Drawing.Color.Red;
  1661. this.btnStop.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1662. this.btnStop.Cursor = System.Windows.Forms.Cursors.Hand;
  1663. this.btnStop.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
  1664. this.btnStop.Font = new System.Drawing.Font("宋体", 10F);
  1665. this.btnStop.ForeColor = System.Drawing.Color.White;
  1666. this.btnStop.Location = new System.Drawing.Point(1314, 422);
  1667. this.btnStop.Margin = new System.Windows.Forms.Padding(4);
  1668. this.btnStop.Name = "btnStop";
  1669. this.btnStop.Size = new System.Drawing.Size(123, 106);
  1670. this.btnStop.TabIndex = 83;
  1671. this.btnStop.Text = "停止";
  1672. this.btnStop.UseVisualStyleBackColor = false;
  1673. this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
  1674. //
  1675. // FormUCMain
  1676. //
  1677. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  1678. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1679. this.BackColor = System.Drawing.Color.Black;
  1680. this.BackgroundImage = global::HOZProject.Properties.Resources.UCMain;
  1681. this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1682. this.ClientSize = new System.Drawing.Size(1536, 1020);
  1683. this.Controls.Add(this.btnGetImage);
  1684. this.Controls.Add(this.btnConnect);
  1685. this.Controls.Add(this.groupBox1);
  1686. this.Controls.Add(this.panel18);
  1687. this.Controls.Add(this.panel19);
  1688. this.Controls.Add(this.panel17);
  1689. this.Controls.Add(this.panel20);
  1690. this.Controls.Add(this.lblState);
  1691. this.Controls.Add(this.btnStop);
  1692. this.Controls.Add(this.btnGetStagePosition);
  1693. this.Controls.Add(this.btnAutoBrightness);
  1694. this.Controls.Add(this.btnAutoAstigmatism);
  1695. this.Controls.Add(this.btnAutoWD);
  1696. this.Controls.Add(this.label24);
  1697. this.Controls.Add(this.label23);
  1698. this.Controls.Add(this.label22);
  1699. this.Controls.Add(this.label15);
  1700. this.Controls.Add(this.panel7);
  1701. this.Controls.Add(this.panel12);
  1702. this.Controls.Add(this.panel6);
  1703. this.Controls.Add(this.panel13);
  1704. this.Controls.Add(this.panel14);
  1705. this.Controls.Add(this.panel15);
  1706. this.Controls.Add(this.panel16);
  1707. this.Controls.Add(this.panel8);
  1708. this.Controls.Add(this.panel9);
  1709. this.Controls.Add(this.panel10);
  1710. this.Controls.Add(this.panel11);
  1711. this.Controls.Add(this.panel5);
  1712. this.Controls.Add(this.panel4);
  1713. this.Controls.Add(this.panel3);
  1714. this.Controls.Add(this.panel2);
  1715. this.Controls.Add(this.panel1);
  1716. this.Controls.Add(this.pbHT);
  1717. this.Controls.Add(this.pichide);
  1718. this.Controls.Add(this.picexit);
  1719. this.DoubleBuffered = true;
  1720. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  1721. this.Name = "FormUCMain";
  1722. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
  1723. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  1724. this.Load += new System.EventHandler(this.FormUCMain_Load);
  1725. this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.FormUCMain_MouseDown);
  1726. this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.FormUCMain_MouseMove);
  1727. this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.FormUCMain_MouseUp);
  1728. ((System.ComponentModel.ISupportInitialize)(this.pichide)).EndInit();
  1729. ((System.ComponentModel.ISupportInitialize)(this.picexit)).EndInit();
  1730. this.panel1.ResumeLayout(false);
  1731. this.panel1.PerformLayout();
  1732. this.panel2.ResumeLayout(false);
  1733. this.panel2.PerformLayout();
  1734. this.panel3.ResumeLayout(false);
  1735. this.panel3.PerformLayout();
  1736. this.panel4.ResumeLayout(false);
  1737. this.panel4.PerformLayout();
  1738. this.panel5.ResumeLayout(false);
  1739. this.panel5.PerformLayout();
  1740. this.panel8.ResumeLayout(false);
  1741. this.panel8.PerformLayout();
  1742. this.panel9.ResumeLayout(false);
  1743. this.panel9.PerformLayout();
  1744. this.panel10.ResumeLayout(false);
  1745. this.panel10.PerformLayout();
  1746. this.panel11.ResumeLayout(false);
  1747. this.panel11.PerformLayout();
  1748. this.panel7.ResumeLayout(false);
  1749. this.panel7.PerformLayout();
  1750. this.panel12.ResumeLayout(false);
  1751. this.panel12.PerformLayout();
  1752. this.panel13.ResumeLayout(false);
  1753. this.panel13.PerformLayout();
  1754. this.panel14.ResumeLayout(false);
  1755. this.panel14.PerformLayout();
  1756. this.panel15.ResumeLayout(false);
  1757. this.panel15.PerformLayout();
  1758. this.panel16.ResumeLayout(false);
  1759. this.panel16.PerformLayout();
  1760. ((System.ComponentModel.ISupportInitialize)(this.pbHT)).EndInit();
  1761. this.panel6.ResumeLayout(false);
  1762. this.panel6.PerformLayout();
  1763. this.panel20.ResumeLayout(false);
  1764. this.panel20.PerformLayout();
  1765. this.panel17.ResumeLayout(false);
  1766. this.panel17.PerformLayout();
  1767. this.panel18.ResumeLayout(false);
  1768. this.panel18.PerformLayout();
  1769. this.panel19.ResumeLayout(false);
  1770. this.panel19.PerformLayout();
  1771. this.groupBox1.ResumeLayout(false);
  1772. this.groupBox1.PerformLayout();
  1773. this.ResumeLayout(false);
  1774. this.PerformLayout();
  1775. }
  1776. #endregion
  1777. private System.Windows.Forms.PictureBox pichide;
  1778. private System.Windows.Forms.PictureBox picexit;
  1779. private System.Windows.Forms.Panel panel1;
  1780. private System.Windows.Forms.TextBox txtenlarge;
  1781. private System.Windows.Forms.Label lblFocus;
  1782. private System.Windows.Forms.Button btnenlargeGet;
  1783. private System.Windows.Forms.Button btnenlargeSet;
  1784. private System.Windows.Forms.Panel panel2;
  1785. private System.Windows.Forms.Button btnBrightnessSet;
  1786. private System.Windows.Forms.TextBox txtBrightness;
  1787. private System.Windows.Forms.Label label1;
  1788. private System.Windows.Forms.Button btnBrightnessGet;
  1789. private System.Windows.Forms.Panel panel3;
  1790. private System.Windows.Forms.Button btnTiltAngleSet;
  1791. private System.Windows.Forms.TextBox txtTiltAngle;
  1792. private System.Windows.Forms.Label label2;
  1793. private System.Windows.Forms.Button btnTiltAngleGet;
  1794. private System.Windows.Forms.Panel panel4;
  1795. private System.Windows.Forms.Button btnAstigmatismXSet;
  1796. private System.Windows.Forms.TextBox txtAstigmatismX;
  1797. private System.Windows.Forms.Label label3;
  1798. private System.Windows.Forms.Button btnAstigmatismXGet;
  1799. private System.Windows.Forms.Panel panel5;
  1800. private System.Windows.Forms.TextBox txtPixelSize;
  1801. private System.Windows.Forms.Label label4;
  1802. private System.Windows.Forms.Button btnPixelSizeGet;
  1803. private System.Windows.Forms.Panel panel8;
  1804. private System.Windows.Forms.TextBox txtAstigmatismY;
  1805. private System.Windows.Forms.Label label6;
  1806. private System.Windows.Forms.Button btnAstigmatismYGet;
  1807. private System.Windows.Forms.Panel panel9;
  1808. private System.Windows.Forms.Button btnScanRotationSet;
  1809. private System.Windows.Forms.TextBox txtScanRotation;
  1810. private System.Windows.Forms.Label label7;
  1811. private System.Windows.Forms.Button btnScanRotationGet;
  1812. private System.Windows.Forms.Panel panel10;
  1813. private System.Windows.Forms.Button btnContrastSet;
  1814. private System.Windows.Forms.TextBox txtContrast;
  1815. private System.Windows.Forms.Label label8;
  1816. private System.Windows.Forms.Button btnContrastGet;
  1817. private System.Windows.Forms.Panel panel11;
  1818. private System.Windows.Forms.Button btnWDSet;
  1819. private System.Windows.Forms.TextBox txtWD;
  1820. private System.Windows.Forms.Label label9;
  1821. private System.Windows.Forms.Button btnWDGet;
  1822. private System.Windows.Forms.Panel panel7;
  1823. private System.Windows.Forms.Button btnStageSetM;
  1824. private System.Windows.Forms.TextBox txtStageM;
  1825. private System.Windows.Forms.Label label5;
  1826. private System.Windows.Forms.Button btnStageGetM;
  1827. private System.Windows.Forms.Panel panel12;
  1828. private System.Windows.Forms.Button btnStageSetR;
  1829. private System.Windows.Forms.TextBox txtStageR;
  1830. private System.Windows.Forms.Label label10;
  1831. private System.Windows.Forms.Button btnStageGetR;
  1832. private System.Windows.Forms.Panel panel13;
  1833. private System.Windows.Forms.Button btnStageSetT;
  1834. private System.Windows.Forms.TextBox txtStageT;
  1835. private System.Windows.Forms.Label label11;
  1836. private System.Windows.Forms.Button btnStageGetT;
  1837. private System.Windows.Forms.Panel panel14;
  1838. private System.Windows.Forms.Button btnStageSetZ;
  1839. private System.Windows.Forms.TextBox txtStageZ;
  1840. private System.Windows.Forms.Label label12;
  1841. private System.Windows.Forms.Button btnStageGetZ;
  1842. private System.Windows.Forms.Panel panel15;
  1843. private System.Windows.Forms.Button btnStageSetY;
  1844. private System.Windows.Forms.TextBox txtStageY;
  1845. private System.Windows.Forms.Label label13;
  1846. private System.Windows.Forms.Button btnStageGetY;
  1847. private System.Windows.Forms.Panel panel16;
  1848. private System.Windows.Forms.Button btnStageSetX;
  1849. private System.Windows.Forms.TextBox txtStageX;
  1850. private System.Windows.Forms.Label label14;
  1851. private System.Windows.Forms.Button btnStageGetX;
  1852. private System.Windows.Forms.Button btnAstigmatismYSet;
  1853. private System.Windows.Forms.Label label15;
  1854. private System.Windows.Forms.Label label22;
  1855. private System.Windows.Forms.Label label23;
  1856. private System.Windows.Forms.Label label24;
  1857. private System.Windows.Forms.Button btnAutoWD;
  1858. private System.Windows.Forms.Button btnAutoAstigmatism;
  1859. private System.Windows.Forms.Button btnAutoBrightness;
  1860. private System.Windows.Forms.Button btnGetStagePosition;
  1861. private System.Windows.Forms.PictureBox pbHT;
  1862. private System.Windows.Forms.Label lblState;
  1863. private System.Windows.Forms.Panel panel6;
  1864. private System.Windows.Forms.ComboBox comboBox1;
  1865. private System.Windows.Forms.Label label17;
  1866. private System.Windows.Forms.Button button1;
  1867. private System.Windows.Forms.Panel panel20;
  1868. private System.Windows.Forms.Button button3;
  1869. private System.Windows.Forms.TextBox textBox3;
  1870. private System.Windows.Forms.Label label20;
  1871. private System.Windows.Forms.Button button4;
  1872. private System.Windows.Forms.Panel panel17;
  1873. private System.Windows.Forms.Button button6;
  1874. private System.Windows.Forms.Button button5;
  1875. private System.Windows.Forms.TextBox textBox1;
  1876. private System.Windows.Forms.Label label16;
  1877. private System.Windows.Forms.Panel panel18;
  1878. private System.Windows.Forms.Button button2;
  1879. private System.Windows.Forms.Button button7;
  1880. private System.Windows.Forms.TextBox textBox2;
  1881. private System.Windows.Forms.Label label18;
  1882. private System.Windows.Forms.Panel panel19;
  1883. private System.Windows.Forms.Button button8;
  1884. private System.Windows.Forms.ComboBox comboBox2;
  1885. private System.Windows.Forms.Label label19;
  1886. private System.Windows.Forms.GroupBox groupBox1;
  1887. private System.Windows.Forms.TextBox txtMoveStageY;
  1888. private System.Windows.Forms.Label label25;
  1889. private System.Windows.Forms.TextBox txtMoveStageX;
  1890. private System.Windows.Forms.Label label21;
  1891. private System.Windows.Forms.Button btnMoveSEMCenter;
  1892. private System.Windows.Forms.Button btnConnect;
  1893. private System.Windows.Forms.Button btnGetImage;
  1894. private System.Windows.Forms.Button btnStop;
  1895. }
  1896. }