FormUnitControl.Designer.cs 108 KB

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