FormUCMain.Designer.cs 103 KB

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