FormUnitControl.Designer.cs 112 KB

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