FormUnitControl.Designer.cs 196 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558
  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. System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
  29. System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
  30. System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
  31. System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
  32. System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(65D, 65D);
  33. this.btnGrabImage = new System.Windows.Forms.Button();
  34. this.btnenlargeGet = new System.Windows.Forms.Button();
  35. this.btnWriteXml = new System.Windows.Forms.Button();
  36. this.btnReadXml = new System.Windows.Forms.Button();
  37. this.btnGetStagePosition = new System.Windows.Forms.Button();
  38. this.btnStageSetM = new System.Windows.Forms.Button();
  39. this.txtStageM = new System.Windows.Forms.TextBox();
  40. this.lblStageM = new System.Windows.Forms.Label();
  41. this.label10 = new System.Windows.Forms.Label();
  42. this.btnStageGetM = new System.Windows.Forms.Button();
  43. this.btnStageSetR = new System.Windows.Forms.Button();
  44. this.txtStageR = new System.Windows.Forms.TextBox();
  45. this.lblStageR = new System.Windows.Forms.Label();
  46. this.label13 = new System.Windows.Forms.Label();
  47. this.btnStageGetR = new System.Windows.Forms.Button();
  48. this.btnStageSetT = new System.Windows.Forms.Button();
  49. this.txtStageT = new System.Windows.Forms.TextBox();
  50. this.lblStageT = new System.Windows.Forms.Label();
  51. this.label15 = new System.Windows.Forms.Label();
  52. this.btnStageGetT = new System.Windows.Forms.Button();
  53. this.btnStageSetZ = new System.Windows.Forms.Button();
  54. this.txtStageZ = new System.Windows.Forms.TextBox();
  55. this.lblStageZ = new System.Windows.Forms.Label();
  56. this.label17 = new System.Windows.Forms.Label();
  57. this.btnStageGetZ = new System.Windows.Forms.Button();
  58. this.btnStageSetY = new System.Windows.Forms.Button();
  59. this.txtStageY = new System.Windows.Forms.TextBox();
  60. this.lblStageY = new System.Windows.Forms.Label();
  61. this.label19 = new System.Windows.Forms.Label();
  62. this.btnStageGetY = new System.Windows.Forms.Button();
  63. this.btnStageSetX = new System.Windows.Forms.Button();
  64. this.txtStageX = new System.Windows.Forms.TextBox();
  65. this.lblStageX = new System.Windows.Forms.Label();
  66. this.label21 = new System.Windows.Forms.Label();
  67. this.btnStageGetX = new System.Windows.Forms.Button();
  68. this.btnCloseVoltage = new System.Windows.Forms.Button();
  69. this.btnOpenVoltage = new System.Windows.Forms.Button();
  70. this.label9 = new System.Windows.Forms.Label();
  71. this.btnPixelSizeGet = new System.Windows.Forms.Button();
  72. this.btnScanRotationSet = new System.Windows.Forms.Button();
  73. this.txtScanRotationSet = new System.Windows.Forms.TextBox();
  74. this.label11 = new System.Windows.Forms.Label();
  75. this.btnScanRotationGet = new System.Windows.Forms.Button();
  76. this.btnTiltAngleSet = new System.Windows.Forms.Button();
  77. this.txtTiltAngleSet = new System.Windows.Forms.TextBox();
  78. this.label7 = new System.Windows.Forms.Label();
  79. this.btnTiltAngleGet = new System.Windows.Forms.Button();
  80. this.btnAstigmatismYSet = new System.Windows.Forms.Button();
  81. this.txtAstigmatismYSet = new System.Windows.Forms.TextBox();
  82. this.label5 = new System.Windows.Forms.Label();
  83. this.btnAstigmatismYGet = new System.Windows.Forms.Button();
  84. this.btnAstigmatismXSet = new System.Windows.Forms.Button();
  85. this.txtAstigmatismXSet = new System.Windows.Forms.TextBox();
  86. this.label8 = new System.Windows.Forms.Label();
  87. this.btnAstigmatismXGet = new System.Windows.Forms.Button();
  88. this.btnContrastSet = new System.Windows.Forms.Button();
  89. this.txtContrastSet = new System.Windows.Forms.TextBox();
  90. this.label4 = new System.Windows.Forms.Label();
  91. this.btnContrastGet = new System.Windows.Forms.Button();
  92. this.btnBrightnessSet = new System.Windows.Forms.Button();
  93. this.txtBrightnessSet = new System.Windows.Forms.TextBox();
  94. this.label6 = new System.Windows.Forms.Label();
  95. this.btnBrightnessGet = new System.Windows.Forms.Button();
  96. this.btnWDSet = new System.Windows.Forms.Button();
  97. this.txtWDSet = new System.Windows.Forms.TextBox();
  98. this.label3 = new System.Windows.Forms.Label();
  99. this.btnWDGet = new System.Windows.Forms.Button();
  100. this.btnenlargeSet = new System.Windows.Forms.Button();
  101. this.txtenlargeSet = new System.Windows.Forms.TextBox();
  102. this.label1 = new System.Windows.Forms.Label();
  103. this.panelControl = new System.Windows.Forms.Panel();
  104. this.btnMILL = new System.Windows.Forms.Button();
  105. this.btnFIB = new System.Windows.Forms.Button();
  106. this.panelSEM = new System.Windows.Forms.Panel();
  107. this.btnScanRotationSetOn = new System.Windows.Forms.Button();
  108. this.btnTiltAngleSetOn = new System.Windows.Forms.Button();
  109. this.panelFIB = new System.Windows.Forms.Panel();
  110. this.btnExeEly3 = new System.Windows.Forms.Button();
  111. this.btnFIBStatus = new System.Windows.Forms.Button();
  112. this.btnExeEly2 = new System.Windows.Forms.Button();
  113. this.btnExeEly = new System.Windows.Forms.Button();
  114. this.btnFIBAstigmatismYSet = new System.Windows.Forms.Button();
  115. this.txtFIBAstigmatismY = new System.Windows.Forms.TextBox();
  116. this.label22 = new System.Windows.Forms.Label();
  117. this.btnFIBAstigmatismYGet = new System.Windows.Forms.Button();
  118. this.btnFIBAstigmatismXSet = new System.Windows.Forms.Button();
  119. this.txtFIBAstigmatismX = new System.Windows.Forms.TextBox();
  120. this.btnFIBAstigmatismXGet = new System.Windows.Forms.Button();
  121. this.label23 = new System.Windows.Forms.Label();
  122. this.btnFIBBeamShiftYSet = new System.Windows.Forms.Button();
  123. this.txtFIBBeamShiftY = new System.Windows.Forms.TextBox();
  124. this.label18 = new System.Windows.Forms.Label();
  125. this.btnFIBBeamShiftYGet = new System.Windows.Forms.Button();
  126. this.btnFIBBeamShiftXSet = new System.Windows.Forms.Button();
  127. this.txtFIBBeamShiftX = new System.Windows.Forms.TextBox();
  128. this.btnFIBBeamShiftXGet = new System.Windows.Forms.Button();
  129. this.label20 = new System.Windows.Forms.Label();
  130. this.btnMCF = new System.Windows.Forms.Button();
  131. this.label14 = new System.Windows.Forms.Label();
  132. this.btnFIBMagSet = new System.Windows.Forms.Button();
  133. this.btnFIBMagGet = new System.Windows.Forms.Button();
  134. this.txtFIBMag = new System.Windows.Forms.TextBox();
  135. this.btnFIBWDSet = new System.Windows.Forms.Button();
  136. this.btnFIBWDGet = new System.Windows.Forms.Button();
  137. this.label16 = new System.Windows.Forms.Label();
  138. this.txtFIBWD = new System.Windows.Forms.TextBox();
  139. this.btnTiltAngleSetOff = new System.Windows.Forms.Button();
  140. this.btnScanRotationSetLock = new System.Windows.Forms.Button();
  141. this.btnFrozen = new System.Windows.Forms.Button();
  142. this.btnLive = new System.Windows.Forms.Button();
  143. this.btnAutoStig = new System.Windows.Forms.Button();
  144. this.btnTiltCorrYSet = new System.Windows.Forms.Button();
  145. this.cmbImageStore = new System.Windows.Forms.ComboBox();
  146. this.btnAutoBCCancle = new System.Windows.Forms.Button();
  147. this.lblImageStore = new System.Windows.Forms.Label();
  148. this.txtTiltCorrY = new System.Windows.Forms.TextBox();
  149. this.btnImageStoreSet = new System.Windows.Forms.Button();
  150. this.btnImageStoreGet = new System.Windows.Forms.Button();
  151. this.btnAutoBC = new System.Windows.Forms.Button();
  152. this.label2 = new System.Windows.Forms.Label();
  153. this.btnAutoContrast = new System.Windows.Forms.Button();
  154. this.btnTiltCorrYGet = new System.Windows.Forms.Button();
  155. this.btnAutoBrightness = new System.Windows.Forms.Button();
  156. this.btnTiltCorrXSet = new System.Windows.Forms.Button();
  157. this.txtTiltCorrX = new System.Windows.Forms.TextBox();
  158. this.btnAutoFocus2 = new System.Windows.Forms.Button();
  159. this.btnAutoFocus1 = new System.Windows.Forms.Button();
  160. this.btnTiltCorrXGet = new System.Windows.Forms.Button();
  161. this.label12 = new System.Windows.Forms.Label();
  162. this.lblPixelSizeGet = new System.Windows.Forms.Label();
  163. this.btnTiltCorr = new System.Windows.Forms.Button();
  164. this.btnSEM = new System.Windows.Forms.Button();
  165. this.panelStage = new System.Windows.Forms.Panel();
  166. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  167. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  168. this.btnAbort = new System.Windows.Forms.Button();
  169. this.btnMoveXY = new System.Windows.Forms.Button();
  170. this.label24 = new System.Windows.Forms.Label();
  171. this.tabControl1 = new System.Windows.Forms.TabControl();
  172. this.tabPage1 = new System.Windows.Forms.TabPage();
  173. this.tabPage2 = new System.Windows.Forms.TabPage();
  174. this.lblstate6 = new System.Windows.Forms.Label();
  175. this.label47 = new System.Windows.Forms.Label();
  176. this.lblcentery = new System.Windows.Forms.Label();
  177. this.label49 = new System.Windows.Forms.Label();
  178. this.lblcenterx = new System.Windows.Forms.Label();
  179. this.label51 = new System.Windows.Forms.Label();
  180. this.lblstate5 = new System.Windows.Forms.Label();
  181. this.label53 = new System.Windows.Forms.Label();
  182. this.lbldirection2 = new System.Windows.Forms.Label();
  183. this.label55 = new System.Windows.Forms.Label();
  184. this.lbldegree2 = new System.Windows.Forms.Label();
  185. this.label57 = new System.Windows.Forms.Label();
  186. this.lblstigpath = new System.Windows.Forms.Label();
  187. this.label45 = new System.Windows.Forms.Label();
  188. this.lblfocuspath = new System.Windows.Forms.Label();
  189. this.label43 = new System.Windows.Forms.Label();
  190. this.lblstate4 = new System.Windows.Forms.Label();
  191. this.label37 = new System.Windows.Forms.Label();
  192. this.lbltopcy = new System.Windows.Forms.Label();
  193. this.label39 = new System.Windows.Forms.Label();
  194. this.lbltopcx = new System.Windows.Forms.Label();
  195. this.label41 = new System.Windows.Forms.Label();
  196. this.lblstate3 = new System.Windows.Forms.Label();
  197. this.label35 = new System.Windows.Forms.Label();
  198. this.lblstate2 = new System.Windows.Forms.Label();
  199. this.label27 = new System.Windows.Forms.Label();
  200. this.lbllocationy = new System.Windows.Forms.Label();
  201. this.label31 = new System.Windows.Forms.Label();
  202. this.lbllocationx = new System.Windows.Forms.Label();
  203. this.label33 = new System.Windows.Forms.Label();
  204. this.btnPost8 = new System.Windows.Forms.Button();
  205. this.btnPost7 = new System.Windows.Forms.Button();
  206. this.btnPost6 = new System.Windows.Forms.Button();
  207. this.btnPost5 = new System.Windows.Forms.Button();
  208. this.btnPost4 = new System.Windows.Forms.Button();
  209. this.btnPost3 = new System.Windows.Forms.Button();
  210. this.btnPost2 = new System.Windows.Forms.Button();
  211. this.lblstate1 = new System.Windows.Forms.Label();
  212. this.label30 = new System.Windows.Forms.Label();
  213. this.lbldirection1 = new System.Windows.Forms.Label();
  214. this.label28 = new System.Windows.Forms.Label();
  215. this.lbldegree1 = new System.Windows.Forms.Label();
  216. this.label25 = new System.Windows.Forms.Label();
  217. this.btnPost1 = new System.Windows.Forms.Button();
  218. this.tabPage3 = new System.Windows.Forms.TabPage();
  219. this.cbbWPZD = new System.Windows.Forms.ComboBox();
  220. this.cbbWPZF = new System.Windows.Forms.ComboBox();
  221. this.cbbWQGD = new System.Windows.Forms.ComboBox();
  222. this.cbbWQGF = new System.Windows.Forms.ComboBox();
  223. this.cbbWLZ = new System.Windows.Forms.ComboBox();
  224. this.cbbWXZ = new System.Windows.Forms.ComboBox();
  225. this.cbbWCS = new System.Windows.Forms.ComboBox();
  226. this.cbbWYP = new System.Windows.Forms.ComboBox();
  227. this.txtRXZ = new System.Windows.Forms.TextBox();
  228. this.label26 = new System.Windows.Forms.Label();
  229. this.txtRPZD = new System.Windows.Forms.TextBox();
  230. this.label29 = new System.Windows.Forms.Label();
  231. this.txtRPZF = new System.Windows.Forms.TextBox();
  232. this.label34 = new System.Windows.Forms.Label();
  233. this.txtRQGD = new System.Windows.Forms.TextBox();
  234. this.label36 = new System.Windows.Forms.Label();
  235. this.txtRQGF = new System.Windows.Forms.TextBox();
  236. this.label40 = new System.Windows.Forms.Label();
  237. this.txtRLZ = new System.Windows.Forms.TextBox();
  238. this.label44 = new System.Windows.Forms.Label();
  239. this.chkRIsP = new System.Windows.Forms.CheckBox();
  240. this.label52 = new System.Windows.Forms.Label();
  241. this.txtRYP = new System.Windows.Forms.TextBox();
  242. this.txtRCS = new System.Windows.Forms.TextBox();
  243. this.txtRFIBF = new System.Windows.Forms.TextBox();
  244. this.txtRPTF = new System.Windows.Forms.TextBox();
  245. this.label60 = new System.Windows.Forms.Label();
  246. this.label63 = new System.Windows.Forms.Label();
  247. this.label64 = new System.Windows.Forms.Label();
  248. this.label65 = new System.Windows.Forms.Label();
  249. this.chkRPT = new System.Windows.Forms.CheckBox();
  250. this.label66 = new System.Windows.Forms.Label();
  251. this.label58 = new System.Windows.Forms.Label();
  252. this.label50 = new System.Windows.Forms.Label();
  253. this.label54 = new System.Windows.Forms.Label();
  254. this.label46 = new System.Windows.Forms.Label();
  255. this.label42 = new System.Windows.Forms.Label();
  256. this.label38 = new System.Windows.Forms.Label();
  257. this.chkWIsP = new System.Windows.Forms.CheckBox();
  258. this.label32 = new System.Windows.Forms.Label();
  259. this.txtWFIBF = new System.Windows.Forms.TextBox();
  260. this.txtWPTF = new System.Windows.Forms.TextBox();
  261. this.label48 = new System.Windows.Forms.Label();
  262. this.label56 = new System.Windows.Forms.Label();
  263. this.label59 = new System.Windows.Forms.Label();
  264. this.label61 = new System.Windows.Forms.Label();
  265. this.chkWPT = new System.Windows.Forms.CheckBox();
  266. this.label62 = new System.Windows.Forms.Label();
  267. this.btnReadConfig = new System.Windows.Forms.Button();
  268. this.btnCreateConfig = new System.Windows.Forms.Button();
  269. this.tabPage4 = new System.Windows.Forms.TabPage();
  270. this.lblPs1 = new System.Windows.Forms.Label();
  271. this.btnPsFile = new System.Windows.Forms.Button();
  272. this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
  273. this.label68 = new System.Windows.Forms.Label();
  274. this.label70 = new System.Windows.Forms.Label();
  275. this.label72 = new System.Windows.Forms.Label();
  276. this.label74 = new System.Windows.Forms.Label();
  277. this.label76 = new System.Windows.Forms.Label();
  278. this.label78 = new System.Windows.Forms.Label();
  279. this.txtsample1x = new System.Windows.Forms.TextBox();
  280. this.txtsample1y = new System.Windows.Forms.TextBox();
  281. this.txty = new System.Windows.Forms.TextBox();
  282. this.txtx = new System.Windows.Forms.TextBox();
  283. this.txtdistance = new System.Windows.Forms.TextBox();
  284. this.txtarray = new System.Windows.Forms.TextBox();
  285. this.btnrect = new System.Windows.Forms.Button();
  286. this.btn30 = new System.Windows.Forms.Button();
  287. this.btn45 = new System.Windows.Forms.Button();
  288. this.btn60 = new System.Windows.Forms.Button();
  289. this.panelControl.SuspendLayout();
  290. this.panelSEM.SuspendLayout();
  291. this.panelFIB.SuspendLayout();
  292. this.panelStage.SuspendLayout();
  293. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  294. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  295. this.tabControl1.SuspendLayout();
  296. this.tabPage1.SuspendLayout();
  297. this.tabPage2.SuspendLayout();
  298. this.tabPage3.SuspendLayout();
  299. this.tabPage4.SuspendLayout();
  300. ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
  301. this.SuspendLayout();
  302. //
  303. // btnGrabImage
  304. //
  305. this.btnGrabImage.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  306. this.btnGrabImage.Location = new System.Drawing.Point(605, 11);
  307. this.btnGrabImage.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  308. this.btnGrabImage.Name = "btnGrabImage";
  309. this.btnGrabImage.Size = new System.Drawing.Size(144, 41);
  310. this.btnGrabImage.TabIndex = 1;
  311. this.btnGrabImage.Text = "抓取图像";
  312. this.btnGrabImage.UseVisualStyleBackColor = true;
  313. this.btnGrabImage.Click += new System.EventHandler(this.btnGrabImage_Click);
  314. //
  315. // btnenlargeGet
  316. //
  317. this.btnenlargeGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  318. this.btnenlargeGet.Location = new System.Drawing.Point(243, 20);
  319. this.btnenlargeGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  320. this.btnenlargeGet.Name = "btnenlargeGet";
  321. this.btnenlargeGet.Size = new System.Drawing.Size(54, 34);
  322. this.btnenlargeGet.TabIndex = 2;
  323. this.btnenlargeGet.Text = "读";
  324. this.btnenlargeGet.UseVisualStyleBackColor = true;
  325. this.btnenlargeGet.Click += new System.EventHandler(this.btnenlargeGet_Click);
  326. //
  327. // btnWriteXml
  328. //
  329. this.btnWriteXml.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  330. this.btnWriteXml.Location = new System.Drawing.Point(450, 15);
  331. this.btnWriteXml.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  332. this.btnWriteXml.Name = "btnWriteXml";
  333. this.btnWriteXml.Size = new System.Drawing.Size(144, 41);
  334. this.btnWriteXml.TabIndex = 83;
  335. this.btnWriteXml.Text = "写Xml文件";
  336. this.btnWriteXml.UseVisualStyleBackColor = true;
  337. this.btnWriteXml.Click += new System.EventHandler(this.btnWriteXml_Click);
  338. //
  339. // btnReadXml
  340. //
  341. this.btnReadXml.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  342. this.btnReadXml.Location = new System.Drawing.Point(24, 11);
  343. this.btnReadXml.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  344. this.btnReadXml.Name = "btnReadXml";
  345. this.btnReadXml.Size = new System.Drawing.Size(144, 41);
  346. this.btnReadXml.TabIndex = 82;
  347. this.btnReadXml.Text = "读Xml文件";
  348. this.btnReadXml.UseVisualStyleBackColor = true;
  349. this.btnReadXml.Click += new System.EventHandler(this.btnReadXml_Click);
  350. //
  351. // btnGetStagePosition
  352. //
  353. this.btnGetStagePosition.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  354. this.btnGetStagePosition.Location = new System.Drawing.Point(107, 318);
  355. this.btnGetStagePosition.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  356. this.btnGetStagePosition.Name = "btnGetStagePosition";
  357. this.btnGetStagePosition.Size = new System.Drawing.Size(144, 41);
  358. this.btnGetStagePosition.TabIndex = 81;
  359. this.btnGetStagePosition.Text = "获取位置数组";
  360. this.btnGetStagePosition.UseVisualStyleBackColor = true;
  361. this.btnGetStagePosition.Click += new System.EventHandler(this.btnGetStagePosition_Click);
  362. //
  363. // btnStageSetM
  364. //
  365. this.btnStageSetM.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  366. this.btnStageSetM.Location = new System.Drawing.Point(480, 258);
  367. this.btnStageSetM.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  368. this.btnStageSetM.Name = "btnStageSetM";
  369. this.btnStageSetM.Size = new System.Drawing.Size(79, 34);
  370. this.btnStageSetM.TabIndex = 80;
  371. this.btnStageSetM.Text = "Set";
  372. this.btnStageSetM.UseVisualStyleBackColor = true;
  373. this.btnStageSetM.Click += new System.EventHandler(this.btnStageSetM_Click);
  374. //
  375. // txtStageM
  376. //
  377. this.txtStageM.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  378. this.txtStageM.Location = new System.Drawing.Point(370, 259);
  379. this.txtStageM.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  380. this.txtStageM.Name = "txtStageM";
  381. this.txtStageM.Size = new System.Drawing.Size(100, 30);
  382. this.txtStageM.TabIndex = 79;
  383. this.txtStageM.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  384. //
  385. // lblStageM
  386. //
  387. this.lblStageM.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  388. this.lblStageM.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  389. this.lblStageM.Location = new System.Drawing.Point(194, 258);
  390. this.lblStageM.Name = "lblStageM";
  391. this.lblStageM.Size = new System.Drawing.Size(83, 33);
  392. this.lblStageM.TabIndex = 78;
  393. this.lblStageM.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  394. //
  395. // label10
  396. //
  397. this.label10.AutoSize = true;
  398. this.label10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  399. this.label10.Location = new System.Drawing.Point(54, 264);
  400. this.label10.Name = "label10";
  401. this.label10.Size = new System.Drawing.Size(138, 27);
  402. this.label10.TabIndex = 77;
  403. this.label10.Text = "样品台 M轴:";
  404. //
  405. // btnStageGetM
  406. //
  407. this.btnStageGetM.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  408. this.btnStageGetM.Location = new System.Drawing.Point(285, 258);
  409. this.btnStageGetM.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  410. this.btnStageGetM.Name = "btnStageGetM";
  411. this.btnStageGetM.Size = new System.Drawing.Size(79, 34);
  412. this.btnStageGetM.TabIndex = 76;
  413. this.btnStageGetM.Text = "Get";
  414. this.btnStageGetM.UseVisualStyleBackColor = true;
  415. this.btnStageGetM.Click += new System.EventHandler(this.btnStageGetM_Click);
  416. //
  417. // btnStageSetR
  418. //
  419. this.btnStageSetR.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  420. this.btnStageSetR.Location = new System.Drawing.Point(480, 220);
  421. this.btnStageSetR.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  422. this.btnStageSetR.Name = "btnStageSetR";
  423. this.btnStageSetR.Size = new System.Drawing.Size(79, 34);
  424. this.btnStageSetR.TabIndex = 75;
  425. this.btnStageSetR.Text = "Set";
  426. this.btnStageSetR.UseVisualStyleBackColor = true;
  427. this.btnStageSetR.Click += new System.EventHandler(this.btnStageSetR_Click);
  428. //
  429. // txtStageR
  430. //
  431. this.txtStageR.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  432. this.txtStageR.Location = new System.Drawing.Point(370, 223);
  433. this.txtStageR.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  434. this.txtStageR.Name = "txtStageR";
  435. this.txtStageR.Size = new System.Drawing.Size(100, 30);
  436. this.txtStageR.TabIndex = 74;
  437. this.txtStageR.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  438. //
  439. // lblStageR
  440. //
  441. this.lblStageR.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  442. this.lblStageR.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  443. this.lblStageR.Location = new System.Drawing.Point(194, 220);
  444. this.lblStageR.Name = "lblStageR";
  445. this.lblStageR.Size = new System.Drawing.Size(83, 33);
  446. this.lblStageR.TabIndex = 73;
  447. this.lblStageR.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  448. //
  449. // label13
  450. //
  451. this.label13.AutoSize = true;
  452. this.label13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  453. this.label13.Location = new System.Drawing.Point(54, 228);
  454. this.label13.Name = "label13";
  455. this.label13.Size = new System.Drawing.Size(131, 27);
  456. this.label13.TabIndex = 72;
  457. this.label13.Text = "样品台 R轴:";
  458. //
  459. // btnStageGetR
  460. //
  461. this.btnStageGetR.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  462. this.btnStageGetR.Location = new System.Drawing.Point(285, 220);
  463. this.btnStageGetR.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  464. this.btnStageGetR.Name = "btnStageGetR";
  465. this.btnStageGetR.Size = new System.Drawing.Size(79, 34);
  466. this.btnStageGetR.TabIndex = 71;
  467. this.btnStageGetR.Text = "Get";
  468. this.btnStageGetR.UseVisualStyleBackColor = true;
  469. this.btnStageGetR.Click += new System.EventHandler(this.btnStageGetR_Click);
  470. //
  471. // btnStageSetT
  472. //
  473. this.btnStageSetT.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  474. this.btnStageSetT.Location = new System.Drawing.Point(480, 184);
  475. this.btnStageSetT.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  476. this.btnStageSetT.Name = "btnStageSetT";
  477. this.btnStageSetT.Size = new System.Drawing.Size(79, 34);
  478. this.btnStageSetT.TabIndex = 70;
  479. this.btnStageSetT.Text = "Set";
  480. this.btnStageSetT.UseVisualStyleBackColor = true;
  481. this.btnStageSetT.Click += new System.EventHandler(this.btnStageSetT_Click);
  482. //
  483. // txtStageT
  484. //
  485. this.txtStageT.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  486. this.txtStageT.Location = new System.Drawing.Point(370, 185);
  487. this.txtStageT.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  488. this.txtStageT.Name = "txtStageT";
  489. this.txtStageT.Size = new System.Drawing.Size(100, 30);
  490. this.txtStageT.TabIndex = 69;
  491. this.txtStageT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  492. //
  493. // lblStageT
  494. //
  495. this.lblStageT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  496. this.lblStageT.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  497. this.lblStageT.Location = new System.Drawing.Point(194, 184);
  498. this.lblStageT.Name = "lblStageT";
  499. this.lblStageT.Size = new System.Drawing.Size(83, 33);
  500. this.lblStageT.TabIndex = 68;
  501. this.lblStageT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  502. //
  503. // label15
  504. //
  505. this.label15.AutoSize = true;
  506. this.label15.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  507. this.label15.Location = new System.Drawing.Point(54, 190);
  508. this.label15.Name = "label15";
  509. this.label15.Size = new System.Drawing.Size(129, 27);
  510. this.label15.TabIndex = 67;
  511. this.label15.Text = "样品台 T轴:";
  512. //
  513. // btnStageGetT
  514. //
  515. this.btnStageGetT.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  516. this.btnStageGetT.Location = new System.Drawing.Point(285, 184);
  517. this.btnStageGetT.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  518. this.btnStageGetT.Name = "btnStageGetT";
  519. this.btnStageGetT.Size = new System.Drawing.Size(79, 34);
  520. this.btnStageGetT.TabIndex = 66;
  521. this.btnStageGetT.Text = "Get";
  522. this.btnStageGetT.UseVisualStyleBackColor = true;
  523. this.btnStageGetT.Click += new System.EventHandler(this.btnStageGetT_Click);
  524. //
  525. // btnStageSetZ
  526. //
  527. this.btnStageSetZ.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  528. this.btnStageSetZ.Location = new System.Drawing.Point(480, 148);
  529. this.btnStageSetZ.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  530. this.btnStageSetZ.Name = "btnStageSetZ";
  531. this.btnStageSetZ.Size = new System.Drawing.Size(79, 34);
  532. this.btnStageSetZ.TabIndex = 65;
  533. this.btnStageSetZ.Text = "Set";
  534. this.btnStageSetZ.UseVisualStyleBackColor = true;
  535. this.btnStageSetZ.Click += new System.EventHandler(this.btnStageSetZ_Click);
  536. //
  537. // txtStageZ
  538. //
  539. this.txtStageZ.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  540. this.txtStageZ.Location = new System.Drawing.Point(370, 148);
  541. this.txtStageZ.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  542. this.txtStageZ.Name = "txtStageZ";
  543. this.txtStageZ.Size = new System.Drawing.Size(100, 30);
  544. this.txtStageZ.TabIndex = 64;
  545. this.txtStageZ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  546. //
  547. // lblStageZ
  548. //
  549. this.lblStageZ.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  550. this.lblStageZ.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  551. this.lblStageZ.Location = new System.Drawing.Point(194, 148);
  552. this.lblStageZ.Name = "lblStageZ";
  553. this.lblStageZ.Size = new System.Drawing.Size(83, 33);
  554. this.lblStageZ.TabIndex = 63;
  555. this.lblStageZ.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  556. //
  557. // label17
  558. //
  559. this.label17.AutoSize = true;
  560. this.label17.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  561. this.label17.Location = new System.Drawing.Point(54, 153);
  562. this.label17.Name = "label17";
  563. this.label17.Size = new System.Drawing.Size(130, 27);
  564. this.label17.TabIndex = 62;
  565. this.label17.Text = "样品台 Z轴:";
  566. //
  567. // btnStageGetZ
  568. //
  569. this.btnStageGetZ.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  570. this.btnStageGetZ.Location = new System.Drawing.Point(285, 148);
  571. this.btnStageGetZ.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  572. this.btnStageGetZ.Name = "btnStageGetZ";
  573. this.btnStageGetZ.Size = new System.Drawing.Size(79, 34);
  574. this.btnStageGetZ.TabIndex = 61;
  575. this.btnStageGetZ.Text = "Get";
  576. this.btnStageGetZ.UseVisualStyleBackColor = true;
  577. this.btnStageGetZ.Click += new System.EventHandler(this.btnStageGetZ_Click);
  578. //
  579. // btnStageSetY
  580. //
  581. this.btnStageSetY.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  582. this.btnStageSetY.Location = new System.Drawing.Point(480, 110);
  583. this.btnStageSetY.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  584. this.btnStageSetY.Name = "btnStageSetY";
  585. this.btnStageSetY.Size = new System.Drawing.Size(79, 34);
  586. this.btnStageSetY.TabIndex = 60;
  587. this.btnStageSetY.Text = "Set";
  588. this.btnStageSetY.UseVisualStyleBackColor = true;
  589. this.btnStageSetY.Click += new System.EventHandler(this.btnStageSetY_Click);
  590. //
  591. // txtStageY
  592. //
  593. this.txtStageY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  594. this.txtStageY.Location = new System.Drawing.Point(370, 110);
  595. this.txtStageY.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  596. this.txtStageY.Name = "txtStageY";
  597. this.txtStageY.Size = new System.Drawing.Size(100, 30);
  598. this.txtStageY.TabIndex = 59;
  599. this.txtStageY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  600. //
  601. // lblStageY
  602. //
  603. this.lblStageY.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  604. this.lblStageY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  605. this.lblStageY.Location = new System.Drawing.Point(194, 110);
  606. this.lblStageY.Name = "lblStageY";
  607. this.lblStageY.Size = new System.Drawing.Size(83, 33);
  608. this.lblStageY.TabIndex = 58;
  609. this.lblStageY.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  610. //
  611. // label19
  612. //
  613. this.label19.AutoSize = true;
  614. this.label19.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  615. this.label19.Location = new System.Drawing.Point(54, 115);
  616. this.label19.Name = "label19";
  617. this.label19.Size = new System.Drawing.Size(130, 27);
  618. this.label19.TabIndex = 57;
  619. this.label19.Text = "样品台 Y轴:";
  620. //
  621. // btnStageGetY
  622. //
  623. this.btnStageGetY.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  624. this.btnStageGetY.Location = new System.Drawing.Point(285, 110);
  625. this.btnStageGetY.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  626. this.btnStageGetY.Name = "btnStageGetY";
  627. this.btnStageGetY.Size = new System.Drawing.Size(79, 34);
  628. this.btnStageGetY.TabIndex = 56;
  629. this.btnStageGetY.Text = "Get";
  630. this.btnStageGetY.UseVisualStyleBackColor = true;
  631. this.btnStageGetY.Click += new System.EventHandler(this.btnStageGetY_Click);
  632. //
  633. // btnStageSetX
  634. //
  635. this.btnStageSetX.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  636. this.btnStageSetX.Location = new System.Drawing.Point(480, 73);
  637. this.btnStageSetX.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  638. this.btnStageSetX.Name = "btnStageSetX";
  639. this.btnStageSetX.Size = new System.Drawing.Size(79, 34);
  640. this.btnStageSetX.TabIndex = 55;
  641. this.btnStageSetX.Text = "Set";
  642. this.btnStageSetX.UseVisualStyleBackColor = true;
  643. this.btnStageSetX.Click += new System.EventHandler(this.btnStageSetX_Click);
  644. //
  645. // txtStageX
  646. //
  647. this.txtStageX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  648. this.txtStageX.Location = new System.Drawing.Point(370, 74);
  649. this.txtStageX.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  650. this.txtStageX.Name = "txtStageX";
  651. this.txtStageX.Size = new System.Drawing.Size(100, 30);
  652. this.txtStageX.TabIndex = 54;
  653. this.txtStageX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  654. //
  655. // lblStageX
  656. //
  657. this.lblStageX.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  658. this.lblStageX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  659. this.lblStageX.Location = new System.Drawing.Point(194, 73);
  660. this.lblStageX.Name = "lblStageX";
  661. this.lblStageX.Size = new System.Drawing.Size(83, 33);
  662. this.lblStageX.TabIndex = 53;
  663. this.lblStageX.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  664. //
  665. // label21
  666. //
  667. this.label21.AutoSize = true;
  668. this.label21.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  669. this.label21.Location = new System.Drawing.Point(54, 79);
  670. this.label21.Name = "label21";
  671. this.label21.Size = new System.Drawing.Size(131, 27);
  672. this.label21.TabIndex = 52;
  673. this.label21.Text = "样品台 X轴:";
  674. //
  675. // btnStageGetX
  676. //
  677. this.btnStageGetX.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  678. this.btnStageGetX.Location = new System.Drawing.Point(285, 73);
  679. this.btnStageGetX.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  680. this.btnStageGetX.Name = "btnStageGetX";
  681. this.btnStageGetX.Size = new System.Drawing.Size(79, 34);
  682. this.btnStageGetX.TabIndex = 51;
  683. this.btnStageGetX.Text = "Get";
  684. this.btnStageGetX.UseVisualStyleBackColor = true;
  685. this.btnStageGetX.Click += new System.EventHandler(this.btnStageGetX_Click);
  686. //
  687. // btnCloseVoltage
  688. //
  689. this.btnCloseVoltage.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  690. this.btnCloseVoltage.Location = new System.Drawing.Point(591, 69);
  691. this.btnCloseVoltage.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  692. this.btnCloseVoltage.Name = "btnCloseVoltage";
  693. this.btnCloseVoltage.Size = new System.Drawing.Size(144, 41);
  694. this.btnCloseVoltage.TabIndex = 50;
  695. this.btnCloseVoltage.Text = "关闭电压";
  696. this.btnCloseVoltage.UseVisualStyleBackColor = true;
  697. this.btnCloseVoltage.Click += new System.EventHandler(this.btnCloseVoltage_Click);
  698. //
  699. // btnOpenVoltage
  700. //
  701. this.btnOpenVoltage.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  702. this.btnOpenVoltage.Location = new System.Drawing.Point(591, 18);
  703. this.btnOpenVoltage.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  704. this.btnOpenVoltage.Name = "btnOpenVoltage";
  705. this.btnOpenVoltage.Size = new System.Drawing.Size(144, 41);
  706. this.btnOpenVoltage.TabIndex = 49;
  707. this.btnOpenVoltage.Text = "开启电压";
  708. this.btnOpenVoltage.UseVisualStyleBackColor = true;
  709. this.btnOpenVoltage.Click += new System.EventHandler(this.btnOpenVoltage_Click);
  710. //
  711. // label9
  712. //
  713. this.label9.AutoSize = true;
  714. this.label9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  715. this.label9.Location = new System.Drawing.Point(12, 435);
  716. this.label9.Name = "label9";
  717. this.label9.Size = new System.Drawing.Size(104, 27);
  718. this.label9.TabIndex = 45;
  719. this.label9.Text = "Pixel Size:";
  720. //
  721. // btnPixelSizeGet
  722. //
  723. this.btnPixelSizeGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  724. this.btnPixelSizeGet.ForeColor = System.Drawing.Color.Black;
  725. this.btnPixelSizeGet.Location = new System.Drawing.Point(348, 431);
  726. this.btnPixelSizeGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  727. this.btnPixelSizeGet.Name = "btnPixelSizeGet";
  728. this.btnPixelSizeGet.Size = new System.Drawing.Size(54, 34);
  729. this.btnPixelSizeGet.TabIndex = 44;
  730. this.btnPixelSizeGet.Text = "读";
  731. this.btnPixelSizeGet.UseVisualStyleBackColor = true;
  732. this.btnPixelSizeGet.Click += new System.EventHandler(this.btnPixelSizeGet_Click);
  733. //
  734. // btnScanRotationSet
  735. //
  736. this.btnScanRotationSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  737. this.btnScanRotationSet.Location = new System.Drawing.Point(296, 367);
  738. this.btnScanRotationSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  739. this.btnScanRotationSet.Name = "btnScanRotationSet";
  740. this.btnScanRotationSet.Size = new System.Drawing.Size(54, 34);
  741. this.btnScanRotationSet.TabIndex = 43;
  742. this.btnScanRotationSet.Text = "写";
  743. this.btnScanRotationSet.UseVisualStyleBackColor = true;
  744. this.btnScanRotationSet.Click += new System.EventHandler(this.btnScanRotationSet_Click);
  745. //
  746. // txtScanRotationSet
  747. //
  748. this.txtScanRotationSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  749. this.txtScanRotationSet.Location = new System.Drawing.Point(154, 369);
  750. this.txtScanRotationSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  751. this.txtScanRotationSet.Name = "txtScanRotationSet";
  752. this.txtScanRotationSet.Size = new System.Drawing.Size(85, 30);
  753. this.txtScanRotationSet.TabIndex = 42;
  754. this.txtScanRotationSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  755. //
  756. // label11
  757. //
  758. this.label11.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  759. this.label11.Location = new System.Drawing.Point(12, 353);
  760. this.label11.Name = "label11";
  761. this.label11.Size = new System.Drawing.Size(125, 62);
  762. this.label11.TabIndex = 40;
  763. this.label11.Text = "Scan Rotate角度:";
  764. //
  765. // btnScanRotationGet
  766. //
  767. this.btnScanRotationGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  768. this.btnScanRotationGet.Location = new System.Drawing.Point(243, 367);
  769. this.btnScanRotationGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  770. this.btnScanRotationGet.Name = "btnScanRotationGet";
  771. this.btnScanRotationGet.Size = new System.Drawing.Size(54, 34);
  772. this.btnScanRotationGet.TabIndex = 39;
  773. this.btnScanRotationGet.Text = "读";
  774. this.btnScanRotationGet.UseVisualStyleBackColor = true;
  775. this.btnScanRotationGet.Click += new System.EventHandler(this.btnScanRotationGet_Click);
  776. //
  777. // btnTiltAngleSet
  778. //
  779. this.btnTiltAngleSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  780. this.btnTiltAngleSet.Location = new System.Drawing.Point(296, 302);
  781. this.btnTiltAngleSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  782. this.btnTiltAngleSet.Name = "btnTiltAngleSet";
  783. this.btnTiltAngleSet.Size = new System.Drawing.Size(54, 34);
  784. this.btnTiltAngleSet.TabIndex = 38;
  785. this.btnTiltAngleSet.Text = "写";
  786. this.btnTiltAngleSet.UseVisualStyleBackColor = true;
  787. this.btnTiltAngleSet.Click += new System.EventHandler(this.btnTiltAngleSet_Click);
  788. //
  789. // txtTiltAngleSet
  790. //
  791. this.txtTiltAngleSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  792. this.txtTiltAngleSet.Location = new System.Drawing.Point(154, 304);
  793. this.txtTiltAngleSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  794. this.txtTiltAngleSet.Name = "txtTiltAngleSet";
  795. this.txtTiltAngleSet.Size = new System.Drawing.Size(85, 30);
  796. this.txtTiltAngleSet.TabIndex = 37;
  797. this.txtTiltAngleSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  798. //
  799. // label7
  800. //
  801. this.label7.AutoSize = true;
  802. this.label7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  803. this.label7.Location = new System.Drawing.Point(14, 306);
  804. this.label7.Name = "label7";
  805. this.label7.Size = new System.Drawing.Size(112, 27);
  806. this.label7.TabIndex = 35;
  807. this.label7.Text = "角度补偿:";
  808. //
  809. // btnTiltAngleGet
  810. //
  811. this.btnTiltAngleGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  812. this.btnTiltAngleGet.Location = new System.Drawing.Point(243, 302);
  813. this.btnTiltAngleGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  814. this.btnTiltAngleGet.Name = "btnTiltAngleGet";
  815. this.btnTiltAngleGet.Size = new System.Drawing.Size(54, 34);
  816. this.btnTiltAngleGet.TabIndex = 34;
  817. this.btnTiltAngleGet.Text = "读";
  818. this.btnTiltAngleGet.UseVisualStyleBackColor = true;
  819. this.btnTiltAngleGet.Click += new System.EventHandler(this.btnTiltAngleGet_Click);
  820. //
  821. // btnAstigmatismYSet
  822. //
  823. this.btnAstigmatismYSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  824. this.btnAstigmatismYSet.Location = new System.Drawing.Point(296, 255);
  825. this.btnAstigmatismYSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  826. this.btnAstigmatismYSet.Name = "btnAstigmatismYSet";
  827. this.btnAstigmatismYSet.Size = new System.Drawing.Size(54, 34);
  828. this.btnAstigmatismYSet.TabIndex = 33;
  829. this.btnAstigmatismYSet.Text = "写";
  830. this.btnAstigmatismYSet.UseVisualStyleBackColor = true;
  831. this.btnAstigmatismYSet.Click += new System.EventHandler(this.btnAstigmatismYSet_Click);
  832. //
  833. // txtAstigmatismYSet
  834. //
  835. this.txtAstigmatismYSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  836. this.txtAstigmatismYSet.Location = new System.Drawing.Point(154, 257);
  837. this.txtAstigmatismYSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  838. this.txtAstigmatismYSet.Name = "txtAstigmatismYSet";
  839. this.txtAstigmatismYSet.Size = new System.Drawing.Size(85, 30);
  840. this.txtAstigmatismYSet.TabIndex = 32;
  841. this.txtAstigmatismYSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  842. //
  843. // label5
  844. //
  845. this.label5.AutoSize = true;
  846. this.label5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  847. this.label5.Location = new System.Drawing.Point(12, 259);
  848. this.label5.Name = "label5";
  849. this.label5.Size = new System.Drawing.Size(104, 27);
  850. this.label5.TabIndex = 30;
  851. this.label5.Text = "消像散Y:";
  852. //
  853. // btnAstigmatismYGet
  854. //
  855. this.btnAstigmatismYGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  856. this.btnAstigmatismYGet.Location = new System.Drawing.Point(243, 255);
  857. this.btnAstigmatismYGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  858. this.btnAstigmatismYGet.Name = "btnAstigmatismYGet";
  859. this.btnAstigmatismYGet.Size = new System.Drawing.Size(54, 34);
  860. this.btnAstigmatismYGet.TabIndex = 29;
  861. this.btnAstigmatismYGet.Text = "读";
  862. this.btnAstigmatismYGet.UseVisualStyleBackColor = true;
  863. this.btnAstigmatismYGet.Click += new System.EventHandler(this.btnAstigmatismYGet_Click);
  864. //
  865. // btnAstigmatismXSet
  866. //
  867. this.btnAstigmatismXSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  868. this.btnAstigmatismXSet.Location = new System.Drawing.Point(296, 208);
  869. this.btnAstigmatismXSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  870. this.btnAstigmatismXSet.Name = "btnAstigmatismXSet";
  871. this.btnAstigmatismXSet.Size = new System.Drawing.Size(54, 34);
  872. this.btnAstigmatismXSet.TabIndex = 28;
  873. this.btnAstigmatismXSet.Text = "写";
  874. this.btnAstigmatismXSet.UseVisualStyleBackColor = true;
  875. this.btnAstigmatismXSet.Click += new System.EventHandler(this.btnAstigmatismXSet_Click);
  876. //
  877. // txtAstigmatismXSet
  878. //
  879. this.txtAstigmatismXSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  880. this.txtAstigmatismXSet.Location = new System.Drawing.Point(154, 210);
  881. this.txtAstigmatismXSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  882. this.txtAstigmatismXSet.Name = "txtAstigmatismXSet";
  883. this.txtAstigmatismXSet.Size = new System.Drawing.Size(85, 30);
  884. this.txtAstigmatismXSet.TabIndex = 27;
  885. this.txtAstigmatismXSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  886. //
  887. // label8
  888. //
  889. this.label8.AutoSize = true;
  890. this.label8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  891. this.label8.Location = new System.Drawing.Point(12, 212);
  892. this.label8.Name = "label8";
  893. this.label8.Size = new System.Drawing.Size(105, 27);
  894. this.label8.TabIndex = 25;
  895. this.label8.Text = "消像散X:";
  896. //
  897. // btnAstigmatismXGet
  898. //
  899. this.btnAstigmatismXGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  900. this.btnAstigmatismXGet.Location = new System.Drawing.Point(243, 208);
  901. this.btnAstigmatismXGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  902. this.btnAstigmatismXGet.Name = "btnAstigmatismXGet";
  903. this.btnAstigmatismXGet.Size = new System.Drawing.Size(54, 34);
  904. this.btnAstigmatismXGet.TabIndex = 24;
  905. this.btnAstigmatismXGet.Text = "读";
  906. this.btnAstigmatismXGet.UseVisualStyleBackColor = true;
  907. this.btnAstigmatismXGet.Click += new System.EventHandler(this.btnAstigmatismXGet_Click);
  908. //
  909. // btnContrastSet
  910. //
  911. this.btnContrastSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  912. this.btnContrastSet.Location = new System.Drawing.Point(296, 161);
  913. this.btnContrastSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  914. this.btnContrastSet.Name = "btnContrastSet";
  915. this.btnContrastSet.Size = new System.Drawing.Size(54, 34);
  916. this.btnContrastSet.TabIndex = 23;
  917. this.btnContrastSet.Text = "写";
  918. this.btnContrastSet.UseVisualStyleBackColor = true;
  919. this.btnContrastSet.Click += new System.EventHandler(this.btnContrastSet_Click);
  920. //
  921. // txtContrastSet
  922. //
  923. this.txtContrastSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  924. this.txtContrastSet.Location = new System.Drawing.Point(154, 163);
  925. this.txtContrastSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  926. this.txtContrastSet.Name = "txtContrastSet";
  927. this.txtContrastSet.Size = new System.Drawing.Size(85, 30);
  928. this.txtContrastSet.TabIndex = 22;
  929. this.txtContrastSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  930. //
  931. // label4
  932. //
  933. this.label4.AutoSize = true;
  934. this.label4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  935. this.label4.Location = new System.Drawing.Point(12, 165);
  936. this.label4.Name = "label4";
  937. this.label4.Size = new System.Drawing.Size(92, 27);
  938. this.label4.TabIndex = 20;
  939. this.label4.Text = "对比度:";
  940. //
  941. // btnContrastGet
  942. //
  943. this.btnContrastGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  944. this.btnContrastGet.Location = new System.Drawing.Point(243, 161);
  945. this.btnContrastGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  946. this.btnContrastGet.Name = "btnContrastGet";
  947. this.btnContrastGet.Size = new System.Drawing.Size(54, 34);
  948. this.btnContrastGet.TabIndex = 19;
  949. this.btnContrastGet.Text = "读";
  950. this.btnContrastGet.UseVisualStyleBackColor = true;
  951. this.btnContrastGet.Click += new System.EventHandler(this.btnContrastGet_Click);
  952. //
  953. // btnBrightnessSet
  954. //
  955. this.btnBrightnessSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  956. this.btnBrightnessSet.Location = new System.Drawing.Point(296, 114);
  957. this.btnBrightnessSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  958. this.btnBrightnessSet.Name = "btnBrightnessSet";
  959. this.btnBrightnessSet.Size = new System.Drawing.Size(54, 34);
  960. this.btnBrightnessSet.TabIndex = 18;
  961. this.btnBrightnessSet.Text = "写";
  962. this.btnBrightnessSet.UseVisualStyleBackColor = true;
  963. this.btnBrightnessSet.Click += new System.EventHandler(this.btnBrightnessSet_Click);
  964. //
  965. // txtBrightnessSet
  966. //
  967. this.txtBrightnessSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  968. this.txtBrightnessSet.Location = new System.Drawing.Point(154, 116);
  969. this.txtBrightnessSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  970. this.txtBrightnessSet.Name = "txtBrightnessSet";
  971. this.txtBrightnessSet.Size = new System.Drawing.Size(85, 30);
  972. this.txtBrightnessSet.TabIndex = 17;
  973. this.txtBrightnessSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  974. //
  975. // label6
  976. //
  977. this.label6.AutoSize = true;
  978. this.label6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  979. this.label6.Location = new System.Drawing.Point(12, 118);
  980. this.label6.Name = "label6";
  981. this.label6.Size = new System.Drawing.Size(72, 27);
  982. this.label6.TabIndex = 15;
  983. this.label6.Text = "亮度:";
  984. //
  985. // btnBrightnessGet
  986. //
  987. this.btnBrightnessGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  988. this.btnBrightnessGet.Location = new System.Drawing.Point(243, 114);
  989. this.btnBrightnessGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  990. this.btnBrightnessGet.Name = "btnBrightnessGet";
  991. this.btnBrightnessGet.Size = new System.Drawing.Size(54, 34);
  992. this.btnBrightnessGet.TabIndex = 14;
  993. this.btnBrightnessGet.Text = "读";
  994. this.btnBrightnessGet.UseVisualStyleBackColor = true;
  995. this.btnBrightnessGet.Click += new System.EventHandler(this.btnBrightnessGet_Click);
  996. //
  997. // btnWDSet
  998. //
  999. this.btnWDSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1000. this.btnWDSet.Location = new System.Drawing.Point(296, 67);
  1001. this.btnWDSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1002. this.btnWDSet.Name = "btnWDSet";
  1003. this.btnWDSet.Size = new System.Drawing.Size(54, 34);
  1004. this.btnWDSet.TabIndex = 13;
  1005. this.btnWDSet.Text = "写";
  1006. this.btnWDSet.UseVisualStyleBackColor = true;
  1007. this.btnWDSet.Click += new System.EventHandler(this.btnWDSet_Click);
  1008. //
  1009. // txtWDSet
  1010. //
  1011. this.txtWDSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1012. this.txtWDSet.Location = new System.Drawing.Point(154, 69);
  1013. this.txtWDSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1014. this.txtWDSet.Name = "txtWDSet";
  1015. this.txtWDSet.Size = new System.Drawing.Size(85, 30);
  1016. this.txtWDSet.TabIndex = 12;
  1017. this.txtWDSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1018. //
  1019. // label3
  1020. //
  1021. this.label3.AutoSize = true;
  1022. this.label3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1023. this.label3.Location = new System.Drawing.Point(12, 71);
  1024. this.label3.Name = "label3";
  1025. this.label3.Size = new System.Drawing.Size(72, 27);
  1026. this.label3.TabIndex = 10;
  1027. this.label3.Text = "焦距:";
  1028. //
  1029. // btnWDGet
  1030. //
  1031. this.btnWDGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1032. this.btnWDGet.Location = new System.Drawing.Point(243, 67);
  1033. this.btnWDGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1034. this.btnWDGet.Name = "btnWDGet";
  1035. this.btnWDGet.Size = new System.Drawing.Size(54, 34);
  1036. this.btnWDGet.TabIndex = 9;
  1037. this.btnWDGet.Text = "读";
  1038. this.btnWDGet.UseVisualStyleBackColor = true;
  1039. this.btnWDGet.Click += new System.EventHandler(this.btnWDGet_Click);
  1040. //
  1041. // btnenlargeSet
  1042. //
  1043. this.btnenlargeSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1044. this.btnenlargeSet.Location = new System.Drawing.Point(296, 20);
  1045. this.btnenlargeSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1046. this.btnenlargeSet.Name = "btnenlargeSet";
  1047. this.btnenlargeSet.Size = new System.Drawing.Size(54, 34);
  1048. this.btnenlargeSet.TabIndex = 8;
  1049. this.btnenlargeSet.Text = "写";
  1050. this.btnenlargeSet.UseVisualStyleBackColor = true;
  1051. this.btnenlargeSet.Click += new System.EventHandler(this.btnenlargeSet_Click);
  1052. //
  1053. // txtenlargeSet
  1054. //
  1055. this.txtenlargeSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1056. this.txtenlargeSet.Location = new System.Drawing.Point(154, 22);
  1057. this.txtenlargeSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1058. this.txtenlargeSet.Name = "txtenlargeSet";
  1059. this.txtenlargeSet.Size = new System.Drawing.Size(85, 30);
  1060. this.txtenlargeSet.TabIndex = 7;
  1061. this.txtenlargeSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1062. //
  1063. // label1
  1064. //
  1065. this.label1.AutoSize = true;
  1066. this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1067. this.label1.Location = new System.Drawing.Point(12, 24);
  1068. this.label1.Name = "label1";
  1069. this.label1.Size = new System.Drawing.Size(72, 27);
  1070. this.label1.TabIndex = 5;
  1071. this.label1.Text = "缩放:";
  1072. //
  1073. // panelControl
  1074. //
  1075. this.panelControl.Controls.Add(this.btnMILL);
  1076. this.panelControl.Controls.Add(this.btnGrabImage);
  1077. this.panelControl.Controls.Add(this.btnFIB);
  1078. this.panelControl.Controls.Add(this.panelSEM);
  1079. this.panelControl.Controls.Add(this.btnSEM);
  1080. this.panelControl.Dock = System.Windows.Forms.DockStyle.Fill;
  1081. this.panelControl.Location = new System.Drawing.Point(3, 3);
  1082. this.panelControl.Name = "panelControl";
  1083. this.panelControl.Size = new System.Drawing.Size(780, 565);
  1084. this.panelControl.TabIndex = 20;
  1085. //
  1086. // btnMILL
  1087. //
  1088. this.btnMILL.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1089. this.btnMILL.Location = new System.Drawing.Point(313, 10);
  1090. this.btnMILL.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1091. this.btnMILL.Name = "btnMILL";
  1092. this.btnMILL.Size = new System.Drawing.Size(144, 41);
  1093. this.btnMILL.TabIndex = 49;
  1094. this.btnMILL.Text = "MILL模式";
  1095. this.btnMILL.UseVisualStyleBackColor = true;
  1096. this.btnMILL.Click += new System.EventHandler(this.btnMILL_Click);
  1097. //
  1098. // btnFIB
  1099. //
  1100. this.btnFIB.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1101. this.btnFIB.Location = new System.Drawing.Point(163, 11);
  1102. this.btnFIB.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1103. this.btnFIB.Name = "btnFIB";
  1104. this.btnFIB.Size = new System.Drawing.Size(144, 41);
  1105. this.btnFIB.TabIndex = 48;
  1106. this.btnFIB.Text = "FIB模式";
  1107. this.btnFIB.UseVisualStyleBackColor = true;
  1108. this.btnFIB.Click += new System.EventHandler(this.btnFIB_Click);
  1109. //
  1110. // panelSEM
  1111. //
  1112. this.panelSEM.Controls.Add(this.btnScanRotationSetOn);
  1113. this.panelSEM.Controls.Add(this.btnTiltAngleSetOn);
  1114. this.panelSEM.Controls.Add(this.panelFIB);
  1115. this.panelSEM.Controls.Add(this.btnTiltAngleSetOff);
  1116. this.panelSEM.Controls.Add(this.btnScanRotationSetLock);
  1117. this.panelSEM.Controls.Add(this.btnFrozen);
  1118. this.panelSEM.Controls.Add(this.btnLive);
  1119. this.panelSEM.Controls.Add(this.btnAutoStig);
  1120. this.panelSEM.Controls.Add(this.btnTiltCorrYSet);
  1121. this.panelSEM.Controls.Add(this.cmbImageStore);
  1122. this.panelSEM.Controls.Add(this.label1);
  1123. this.panelSEM.Controls.Add(this.btnAutoBCCancle);
  1124. this.panelSEM.Controls.Add(this.lblImageStore);
  1125. this.panelSEM.Controls.Add(this.txtTiltCorrY);
  1126. this.panelSEM.Controls.Add(this.btnImageStoreSet);
  1127. this.panelSEM.Controls.Add(this.btnTiltAngleSet);
  1128. this.panelSEM.Controls.Add(this.btnImageStoreGet);
  1129. this.panelSEM.Controls.Add(this.btnAutoBC);
  1130. this.panelSEM.Controls.Add(this.label2);
  1131. this.panelSEM.Controls.Add(this.txtTiltAngleSet);
  1132. this.panelSEM.Controls.Add(this.btnAutoContrast);
  1133. this.panelSEM.Controls.Add(this.btnTiltCorrYGet);
  1134. this.panelSEM.Controls.Add(this.btnScanRotationGet);
  1135. this.panelSEM.Controls.Add(this.btnAutoBrightness);
  1136. this.panelSEM.Controls.Add(this.btnTiltCorrXSet);
  1137. this.panelSEM.Controls.Add(this.label11);
  1138. this.panelSEM.Controls.Add(this.txtTiltCorrX);
  1139. this.panelSEM.Controls.Add(this.btnAutoFocus2);
  1140. this.panelSEM.Controls.Add(this.btnAutoFocus1);
  1141. this.panelSEM.Controls.Add(this.btnTiltCorrXGet);
  1142. this.panelSEM.Controls.Add(this.label7);
  1143. this.panelSEM.Controls.Add(this.btnenlargeSet);
  1144. this.panelSEM.Controls.Add(this.label12);
  1145. this.panelSEM.Controls.Add(this.txtScanRotationSet);
  1146. this.panelSEM.Controls.Add(this.btnenlargeGet);
  1147. this.panelSEM.Controls.Add(this.btnTiltAngleGet);
  1148. this.panelSEM.Controls.Add(this.btnScanRotationSet);
  1149. this.panelSEM.Controls.Add(this.btnAstigmatismYSet);
  1150. this.panelSEM.Controls.Add(this.txtenlargeSet);
  1151. this.panelSEM.Controls.Add(this.txtAstigmatismYSet);
  1152. this.panelSEM.Controls.Add(this.btnWDSet);
  1153. this.panelSEM.Controls.Add(this.btnPixelSizeGet);
  1154. this.panelSEM.Controls.Add(this.btnWDGet);
  1155. this.panelSEM.Controls.Add(this.label9);
  1156. this.panelSEM.Controls.Add(this.label3);
  1157. this.panelSEM.Controls.Add(this.btnCloseVoltage);
  1158. this.panelSEM.Controls.Add(this.btnOpenVoltage);
  1159. this.panelSEM.Controls.Add(this.lblPixelSizeGet);
  1160. this.panelSEM.Controls.Add(this.txtWDSet);
  1161. this.panelSEM.Controls.Add(this.label5);
  1162. this.panelSEM.Controls.Add(this.btnBrightnessSet);
  1163. this.panelSEM.Controls.Add(this.btnAstigmatismYGet);
  1164. this.panelSEM.Controls.Add(this.btnBrightnessGet);
  1165. this.panelSEM.Controls.Add(this.btnAstigmatismXSet);
  1166. this.panelSEM.Controls.Add(this.label6);
  1167. this.panelSEM.Controls.Add(this.txtAstigmatismXSet);
  1168. this.panelSEM.Controls.Add(this.txtBrightnessSet);
  1169. this.panelSEM.Controls.Add(this.btnAstigmatismXGet);
  1170. this.panelSEM.Controls.Add(this.label4);
  1171. this.panelSEM.Controls.Add(this.label8);
  1172. this.panelSEM.Controls.Add(this.btnContrastGet);
  1173. this.panelSEM.Controls.Add(this.btnContrastSet);
  1174. this.panelSEM.Controls.Add(this.txtContrastSet);
  1175. this.panelSEM.Controls.Add(this.btnTiltCorr);
  1176. this.panelSEM.Dock = System.Windows.Forms.DockStyle.Bottom;
  1177. this.panelSEM.Location = new System.Drawing.Point(0, 56);
  1178. this.panelSEM.Name = "panelSEM";
  1179. this.panelSEM.Size = new System.Drawing.Size(780, 509);
  1180. this.panelSEM.TabIndex = 47;
  1181. //
  1182. // btnScanRotationSetOn
  1183. //
  1184. this.btnScanRotationSetOn.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1185. this.btnScanRotationSetOn.Location = new System.Drawing.Point(353, 367);
  1186. this.btnScanRotationSetOn.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1187. this.btnScanRotationSetOn.Name = "btnScanRotationSetOn";
  1188. this.btnScanRotationSetOn.Size = new System.Drawing.Size(54, 34);
  1189. this.btnScanRotationSetOn.TabIndex = 93;
  1190. this.btnScanRotationSetOn.Text = "开";
  1191. this.btnScanRotationSetOn.UseVisualStyleBackColor = true;
  1192. this.btnScanRotationSetOn.Click += new System.EventHandler(this.btnScanRotationSetOn_Click);
  1193. //
  1194. // btnTiltAngleSetOn
  1195. //
  1196. this.btnTiltAngleSetOn.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1197. this.btnTiltAngleSetOn.Location = new System.Drawing.Point(353, 302);
  1198. this.btnTiltAngleSetOn.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1199. this.btnTiltAngleSetOn.Name = "btnTiltAngleSetOn";
  1200. this.btnTiltAngleSetOn.Size = new System.Drawing.Size(54, 34);
  1201. this.btnTiltAngleSetOn.TabIndex = 92;
  1202. this.btnTiltAngleSetOn.Text = "开";
  1203. this.btnTiltAngleSetOn.UseVisualStyleBackColor = true;
  1204. this.btnTiltAngleSetOn.Click += new System.EventHandler(this.btnTiltAngleSetOn_Click);
  1205. //
  1206. // panelFIB
  1207. //
  1208. this.panelFIB.Controls.Add(this.btnExeEly3);
  1209. this.panelFIB.Controls.Add(this.btnFIBStatus);
  1210. this.panelFIB.Controls.Add(this.btnExeEly2);
  1211. this.panelFIB.Controls.Add(this.btnExeEly);
  1212. this.panelFIB.Controls.Add(this.btnFIBAstigmatismYSet);
  1213. this.panelFIB.Controls.Add(this.txtFIBAstigmatismY);
  1214. this.panelFIB.Controls.Add(this.label22);
  1215. this.panelFIB.Controls.Add(this.btnFIBAstigmatismYGet);
  1216. this.panelFIB.Controls.Add(this.btnFIBAstigmatismXSet);
  1217. this.panelFIB.Controls.Add(this.txtFIBAstigmatismX);
  1218. this.panelFIB.Controls.Add(this.btnFIBAstigmatismXGet);
  1219. this.panelFIB.Controls.Add(this.label23);
  1220. this.panelFIB.Controls.Add(this.btnFIBBeamShiftYSet);
  1221. this.panelFIB.Controls.Add(this.txtFIBBeamShiftY);
  1222. this.panelFIB.Controls.Add(this.label18);
  1223. this.panelFIB.Controls.Add(this.btnFIBBeamShiftYGet);
  1224. this.panelFIB.Controls.Add(this.btnFIBBeamShiftXSet);
  1225. this.panelFIB.Controls.Add(this.txtFIBBeamShiftX);
  1226. this.panelFIB.Controls.Add(this.btnFIBBeamShiftXGet);
  1227. this.panelFIB.Controls.Add(this.label20);
  1228. this.panelFIB.Controls.Add(this.btnMCF);
  1229. this.panelFIB.Controls.Add(this.label14);
  1230. this.panelFIB.Controls.Add(this.btnFIBMagSet);
  1231. this.panelFIB.Controls.Add(this.btnFIBMagGet);
  1232. this.panelFIB.Controls.Add(this.txtFIBMag);
  1233. this.panelFIB.Controls.Add(this.btnFIBWDSet);
  1234. this.panelFIB.Controls.Add(this.btnFIBWDGet);
  1235. this.panelFIB.Controls.Add(this.label16);
  1236. this.panelFIB.Controls.Add(this.txtFIBWD);
  1237. this.panelFIB.Dock = System.Windows.Forms.DockStyle.Top;
  1238. this.panelFIB.Location = new System.Drawing.Point(0, 0);
  1239. this.panelFIB.Name = "panelFIB";
  1240. this.panelFIB.Size = new System.Drawing.Size(780, 289);
  1241. this.panelFIB.TabIndex = 50;
  1242. this.panelFIB.Visible = false;
  1243. //
  1244. // btnExeEly3
  1245. //
  1246. this.btnExeEly3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1247. this.btnExeEly3.Location = new System.Drawing.Point(530, 229);
  1248. this.btnExeEly3.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1249. this.btnExeEly3.Name = "btnExeEly3";
  1250. this.btnExeEly3.Size = new System.Drawing.Size(144, 41);
  1251. this.btnExeEly3.TabIndex = 75;
  1252. this.btnExeEly3.Text = "执行ELY文件";
  1253. this.btnExeEly3.UseVisualStyleBackColor = true;
  1254. this.btnExeEly3.Click += new System.EventHandler(this.btnExeEly3_Click);
  1255. //
  1256. // btnFIBStatus
  1257. //
  1258. this.btnFIBStatus.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1259. this.btnFIBStatus.Location = new System.Drawing.Point(406, 120);
  1260. this.btnFIBStatus.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1261. this.btnFIBStatus.Name = "btnFIBStatus";
  1262. this.btnFIBStatus.Size = new System.Drawing.Size(144, 41);
  1263. this.btnFIBStatus.TabIndex = 74;
  1264. this.btnFIBStatus.Text = "FIB状态";
  1265. this.btnFIBStatus.UseVisualStyleBackColor = true;
  1266. this.btnFIBStatus.Click += new System.EventHandler(this.btnFIBStatus_Click);
  1267. //
  1268. // btnExeEly2
  1269. //
  1270. this.btnExeEly2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1271. this.btnExeEly2.Location = new System.Drawing.Point(379, 229);
  1272. this.btnExeEly2.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1273. this.btnExeEly2.Name = "btnExeEly2";
  1274. this.btnExeEly2.Size = new System.Drawing.Size(144, 41);
  1275. this.btnExeEly2.TabIndex = 73;
  1276. this.btnExeEly2.Text = "确认ELY文件";
  1277. this.btnExeEly2.UseVisualStyleBackColor = true;
  1278. this.btnExeEly2.Click += new System.EventHandler(this.btnExeEly2_Click);
  1279. //
  1280. // btnExeEly
  1281. //
  1282. this.btnExeEly.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1283. this.btnExeEly.Location = new System.Drawing.Point(229, 229);
  1284. this.btnExeEly.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1285. this.btnExeEly.Name = "btnExeEly";
  1286. this.btnExeEly.Size = new System.Drawing.Size(144, 41);
  1287. this.btnExeEly.TabIndex = 72;
  1288. this.btnExeEly.Text = "选择ELY文件";
  1289. this.btnExeEly.UseVisualStyleBackColor = true;
  1290. this.btnExeEly.Click += new System.EventHandler(this.btnExeEly_Click);
  1291. //
  1292. // btnFIBAstigmatismYSet
  1293. //
  1294. this.btnFIBAstigmatismYSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1295. this.btnFIBAstigmatismYSet.Location = new System.Drawing.Point(304, 172);
  1296. this.btnFIBAstigmatismYSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1297. this.btnFIBAstigmatismYSet.Name = "btnFIBAstigmatismYSet";
  1298. this.btnFIBAstigmatismYSet.Size = new System.Drawing.Size(54, 34);
  1299. this.btnFIBAstigmatismYSet.TabIndex = 71;
  1300. this.btnFIBAstigmatismYSet.Text = "写";
  1301. this.btnFIBAstigmatismYSet.UseVisualStyleBackColor = true;
  1302. this.btnFIBAstigmatismYSet.Click += new System.EventHandler(this.btnFIBAstigmatismYSet_Click);
  1303. //
  1304. // txtFIBAstigmatismY
  1305. //
  1306. this.txtFIBAstigmatismY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1307. this.txtFIBAstigmatismY.Location = new System.Drawing.Point(162, 174);
  1308. this.txtFIBAstigmatismY.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1309. this.txtFIBAstigmatismY.Name = "txtFIBAstigmatismY";
  1310. this.txtFIBAstigmatismY.Size = new System.Drawing.Size(85, 30);
  1311. this.txtFIBAstigmatismY.TabIndex = 70;
  1312. this.txtFIBAstigmatismY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1313. //
  1314. // label22
  1315. //
  1316. this.label22.AutoSize = true;
  1317. this.label22.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1318. this.label22.Location = new System.Drawing.Point(20, 176);
  1319. this.label22.Name = "label22";
  1320. this.label22.Size = new System.Drawing.Size(104, 27);
  1321. this.label22.TabIndex = 69;
  1322. this.label22.Text = "消像散Y:";
  1323. //
  1324. // btnFIBAstigmatismYGet
  1325. //
  1326. this.btnFIBAstigmatismYGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1327. this.btnFIBAstigmatismYGet.Location = new System.Drawing.Point(251, 172);
  1328. this.btnFIBAstigmatismYGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1329. this.btnFIBAstigmatismYGet.Name = "btnFIBAstigmatismYGet";
  1330. this.btnFIBAstigmatismYGet.Size = new System.Drawing.Size(54, 34);
  1331. this.btnFIBAstigmatismYGet.TabIndex = 68;
  1332. this.btnFIBAstigmatismYGet.Text = "读";
  1333. this.btnFIBAstigmatismYGet.UseVisualStyleBackColor = true;
  1334. this.btnFIBAstigmatismYGet.Click += new System.EventHandler(this.btnFIBAstigmatismYGet_Click);
  1335. //
  1336. // btnFIBAstigmatismXSet
  1337. //
  1338. this.btnFIBAstigmatismXSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1339. this.btnFIBAstigmatismXSet.Location = new System.Drawing.Point(304, 125);
  1340. this.btnFIBAstigmatismXSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1341. this.btnFIBAstigmatismXSet.Name = "btnFIBAstigmatismXSet";
  1342. this.btnFIBAstigmatismXSet.Size = new System.Drawing.Size(54, 34);
  1343. this.btnFIBAstigmatismXSet.TabIndex = 67;
  1344. this.btnFIBAstigmatismXSet.Text = "写";
  1345. this.btnFIBAstigmatismXSet.UseVisualStyleBackColor = true;
  1346. this.btnFIBAstigmatismXSet.Click += new System.EventHandler(this.btnFIBAstigmatismXSet_Click);
  1347. //
  1348. // txtFIBAstigmatismX
  1349. //
  1350. this.txtFIBAstigmatismX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1351. this.txtFIBAstigmatismX.Location = new System.Drawing.Point(162, 127);
  1352. this.txtFIBAstigmatismX.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1353. this.txtFIBAstigmatismX.Name = "txtFIBAstigmatismX";
  1354. this.txtFIBAstigmatismX.Size = new System.Drawing.Size(85, 30);
  1355. this.txtFIBAstigmatismX.TabIndex = 66;
  1356. this.txtFIBAstigmatismX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1357. //
  1358. // btnFIBAstigmatismXGet
  1359. //
  1360. this.btnFIBAstigmatismXGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1361. this.btnFIBAstigmatismXGet.Location = new System.Drawing.Point(251, 125);
  1362. this.btnFIBAstigmatismXGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1363. this.btnFIBAstigmatismXGet.Name = "btnFIBAstigmatismXGet";
  1364. this.btnFIBAstigmatismXGet.Size = new System.Drawing.Size(54, 34);
  1365. this.btnFIBAstigmatismXGet.TabIndex = 64;
  1366. this.btnFIBAstigmatismXGet.Text = "读";
  1367. this.btnFIBAstigmatismXGet.UseVisualStyleBackColor = true;
  1368. this.btnFIBAstigmatismXGet.Click += new System.EventHandler(this.btnFIBAstigmatismXGet_Click);
  1369. //
  1370. // label23
  1371. //
  1372. this.label23.AutoSize = true;
  1373. this.label23.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1374. this.label23.Location = new System.Drawing.Point(20, 129);
  1375. this.label23.Name = "label23";
  1376. this.label23.Size = new System.Drawing.Size(105, 27);
  1377. this.label23.TabIndex = 65;
  1378. this.label23.Text = "消像散X:";
  1379. //
  1380. // btnFIBBeamShiftYSet
  1381. //
  1382. this.btnFIBBeamShiftYSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1383. this.btnFIBBeamShiftYSet.Location = new System.Drawing.Point(672, 74);
  1384. this.btnFIBBeamShiftYSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1385. this.btnFIBBeamShiftYSet.Name = "btnFIBBeamShiftYSet";
  1386. this.btnFIBBeamShiftYSet.Size = new System.Drawing.Size(54, 34);
  1387. this.btnFIBBeamShiftYSet.TabIndex = 63;
  1388. this.btnFIBBeamShiftYSet.Text = "写";
  1389. this.btnFIBBeamShiftYSet.UseVisualStyleBackColor = true;
  1390. this.btnFIBBeamShiftYSet.Click += new System.EventHandler(this.btnFIBBeamShiftYSet_Click);
  1391. //
  1392. // txtFIBBeamShiftY
  1393. //
  1394. this.txtFIBBeamShiftY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1395. this.txtFIBBeamShiftY.Location = new System.Drawing.Point(514, 76);
  1396. this.txtFIBBeamShiftY.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1397. this.txtFIBBeamShiftY.Name = "txtFIBBeamShiftY";
  1398. this.txtFIBBeamShiftY.Size = new System.Drawing.Size(101, 30);
  1399. this.txtFIBBeamShiftY.TabIndex = 62;
  1400. this.txtFIBBeamShiftY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1401. //
  1402. // label18
  1403. //
  1404. this.label18.AutoSize = true;
  1405. this.label18.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1406. this.label18.Location = new System.Drawing.Point(417, 78);
  1407. this.label18.Name = "label18";
  1408. this.label18.Size = new System.Drawing.Size(104, 27);
  1409. this.label18.TabIndex = 61;
  1410. this.label18.Text = "电子束Y:";
  1411. //
  1412. // btnFIBBeamShiftYGet
  1413. //
  1414. this.btnFIBBeamShiftYGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1415. this.btnFIBBeamShiftYGet.Location = new System.Drawing.Point(619, 74);
  1416. this.btnFIBBeamShiftYGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1417. this.btnFIBBeamShiftYGet.Name = "btnFIBBeamShiftYGet";
  1418. this.btnFIBBeamShiftYGet.Size = new System.Drawing.Size(54, 34);
  1419. this.btnFIBBeamShiftYGet.TabIndex = 60;
  1420. this.btnFIBBeamShiftYGet.Text = "读";
  1421. this.btnFIBBeamShiftYGet.UseVisualStyleBackColor = true;
  1422. this.btnFIBBeamShiftYGet.Click += new System.EventHandler(this.btnFIBBeamShiftYGet_Click);
  1423. //
  1424. // btnFIBBeamShiftXSet
  1425. //
  1426. this.btnFIBBeamShiftXSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1427. this.btnFIBBeamShiftXSet.Location = new System.Drawing.Point(672, 27);
  1428. this.btnFIBBeamShiftXSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1429. this.btnFIBBeamShiftXSet.Name = "btnFIBBeamShiftXSet";
  1430. this.btnFIBBeamShiftXSet.Size = new System.Drawing.Size(54, 34);
  1431. this.btnFIBBeamShiftXSet.TabIndex = 59;
  1432. this.btnFIBBeamShiftXSet.Text = "写";
  1433. this.btnFIBBeamShiftXSet.UseVisualStyleBackColor = true;
  1434. this.btnFIBBeamShiftXSet.Click += new System.EventHandler(this.btnFIBBeamShiftXSet_Click);
  1435. //
  1436. // txtFIBBeamShiftX
  1437. //
  1438. this.txtFIBBeamShiftX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1439. this.txtFIBBeamShiftX.Location = new System.Drawing.Point(514, 29);
  1440. this.txtFIBBeamShiftX.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1441. this.txtFIBBeamShiftX.Name = "txtFIBBeamShiftX";
  1442. this.txtFIBBeamShiftX.Size = new System.Drawing.Size(101, 30);
  1443. this.txtFIBBeamShiftX.TabIndex = 58;
  1444. this.txtFIBBeamShiftX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1445. //
  1446. // btnFIBBeamShiftXGet
  1447. //
  1448. this.btnFIBBeamShiftXGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1449. this.btnFIBBeamShiftXGet.Location = new System.Drawing.Point(619, 27);
  1450. this.btnFIBBeamShiftXGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1451. this.btnFIBBeamShiftXGet.Name = "btnFIBBeamShiftXGet";
  1452. this.btnFIBBeamShiftXGet.Size = new System.Drawing.Size(54, 34);
  1453. this.btnFIBBeamShiftXGet.TabIndex = 56;
  1454. this.btnFIBBeamShiftXGet.Text = "读";
  1455. this.btnFIBBeamShiftXGet.UseVisualStyleBackColor = true;
  1456. this.btnFIBBeamShiftXGet.Click += new System.EventHandler(this.btnFIBBeamShiftXGet_Click);
  1457. //
  1458. // label20
  1459. //
  1460. this.label20.AutoSize = true;
  1461. this.label20.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1462. this.label20.Location = new System.Drawing.Point(417, 31);
  1463. this.label20.Name = "label20";
  1464. this.label20.Size = new System.Drawing.Size(105, 27);
  1465. this.label20.TabIndex = 57;
  1466. this.label20.Text = "电子束X:";
  1467. //
  1468. // btnMCF
  1469. //
  1470. this.btnMCF.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1471. this.btnMCF.Location = new System.Drawing.Point(582, 122);
  1472. this.btnMCF.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1473. this.btnMCF.Name = "btnMCF";
  1474. this.btnMCF.Size = new System.Drawing.Size(144, 41);
  1475. this.btnMCF.TabIndex = 55;
  1476. this.btnMCF.Text = "执行宏文件";
  1477. this.btnMCF.UseVisualStyleBackColor = true;
  1478. this.btnMCF.Click += new System.EventHandler(this.btnMCF_Click);
  1479. //
  1480. // label14
  1481. //
  1482. this.label14.AutoSize = true;
  1483. this.label14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1484. this.label14.Location = new System.Drawing.Point(20, 30);
  1485. this.label14.Name = "label14";
  1486. this.label14.Size = new System.Drawing.Size(72, 27);
  1487. this.label14.TabIndex = 15;
  1488. this.label14.Text = "缩放:";
  1489. //
  1490. // btnFIBMagSet
  1491. //
  1492. this.btnFIBMagSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1493. this.btnFIBMagSet.Location = new System.Drawing.Point(304, 26);
  1494. this.btnFIBMagSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1495. this.btnFIBMagSet.Name = "btnFIBMagSet";
  1496. this.btnFIBMagSet.Size = new System.Drawing.Size(54, 34);
  1497. this.btnFIBMagSet.TabIndex = 17;
  1498. this.btnFIBMagSet.Text = "写";
  1499. this.btnFIBMagSet.UseVisualStyleBackColor = true;
  1500. this.btnFIBMagSet.Click += new System.EventHandler(this.btnFIBMagSet_Click);
  1501. //
  1502. // btnFIBMagGet
  1503. //
  1504. this.btnFIBMagGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1505. this.btnFIBMagGet.Location = new System.Drawing.Point(251, 26);
  1506. this.btnFIBMagGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1507. this.btnFIBMagGet.Name = "btnFIBMagGet";
  1508. this.btnFIBMagGet.Size = new System.Drawing.Size(54, 34);
  1509. this.btnFIBMagGet.TabIndex = 14;
  1510. this.btnFIBMagGet.Text = "读";
  1511. this.btnFIBMagGet.UseVisualStyleBackColor = true;
  1512. this.btnFIBMagGet.Click += new System.EventHandler(this.btnFIBMagGet_Click);
  1513. //
  1514. // txtFIBMag
  1515. //
  1516. this.txtFIBMag.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1517. this.txtFIBMag.Location = new System.Drawing.Point(162, 28);
  1518. this.txtFIBMag.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1519. this.txtFIBMag.Name = "txtFIBMag";
  1520. this.txtFIBMag.Size = new System.Drawing.Size(85, 30);
  1521. this.txtFIBMag.TabIndex = 16;
  1522. this.txtFIBMag.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1523. //
  1524. // btnFIBWDSet
  1525. //
  1526. this.btnFIBWDSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1527. this.btnFIBWDSet.Location = new System.Drawing.Point(304, 73);
  1528. this.btnFIBWDSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1529. this.btnFIBWDSet.Name = "btnFIBWDSet";
  1530. this.btnFIBWDSet.Size = new System.Drawing.Size(54, 34);
  1531. this.btnFIBWDSet.TabIndex = 21;
  1532. this.btnFIBWDSet.Text = "写";
  1533. this.btnFIBWDSet.UseVisualStyleBackColor = true;
  1534. this.btnFIBWDSet.Click += new System.EventHandler(this.btnFIBWDSet_Click);
  1535. //
  1536. // btnFIBWDGet
  1537. //
  1538. this.btnFIBWDGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1539. this.btnFIBWDGet.Location = new System.Drawing.Point(251, 73);
  1540. this.btnFIBWDGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1541. this.btnFIBWDGet.Name = "btnFIBWDGet";
  1542. this.btnFIBWDGet.Size = new System.Drawing.Size(54, 34);
  1543. this.btnFIBWDGet.TabIndex = 18;
  1544. this.btnFIBWDGet.Text = "读";
  1545. this.btnFIBWDGet.UseVisualStyleBackColor = true;
  1546. this.btnFIBWDGet.Click += new System.EventHandler(this.btnFIBWDGet_Click);
  1547. //
  1548. // label16
  1549. //
  1550. this.label16.AutoSize = true;
  1551. this.label16.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1552. this.label16.Location = new System.Drawing.Point(20, 77);
  1553. this.label16.Name = "label16";
  1554. this.label16.Size = new System.Drawing.Size(72, 27);
  1555. this.label16.TabIndex = 19;
  1556. this.label16.Text = "焦距:";
  1557. //
  1558. // txtFIBWD
  1559. //
  1560. this.txtFIBWD.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1561. this.txtFIBWD.Location = new System.Drawing.Point(162, 75);
  1562. this.txtFIBWD.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1563. this.txtFIBWD.Name = "txtFIBWD";
  1564. this.txtFIBWD.Size = new System.Drawing.Size(85, 30);
  1565. this.txtFIBWD.TabIndex = 20;
  1566. this.txtFIBWD.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1567. //
  1568. // btnTiltAngleSetOff
  1569. //
  1570. this.btnTiltAngleSetOff.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1571. this.btnTiltAngleSetOff.Location = new System.Drawing.Point(409, 302);
  1572. this.btnTiltAngleSetOff.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1573. this.btnTiltAngleSetOff.Name = "btnTiltAngleSetOff";
  1574. this.btnTiltAngleSetOff.Size = new System.Drawing.Size(54, 34);
  1575. this.btnTiltAngleSetOff.TabIndex = 91;
  1576. this.btnTiltAngleSetOff.Text = "锁";
  1577. this.btnTiltAngleSetOff.UseVisualStyleBackColor = true;
  1578. this.btnTiltAngleSetOff.Click += new System.EventHandler(this.button1_Click_1);
  1579. //
  1580. // btnScanRotationSetLock
  1581. //
  1582. this.btnScanRotationSetLock.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1583. this.btnScanRotationSetLock.Location = new System.Drawing.Point(409, 367);
  1584. this.btnScanRotationSetLock.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1585. this.btnScanRotationSetLock.Name = "btnScanRotationSetLock";
  1586. this.btnScanRotationSetLock.Size = new System.Drawing.Size(54, 34);
  1587. this.btnScanRotationSetLock.TabIndex = 90;
  1588. this.btnScanRotationSetLock.Text = "锁";
  1589. this.btnScanRotationSetLock.UseVisualStyleBackColor = true;
  1590. this.btnScanRotationSetLock.Click += new System.EventHandler(this.btnScanRotationSetLock_Click);
  1591. //
  1592. // btnFrozen
  1593. //
  1594. this.btnFrozen.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1595. this.btnFrozen.Location = new System.Drawing.Point(649, 205);
  1596. this.btnFrozen.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1597. this.btnFrozen.Name = "btnFrozen";
  1598. this.btnFrozen.Size = new System.Drawing.Size(86, 41);
  1599. this.btnFrozen.TabIndex = 89;
  1600. this.btnFrozen.Text = "冻结";
  1601. this.btnFrozen.UseVisualStyleBackColor = true;
  1602. this.btnFrozen.Click += new System.EventHandler(this.btnFrozen_Click);
  1603. //
  1604. // btnLive
  1605. //
  1606. this.btnLive.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1607. this.btnLive.Location = new System.Drawing.Point(557, 205);
  1608. this.btnLive.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1609. this.btnLive.Name = "btnLive";
  1610. this.btnLive.Size = new System.Drawing.Size(86, 41);
  1611. this.btnLive.TabIndex = 88;
  1612. this.btnLive.Text = "解冻";
  1613. this.btnLive.UseVisualStyleBackColor = true;
  1614. this.btnLive.Click += new System.EventHandler(this.btnLive_Click);
  1615. //
  1616. // btnAutoStig
  1617. //
  1618. this.btnAutoStig.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1619. this.btnAutoStig.Location = new System.Drawing.Point(356, 210);
  1620. this.btnAutoStig.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1621. this.btnAutoStig.Name = "btnAutoStig";
  1622. this.btnAutoStig.Size = new System.Drawing.Size(69, 79);
  1623. this.btnAutoStig.TabIndex = 34;
  1624. this.btnAutoStig.Text = "自动";
  1625. this.btnAutoStig.UseVisualStyleBackColor = true;
  1626. this.btnAutoStig.Click += new System.EventHandler(this.btnAutoStig_Click);
  1627. //
  1628. // btnTiltCorrYSet
  1629. //
  1630. this.btnTiltCorrYSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1631. this.btnTiltCorrYSet.Location = new System.Drawing.Point(693, 455);
  1632. this.btnTiltCorrYSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1633. this.btnTiltCorrYSet.Name = "btnTiltCorrYSet";
  1634. this.btnTiltCorrYSet.Size = new System.Drawing.Size(54, 34);
  1635. this.btnTiltCorrYSet.TabIndex = 54;
  1636. this.btnTiltCorrYSet.Text = "写";
  1637. this.btnTiltCorrYSet.UseVisualStyleBackColor = true;
  1638. this.btnTiltCorrYSet.Click += new System.EventHandler(this.btnTiltCorrYSet_Click);
  1639. //
  1640. // cmbImageStore
  1641. //
  1642. this.cmbImageStore.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1643. this.cmbImageStore.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1644. this.cmbImageStore.FormattingEnabled = true;
  1645. this.cmbImageStore.Items.AddRange(new object[] {
  1646. "1024 * 768",
  1647. "512 * 384",
  1648. "2048 * 1536",
  1649. "3072 * 2304",
  1650. "4096 * 3072",
  1651. "5120 * 3840",
  1652. "6144 * 4608",
  1653. "8192 * 6144",
  1654. "12288 * 9216",
  1655. "16384 * 12288",
  1656. "24576 * 18432",
  1657. "32768 * 24576"});
  1658. this.cmbImageStore.Location = new System.Drawing.Point(613, 317);
  1659. this.cmbImageStore.Name = "cmbImageStore";
  1660. this.cmbImageStore.Size = new System.Drawing.Size(144, 26);
  1661. this.cmbImageStore.TabIndex = 87;
  1662. //
  1663. // btnAutoBCCancle
  1664. //
  1665. this.btnAutoBCCancle.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1666. this.btnAutoBCCancle.Location = new System.Drawing.Point(431, 114);
  1667. this.btnAutoBCCancle.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1668. this.btnAutoBCCancle.Name = "btnAutoBCCancle";
  1669. this.btnAutoBCCancle.Size = new System.Drawing.Size(29, 81);
  1670. this.btnAutoBCCancle.TabIndex = 29;
  1671. this.btnAutoBCCancle.Text = "取消";
  1672. this.btnAutoBCCancle.UseVisualStyleBackColor = true;
  1673. this.btnAutoBCCancle.Click += new System.EventHandler(this.btnAutoBCCancle_Click);
  1674. //
  1675. // lblImageStore
  1676. //
  1677. this.lblImageStore.AutoSize = true;
  1678. this.lblImageStore.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1679. this.lblImageStore.Location = new System.Drawing.Point(608, 255);
  1680. this.lblImageStore.Name = "lblImageStore";
  1681. this.lblImageStore.Size = new System.Drawing.Size(0, 27);
  1682. this.lblImageStore.TabIndex = 86;
  1683. //
  1684. // txtTiltCorrY
  1685. //
  1686. this.txtTiltCorrY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1687. this.txtTiltCorrY.Location = new System.Drawing.Point(551, 457);
  1688. this.txtTiltCorrY.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1689. this.txtTiltCorrY.Name = "txtTiltCorrY";
  1690. this.txtTiltCorrY.Size = new System.Drawing.Size(85, 30);
  1691. this.txtTiltCorrY.TabIndex = 53;
  1692. this.txtTiltCorrY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1693. //
  1694. // btnImageStoreSet
  1695. //
  1696. this.btnImageStoreSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1697. this.btnImageStoreSet.Location = new System.Drawing.Point(464, 308);
  1698. this.btnImageStoreSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1699. this.btnImageStoreSet.Name = "btnImageStoreSet";
  1700. this.btnImageStoreSet.Size = new System.Drawing.Size(144, 41);
  1701. this.btnImageStoreSet.TabIndex = 85;
  1702. this.btnImageStoreSet.Text = "设置分辨率";
  1703. this.btnImageStoreSet.UseVisualStyleBackColor = true;
  1704. this.btnImageStoreSet.Click += new System.EventHandler(this.btnImageStoreSet_Click);
  1705. //
  1706. // btnImageStoreGet
  1707. //
  1708. this.btnImageStoreGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1709. this.btnImageStoreGet.Location = new System.Drawing.Point(431, 248);
  1710. this.btnImageStoreGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1711. this.btnImageStoreGet.Name = "btnImageStoreGet";
  1712. this.btnImageStoreGet.Size = new System.Drawing.Size(144, 41);
  1713. this.btnImageStoreGet.TabIndex = 84;
  1714. this.btnImageStoreGet.Text = "获取分辨率";
  1715. this.btnImageStoreGet.UseVisualStyleBackColor = true;
  1716. this.btnImageStoreGet.Click += new System.EventHandler(this.btnImageStoreGet_Click);
  1717. //
  1718. // btnAutoBC
  1719. //
  1720. this.btnAutoBC.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1721. this.btnAutoBC.Location = new System.Drawing.Point(472, 114);
  1722. this.btnAutoBC.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1723. this.btnAutoBC.Name = "btnAutoBC";
  1724. this.btnAutoBC.Size = new System.Drawing.Size(30, 82);
  1725. this.btnAutoBC.TabIndex = 28;
  1726. this.btnAutoBC.Text = "自动";
  1727. this.btnAutoBC.UseVisualStyleBackColor = true;
  1728. this.btnAutoBC.Click += new System.EventHandler(this.btnAutoBC_Click);
  1729. //
  1730. // label2
  1731. //
  1732. this.label2.AutoSize = true;
  1733. this.label2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1734. this.label2.Location = new System.Drawing.Point(438, 459);
  1735. this.label2.Name = "label2";
  1736. this.label2.Size = new System.Drawing.Size(104, 27);
  1737. this.label2.TabIndex = 52;
  1738. this.label2.Text = "电子束Y:";
  1739. //
  1740. // btnAutoContrast
  1741. //
  1742. this.btnAutoContrast.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1743. this.btnAutoContrast.Location = new System.Drawing.Point(354, 161);
  1744. this.btnAutoContrast.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1745. this.btnAutoContrast.Name = "btnAutoContrast";
  1746. this.btnAutoContrast.Size = new System.Drawing.Size(71, 34);
  1747. this.btnAutoContrast.TabIndex = 27;
  1748. this.btnAutoContrast.Text = "自动";
  1749. this.btnAutoContrast.UseVisualStyleBackColor = true;
  1750. this.btnAutoContrast.Click += new System.EventHandler(this.btnAutoContrast_Click);
  1751. //
  1752. // btnTiltCorrYGet
  1753. //
  1754. this.btnTiltCorrYGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1755. this.btnTiltCorrYGet.Location = new System.Drawing.Point(640, 455);
  1756. this.btnTiltCorrYGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1757. this.btnTiltCorrYGet.Name = "btnTiltCorrYGet";
  1758. this.btnTiltCorrYGet.Size = new System.Drawing.Size(54, 34);
  1759. this.btnTiltCorrYGet.TabIndex = 51;
  1760. this.btnTiltCorrYGet.Text = "读";
  1761. this.btnTiltCorrYGet.UseVisualStyleBackColor = true;
  1762. this.btnTiltCorrYGet.Click += new System.EventHandler(this.btnTiltCorrYGet_Click);
  1763. //
  1764. // btnAutoBrightness
  1765. //
  1766. this.btnAutoBrightness.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1767. this.btnAutoBrightness.Location = new System.Drawing.Point(353, 114);
  1768. this.btnAutoBrightness.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1769. this.btnAutoBrightness.Name = "btnAutoBrightness";
  1770. this.btnAutoBrightness.Size = new System.Drawing.Size(71, 34);
  1771. this.btnAutoBrightness.TabIndex = 26;
  1772. this.btnAutoBrightness.Text = "自动";
  1773. this.btnAutoBrightness.UseVisualStyleBackColor = true;
  1774. this.btnAutoBrightness.Click += new System.EventHandler(this.btnAutoBrightness_Click);
  1775. //
  1776. // btnTiltCorrXSet
  1777. //
  1778. this.btnTiltCorrXSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1779. this.btnTiltCorrXSet.Location = new System.Drawing.Point(693, 408);
  1780. this.btnTiltCorrXSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1781. this.btnTiltCorrXSet.Name = "btnTiltCorrXSet";
  1782. this.btnTiltCorrXSet.Size = new System.Drawing.Size(54, 34);
  1783. this.btnTiltCorrXSet.TabIndex = 50;
  1784. this.btnTiltCorrXSet.Text = "写";
  1785. this.btnTiltCorrXSet.UseVisualStyleBackColor = true;
  1786. this.btnTiltCorrXSet.Click += new System.EventHandler(this.btnTiltCorrXSet_Click);
  1787. //
  1788. // txtTiltCorrX
  1789. //
  1790. this.txtTiltCorrX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1791. this.txtTiltCorrX.Location = new System.Drawing.Point(551, 410);
  1792. this.txtTiltCorrX.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1793. this.txtTiltCorrX.Name = "txtTiltCorrX";
  1794. this.txtTiltCorrX.Size = new System.Drawing.Size(85, 30);
  1795. this.txtTiltCorrX.TabIndex = 49;
  1796. this.txtTiltCorrX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1797. //
  1798. // btnAutoFocus2
  1799. //
  1800. this.btnAutoFocus2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1801. this.btnAutoFocus2.Location = new System.Drawing.Point(431, 68);
  1802. this.btnAutoFocus2.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1803. this.btnAutoFocus2.Name = "btnAutoFocus2";
  1804. this.btnAutoFocus2.Size = new System.Drawing.Size(71, 34);
  1805. this.btnAutoFocus2.TabIndex = 25;
  1806. this.btnAutoFocus2.Text = "自动2";
  1807. this.btnAutoFocus2.UseVisualStyleBackColor = true;
  1808. this.btnAutoFocus2.Click += new System.EventHandler(this.btnAutoFocus2_Click);
  1809. //
  1810. // btnAutoFocus1
  1811. //
  1812. this.btnAutoFocus1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1813. this.btnAutoFocus1.Location = new System.Drawing.Point(354, 67);
  1814. this.btnAutoFocus1.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1815. this.btnAutoFocus1.Name = "btnAutoFocus1";
  1816. this.btnAutoFocus1.Size = new System.Drawing.Size(71, 34);
  1817. this.btnAutoFocus1.TabIndex = 24;
  1818. this.btnAutoFocus1.Text = "自动1";
  1819. this.btnAutoFocus1.UseVisualStyleBackColor = true;
  1820. this.btnAutoFocus1.Click += new System.EventHandler(this.btnAutoFocus1_Click);
  1821. //
  1822. // btnTiltCorrXGet
  1823. //
  1824. this.btnTiltCorrXGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1825. this.btnTiltCorrXGet.Location = new System.Drawing.Point(640, 408);
  1826. this.btnTiltCorrXGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1827. this.btnTiltCorrXGet.Name = "btnTiltCorrXGet";
  1828. this.btnTiltCorrXGet.Size = new System.Drawing.Size(54, 34);
  1829. this.btnTiltCorrXGet.TabIndex = 47;
  1830. this.btnTiltCorrXGet.Text = "读";
  1831. this.btnTiltCorrXGet.UseVisualStyleBackColor = true;
  1832. this.btnTiltCorrXGet.Click += new System.EventHandler(this.btnTiltCorrXGet_Click);
  1833. //
  1834. // label12
  1835. //
  1836. this.label12.AutoSize = true;
  1837. this.label12.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1838. this.label12.Location = new System.Drawing.Point(438, 412);
  1839. this.label12.Name = "label12";
  1840. this.label12.Size = new System.Drawing.Size(105, 27);
  1841. this.label12.TabIndex = 48;
  1842. this.label12.Text = "电子束X:";
  1843. //
  1844. // lblPixelSizeGet
  1845. //
  1846. this.lblPixelSizeGet.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1847. this.lblPixelSizeGet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1848. this.lblPixelSizeGet.Location = new System.Drawing.Point(154, 432);
  1849. this.lblPixelSizeGet.Name = "lblPixelSizeGet";
  1850. this.lblPixelSizeGet.Size = new System.Drawing.Size(188, 33);
  1851. this.lblPixelSizeGet.TabIndex = 46;
  1852. this.lblPixelSizeGet.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1853. //
  1854. // btnTiltCorr
  1855. //
  1856. this.btnTiltCorr.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1857. this.btnTiltCorr.Location = new System.Drawing.Point(591, 120);
  1858. this.btnTiltCorr.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1859. this.btnTiltCorr.Name = "btnTiltCorr";
  1860. this.btnTiltCorr.Size = new System.Drawing.Size(144, 76);
  1861. this.btnTiltCorr.TabIndex = 55;
  1862. this.btnTiltCorr.Text = "电子束校正";
  1863. this.btnTiltCorr.UseVisualStyleBackColor = true;
  1864. this.btnTiltCorr.Click += new System.EventHandler(this.btnTiltCorr_Click);
  1865. //
  1866. // btnSEM
  1867. //
  1868. this.btnSEM.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1869. this.btnSEM.Location = new System.Drawing.Point(13, 10);
  1870. this.btnSEM.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1871. this.btnSEM.Name = "btnSEM";
  1872. this.btnSEM.Size = new System.Drawing.Size(144, 41);
  1873. this.btnSEM.TabIndex = 2;
  1874. this.btnSEM.Text = "SEM模式";
  1875. this.btnSEM.UseVisualStyleBackColor = true;
  1876. this.btnSEM.Click += new System.EventHandler(this.btnSEM_Click);
  1877. //
  1878. // panelStage
  1879. //
  1880. this.panelStage.Controls.Add(this.pictureBox2);
  1881. this.panelStage.Controls.Add(this.pictureBox1);
  1882. this.panelStage.Controls.Add(this.btnWriteXml);
  1883. this.panelStage.Controls.Add(this.btnAbort);
  1884. this.panelStage.Controls.Add(this.btnReadXml);
  1885. this.panelStage.Controls.Add(this.btnMoveXY);
  1886. this.panelStage.Controls.Add(this.label24);
  1887. this.panelStage.Controls.Add(this.btnGetStagePosition);
  1888. this.panelStage.Controls.Add(this.label21);
  1889. this.panelStage.Controls.Add(this.btnStageSetM);
  1890. this.panelStage.Controls.Add(this.btnStageGetX);
  1891. this.panelStage.Controls.Add(this.txtStageM);
  1892. this.panelStage.Controls.Add(this.lblStageX);
  1893. this.panelStage.Controls.Add(this.lblStageM);
  1894. this.panelStage.Controls.Add(this.txtStageX);
  1895. this.panelStage.Controls.Add(this.label10);
  1896. this.panelStage.Controls.Add(this.btnStageSetX);
  1897. this.panelStage.Controls.Add(this.btnStageGetM);
  1898. this.panelStage.Controls.Add(this.btnStageGetY);
  1899. this.panelStage.Controls.Add(this.btnStageSetR);
  1900. this.panelStage.Controls.Add(this.label19);
  1901. this.panelStage.Controls.Add(this.txtStageR);
  1902. this.panelStage.Controls.Add(this.lblStageY);
  1903. this.panelStage.Controls.Add(this.lblStageR);
  1904. this.panelStage.Controls.Add(this.txtStageY);
  1905. this.panelStage.Controls.Add(this.label13);
  1906. this.panelStage.Controls.Add(this.btnStageSetY);
  1907. this.panelStage.Controls.Add(this.btnStageGetR);
  1908. this.panelStage.Controls.Add(this.btnStageGetZ);
  1909. this.panelStage.Controls.Add(this.btnStageSetT);
  1910. this.panelStage.Controls.Add(this.label17);
  1911. this.panelStage.Controls.Add(this.txtStageT);
  1912. this.panelStage.Controls.Add(this.lblStageZ);
  1913. this.panelStage.Controls.Add(this.lblStageT);
  1914. this.panelStage.Controls.Add(this.txtStageZ);
  1915. this.panelStage.Controls.Add(this.label15);
  1916. this.panelStage.Controls.Add(this.btnStageSetZ);
  1917. this.panelStage.Controls.Add(this.btnStageGetT);
  1918. this.panelStage.Dock = System.Windows.Forms.DockStyle.Right;
  1919. this.panelStage.Location = new System.Drawing.Point(783, 3);
  1920. this.panelStage.Name = "panelStage";
  1921. this.panelStage.Size = new System.Drawing.Size(575, 565);
  1922. this.panelStage.TabIndex = 21;
  1923. //
  1924. // pictureBox2
  1925. //
  1926. this.pictureBox2.Location = new System.Drawing.Point(309, 381);
  1927. this.pictureBox2.Name = "pictureBox2";
  1928. this.pictureBox2.Size = new System.Drawing.Size(260, 178);
  1929. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1930. this.pictureBox2.TabIndex = 90;
  1931. this.pictureBox2.TabStop = false;
  1932. //
  1933. // pictureBox1
  1934. //
  1935. this.pictureBox1.Location = new System.Drawing.Point(43, 381);
  1936. this.pictureBox1.Name = "pictureBox1";
  1937. this.pictureBox1.Size = new System.Drawing.Size(260, 178);
  1938. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1939. this.pictureBox1.TabIndex = 89;
  1940. this.pictureBox1.TabStop = false;
  1941. //
  1942. // btnAbort
  1943. //
  1944. this.btnAbort.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1945. this.btnAbort.Location = new System.Drawing.Point(407, 318);
  1946. this.btnAbort.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1947. this.btnAbort.Name = "btnAbort";
  1948. this.btnAbort.Size = new System.Drawing.Size(144, 41);
  1949. this.btnAbort.TabIndex = 88;
  1950. this.btnAbort.Text = "急停";
  1951. this.btnAbort.UseVisualStyleBackColor = true;
  1952. this.btnAbort.Click += new System.EventHandler(this.btnAbort_Click);
  1953. //
  1954. // btnMoveXY
  1955. //
  1956. this.btnMoveXY.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1957. this.btnMoveXY.Location = new System.Drawing.Point(257, 318);
  1958. this.btnMoveXY.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1959. this.btnMoveXY.Name = "btnMoveXY";
  1960. this.btnMoveXY.Size = new System.Drawing.Size(144, 41);
  1961. this.btnMoveXY.TabIndex = 83;
  1962. this.btnMoveXY.Text = "移动XY";
  1963. this.btnMoveXY.UseVisualStyleBackColor = true;
  1964. this.btnMoveXY.Click += new System.EventHandler(this.btnMoveXY_Click);
  1965. //
  1966. // label24
  1967. //
  1968. this.label24.AutoSize = true;
  1969. this.label24.Font = new System.Drawing.Font("微软雅黑", 16.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1970. this.label24.Location = new System.Drawing.Point(278, 15);
  1971. this.label24.Name = "label24";
  1972. this.label24.Size = new System.Drawing.Size(101, 37);
  1973. this.label24.TabIndex = 82;
  1974. this.label24.Text = "样品台";
  1975. //
  1976. // tabControl1
  1977. //
  1978. this.tabControl1.Controls.Add(this.tabPage1);
  1979. this.tabControl1.Controls.Add(this.tabPage2);
  1980. this.tabControl1.Controls.Add(this.tabPage3);
  1981. this.tabControl1.Controls.Add(this.tabPage4);
  1982. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  1983. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  1984. this.tabControl1.Name = "tabControl1";
  1985. this.tabControl1.SelectedIndex = 0;
  1986. this.tabControl1.Size = new System.Drawing.Size(1369, 600);
  1987. this.tabControl1.TabIndex = 22;
  1988. //
  1989. // tabPage1
  1990. //
  1991. this.tabPage1.Controls.Add(this.panelControl);
  1992. this.tabPage1.Controls.Add(this.panelStage);
  1993. this.tabPage1.Location = new System.Drawing.Point(4, 25);
  1994. this.tabPage1.Name = "tabPage1";
  1995. this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
  1996. this.tabPage1.Size = new System.Drawing.Size(1361, 571);
  1997. this.tabPage1.TabIndex = 0;
  1998. this.tabPage1.Text = "SEM+FIB";
  1999. this.tabPage1.UseVisualStyleBackColor = true;
  2000. //
  2001. // tabPage2
  2002. //
  2003. this.tabPage2.Controls.Add(this.lblstate6);
  2004. this.tabPage2.Controls.Add(this.label47);
  2005. this.tabPage2.Controls.Add(this.lblcentery);
  2006. this.tabPage2.Controls.Add(this.label49);
  2007. this.tabPage2.Controls.Add(this.lblcenterx);
  2008. this.tabPage2.Controls.Add(this.label51);
  2009. this.tabPage2.Controls.Add(this.lblstate5);
  2010. this.tabPage2.Controls.Add(this.label53);
  2011. this.tabPage2.Controls.Add(this.lbldirection2);
  2012. this.tabPage2.Controls.Add(this.label55);
  2013. this.tabPage2.Controls.Add(this.lbldegree2);
  2014. this.tabPage2.Controls.Add(this.label57);
  2015. this.tabPage2.Controls.Add(this.lblstigpath);
  2016. this.tabPage2.Controls.Add(this.label45);
  2017. this.tabPage2.Controls.Add(this.lblfocuspath);
  2018. this.tabPage2.Controls.Add(this.label43);
  2019. this.tabPage2.Controls.Add(this.lblstate4);
  2020. this.tabPage2.Controls.Add(this.label37);
  2021. this.tabPage2.Controls.Add(this.lbltopcy);
  2022. this.tabPage2.Controls.Add(this.label39);
  2023. this.tabPage2.Controls.Add(this.lbltopcx);
  2024. this.tabPage2.Controls.Add(this.label41);
  2025. this.tabPage2.Controls.Add(this.lblstate3);
  2026. this.tabPage2.Controls.Add(this.label35);
  2027. this.tabPage2.Controls.Add(this.lblstate2);
  2028. this.tabPage2.Controls.Add(this.label27);
  2029. this.tabPage2.Controls.Add(this.lbllocationy);
  2030. this.tabPage2.Controls.Add(this.label31);
  2031. this.tabPage2.Controls.Add(this.lbllocationx);
  2032. this.tabPage2.Controls.Add(this.label33);
  2033. this.tabPage2.Controls.Add(this.btnPost8);
  2034. this.tabPage2.Controls.Add(this.btnPost7);
  2035. this.tabPage2.Controls.Add(this.btnPost6);
  2036. this.tabPage2.Controls.Add(this.btnPost5);
  2037. this.tabPage2.Controls.Add(this.btnPost4);
  2038. this.tabPage2.Controls.Add(this.btnPost3);
  2039. this.tabPage2.Controls.Add(this.btnPost2);
  2040. this.tabPage2.Controls.Add(this.lblstate1);
  2041. this.tabPage2.Controls.Add(this.label30);
  2042. this.tabPage2.Controls.Add(this.lbldirection1);
  2043. this.tabPage2.Controls.Add(this.label28);
  2044. this.tabPage2.Controls.Add(this.lbldegree1);
  2045. this.tabPage2.Controls.Add(this.label25);
  2046. this.tabPage2.Controls.Add(this.btnPost1);
  2047. this.tabPage2.Location = new System.Drawing.Point(4, 25);
  2048. this.tabPage2.Name = "tabPage2";
  2049. this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
  2050. this.tabPage2.Size = new System.Drawing.Size(1361, 571);
  2051. this.tabPage2.TabIndex = 1;
  2052. this.tabPage2.Text = "POST";
  2053. this.tabPage2.UseVisualStyleBackColor = true;
  2054. //
  2055. // lblstate6
  2056. //
  2057. this.lblstate6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2058. this.lblstate6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2059. this.lblstate6.Location = new System.Drawing.Point(1182, 530);
  2060. this.lblstate6.Name = "lblstate6";
  2061. this.lblstate6.Size = new System.Drawing.Size(112, 27);
  2062. this.lblstate6.TabIndex = 94;
  2063. //
  2064. // label47
  2065. //
  2066. this.label47.AutoSize = true;
  2067. this.label47.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2068. this.label47.Location = new System.Drawing.Point(1053, 530);
  2069. this.label47.Name = "label47";
  2070. this.label47.Size = new System.Drawing.Size(92, 27);
  2071. this.label47.TabIndex = 93;
  2072. this.label47.Text = "成功失败";
  2073. //
  2074. // lblcentery
  2075. //
  2076. this.lblcentery.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2077. this.lblcentery.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2078. this.lblcentery.Location = new System.Drawing.Point(859, 476);
  2079. this.lblcentery.Name = "lblcentery";
  2080. this.lblcentery.Size = new System.Drawing.Size(112, 27);
  2081. this.lblcentery.TabIndex = 92;
  2082. //
  2083. // label49
  2084. //
  2085. this.label49.AutoSize = true;
  2086. this.label49.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2087. this.label49.Location = new System.Drawing.Point(730, 476);
  2088. this.label49.Name = "label49";
  2089. this.label49.Size = new System.Drawing.Size(106, 27);
  2090. this.label49.TabIndex = 91;
  2091. this.label49.Text = "Center-Y:";
  2092. //
  2093. // lblcenterx
  2094. //
  2095. this.lblcenterx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2096. this.lblcenterx.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2097. this.lblcenterx.Location = new System.Drawing.Point(570, 475);
  2098. this.lblcenterx.Name = "lblcenterx";
  2099. this.lblcenterx.Size = new System.Drawing.Size(112, 27);
  2100. this.lblcenterx.TabIndex = 90;
  2101. //
  2102. // label51
  2103. //
  2104. this.label51.AutoSize = true;
  2105. this.label51.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2106. this.label51.Location = new System.Drawing.Point(441, 475);
  2107. this.label51.Name = "label51";
  2108. this.label51.Size = new System.Drawing.Size(121, 27);
  2109. this.label51.TabIndex = 89;
  2110. this.label51.Text = "Center-X:";
  2111. //
  2112. // lblstate5
  2113. //
  2114. this.lblstate5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2115. this.lblstate5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2116. this.lblstate5.Location = new System.Drawing.Point(1182, 438);
  2117. this.lblstate5.Name = "lblstate5";
  2118. this.lblstate5.Size = new System.Drawing.Size(112, 27);
  2119. this.lblstate5.TabIndex = 88;
  2120. //
  2121. // label53
  2122. //
  2123. this.label53.AutoSize = true;
  2124. this.label53.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2125. this.label53.Location = new System.Drawing.Point(1053, 438);
  2126. this.label53.Name = "label53";
  2127. this.label53.Size = new System.Drawing.Size(92, 27);
  2128. this.label53.TabIndex = 87;
  2129. this.label53.Text = "成功失败";
  2130. //
  2131. // lbldirection2
  2132. //
  2133. this.lbldirection2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2134. this.lbldirection2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2135. this.lbldirection2.Location = new System.Drawing.Point(859, 437);
  2136. this.lbldirection2.Name = "lbldirection2";
  2137. this.lbldirection2.Size = new System.Drawing.Size(112, 27);
  2138. this.lbldirection2.TabIndex = 86;
  2139. //
  2140. // label55
  2141. //
  2142. this.label55.AutoSize = true;
  2143. this.label55.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2144. this.label55.Location = new System.Drawing.Point(730, 437);
  2145. this.label55.Name = "label55";
  2146. this.label55.Size = new System.Drawing.Size(92, 27);
  2147. this.label55.TabIndex = 85;
  2148. this.label55.Text = "顺逆时针";
  2149. //
  2150. // lbldegree2
  2151. //
  2152. this.lbldegree2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2153. this.lbldegree2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2154. this.lbldegree2.Location = new System.Drawing.Point(570, 436);
  2155. this.lbldegree2.Name = "lbldegree2";
  2156. this.lbldegree2.Size = new System.Drawing.Size(112, 27);
  2157. this.lbldegree2.TabIndex = 84;
  2158. //
  2159. // label57
  2160. //
  2161. this.label57.AutoSize = true;
  2162. this.label57.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2163. this.label57.Location = new System.Drawing.Point(441, 436);
  2164. this.label57.Name = "label57";
  2165. this.label57.Size = new System.Drawing.Size(112, 27);
  2166. this.label57.TabIndex = 83;
  2167. this.label57.Text = "偏移角度:";
  2168. //
  2169. // lblstigpath
  2170. //
  2171. this.lblstigpath.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2172. this.lblstigpath.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2173. this.lblstigpath.Location = new System.Drawing.Point(570, 379);
  2174. this.lblstigpath.Name = "lblstigpath";
  2175. this.lblstigpath.Size = new System.Drawing.Size(724, 27);
  2176. this.lblstigpath.TabIndex = 82;
  2177. //
  2178. // label45
  2179. //
  2180. this.label45.AutoSize = true;
  2181. this.label45.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2182. this.label45.Location = new System.Drawing.Point(441, 379);
  2183. this.label45.Name = "label45";
  2184. this.label45.Size = new System.Drawing.Size(112, 27);
  2185. this.label45.TabIndex = 81;
  2186. this.label45.Text = "图像路径:";
  2187. //
  2188. // lblfocuspath
  2189. //
  2190. this.lblfocuspath.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2191. this.lblfocuspath.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2192. this.lblfocuspath.Location = new System.Drawing.Point(570, 314);
  2193. this.lblfocuspath.Name = "lblfocuspath";
  2194. this.lblfocuspath.Size = new System.Drawing.Size(724, 27);
  2195. this.lblfocuspath.TabIndex = 80;
  2196. //
  2197. // label43
  2198. //
  2199. this.label43.AutoSize = true;
  2200. this.label43.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2201. this.label43.Location = new System.Drawing.Point(441, 314);
  2202. this.label43.Name = "label43";
  2203. this.label43.Size = new System.Drawing.Size(112, 27);
  2204. this.label43.TabIndex = 79;
  2205. this.label43.Text = "图像路径:";
  2206. //
  2207. // lblstate4
  2208. //
  2209. this.lblstate4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2210. this.lblstate4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2211. this.lblstate4.Location = new System.Drawing.Point(1182, 238);
  2212. this.lblstate4.Name = "lblstate4";
  2213. this.lblstate4.Size = new System.Drawing.Size(112, 27);
  2214. this.lblstate4.TabIndex = 78;
  2215. //
  2216. // label37
  2217. //
  2218. this.label37.AutoSize = true;
  2219. this.label37.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2220. this.label37.Location = new System.Drawing.Point(1053, 238);
  2221. this.label37.Name = "label37";
  2222. this.label37.Size = new System.Drawing.Size(92, 27);
  2223. this.label37.TabIndex = 77;
  2224. this.label37.Text = "成功失败";
  2225. //
  2226. // lbltopcy
  2227. //
  2228. this.lbltopcy.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2229. this.lbltopcy.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2230. this.lbltopcy.Location = new System.Drawing.Point(859, 238);
  2231. this.lbltopcy.Name = "lbltopcy";
  2232. this.lbltopcy.Size = new System.Drawing.Size(112, 27);
  2233. this.lbltopcy.TabIndex = 76;
  2234. //
  2235. // label39
  2236. //
  2237. this.label39.AutoSize = true;
  2238. this.label39.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2239. this.label39.Location = new System.Drawing.Point(730, 238);
  2240. this.label39.Name = "label39";
  2241. this.label39.Size = new System.Drawing.Size(101, 27);
  2242. this.label39.TabIndex = 75;
  2243. this.label39.Text = "Top_C-Y:";
  2244. //
  2245. // lbltopcx
  2246. //
  2247. this.lbltopcx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2248. this.lbltopcx.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2249. this.lbltopcx.Location = new System.Drawing.Point(570, 238);
  2250. this.lbltopcx.Name = "lbltopcx";
  2251. this.lbltopcx.Size = new System.Drawing.Size(112, 27);
  2252. this.lbltopcx.TabIndex = 74;
  2253. //
  2254. // label41
  2255. //
  2256. this.label41.AutoSize = true;
  2257. this.label41.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2258. this.label41.Location = new System.Drawing.Point(441, 238);
  2259. this.label41.Name = "label41";
  2260. this.label41.Size = new System.Drawing.Size(116, 27);
  2261. this.label41.TabIndex = 73;
  2262. this.label41.Text = "Top_C-X:";
  2263. //
  2264. // lblstate3
  2265. //
  2266. this.lblstate3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2267. this.lblstate3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2268. this.lblstate3.Location = new System.Drawing.Point(1182, 163);
  2269. this.lblstate3.Name = "lblstate3";
  2270. this.lblstate3.Size = new System.Drawing.Size(112, 27);
  2271. this.lblstate3.TabIndex = 72;
  2272. //
  2273. // label35
  2274. //
  2275. this.label35.AutoSize = true;
  2276. this.label35.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2277. this.label35.Location = new System.Drawing.Point(1053, 163);
  2278. this.label35.Name = "label35";
  2279. this.label35.Size = new System.Drawing.Size(92, 27);
  2280. this.label35.TabIndex = 71;
  2281. this.label35.Text = "成功失败";
  2282. //
  2283. // lblstate2
  2284. //
  2285. this.lblstate2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2286. this.lblstate2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2287. this.lblstate2.Location = new System.Drawing.Point(1182, 98);
  2288. this.lblstate2.Name = "lblstate2";
  2289. this.lblstate2.Size = new System.Drawing.Size(112, 27);
  2290. this.lblstate2.TabIndex = 70;
  2291. //
  2292. // label27
  2293. //
  2294. this.label27.AutoSize = true;
  2295. this.label27.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2296. this.label27.Location = new System.Drawing.Point(1053, 98);
  2297. this.label27.Name = "label27";
  2298. this.label27.Size = new System.Drawing.Size(92, 27);
  2299. this.label27.TabIndex = 69;
  2300. this.label27.Text = "成功失败";
  2301. //
  2302. // lbllocationy
  2303. //
  2304. this.lbllocationy.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2305. this.lbllocationy.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2306. this.lbllocationy.Location = new System.Drawing.Point(859, 98);
  2307. this.lbllocationy.Name = "lbllocationy";
  2308. this.lbllocationy.Size = new System.Drawing.Size(112, 27);
  2309. this.lbllocationy.TabIndex = 68;
  2310. //
  2311. // label31
  2312. //
  2313. this.label31.AutoSize = true;
  2314. this.label31.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2315. this.label31.Location = new System.Drawing.Point(730, 98);
  2316. this.label31.Name = "label31";
  2317. this.label31.Size = new System.Drawing.Size(126, 27);
  2318. this.label31.TabIndex = 67;
  2319. this.label31.Text = "Location-Y:";
  2320. //
  2321. // lbllocationx
  2322. //
  2323. this.lbllocationx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2324. this.lbllocationx.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2325. this.lbllocationx.Location = new System.Drawing.Point(570, 98);
  2326. this.lbllocationx.Name = "lbllocationx";
  2327. this.lbllocationx.Size = new System.Drawing.Size(112, 27);
  2328. this.lbllocationx.TabIndex = 66;
  2329. //
  2330. // label33
  2331. //
  2332. this.label33.AutoSize = true;
  2333. this.label33.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2334. this.label33.Location = new System.Drawing.Point(441, 98);
  2335. this.label33.Name = "label33";
  2336. this.label33.Size = new System.Drawing.Size(141, 27);
  2337. this.label33.TabIndex = 65;
  2338. this.label33.Text = "Location-X:";
  2339. //
  2340. // btnPost8
  2341. //
  2342. this.btnPost8.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2343. this.btnPost8.Location = new System.Drawing.Point(40, 518);
  2344. this.btnPost8.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2345. this.btnPost8.Name = "btnPost8";
  2346. this.btnPost8.Size = new System.Drawing.Size(275, 50);
  2347. this.btnPost8.TabIndex = 64;
  2348. this.btnPost8.Text = "测量尺寸";
  2349. this.btnPost8.UseVisualStyleBackColor = true;
  2350. this.btnPost8.Click += new System.EventHandler(this.btnPost8_Click);
  2351. //
  2352. // btnPost7
  2353. //
  2354. this.btnPost7.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2355. this.btnPost7.Location = new System.Drawing.Point(40, 432);
  2356. this.btnPost7.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2357. this.btnPost7.Name = "btnPost7";
  2358. this.btnPost7.Size = new System.Drawing.Size(275, 71);
  2359. this.btnPost7.TabIndex = 63;
  2360. this.btnPost7.Text = "计算切割面区域中心坐标,以及偏移角度及方向";
  2361. this.btnPost7.UseVisualStyleBackColor = true;
  2362. this.btnPost7.Click += new System.EventHandler(this.btnPost7_Click);
  2363. //
  2364. // btnPost6
  2365. //
  2366. this.btnPost6.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2367. this.btnPost6.Location = new System.Drawing.Point(40, 367);
  2368. this.btnPost6.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2369. this.btnPost6.Name = "btnPost6";
  2370. this.btnPost6.Size = new System.Drawing.Size(275, 50);
  2371. this.btnPost6.TabIndex = 62;
  2372. this.btnPost6.Text = "自动消像散";
  2373. this.btnPost6.UseVisualStyleBackColor = true;
  2374. this.btnPost6.Click += new System.EventHandler(this.btnPost6_Click);
  2375. //
  2376. // btnPost5
  2377. //
  2378. this.btnPost5.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2379. this.btnPost5.Location = new System.Drawing.Point(40, 302);
  2380. this.btnPost5.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2381. this.btnPost5.Name = "btnPost5";
  2382. this.btnPost5.Size = new System.Drawing.Size(275, 50);
  2383. this.btnPost5.TabIndex = 61;
  2384. this.btnPost5.Text = "自动对焦";
  2385. this.btnPost5.UseVisualStyleBackColor = true;
  2386. this.btnPost5.Click += new System.EventHandler(this.btnPost5_Click);
  2387. //
  2388. // btnPost4
  2389. //
  2390. this.btnPost4.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2391. this.btnPost4.Location = new System.Drawing.Point(40, 216);
  2392. this.btnPost4.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2393. this.btnPost4.Name = "btnPost4";
  2394. this.btnPost4.Size = new System.Drawing.Size(275, 71);
  2395. this.btnPost4.TabIndex = 60;
  2396. this.btnPost4.Text = "计算切割后图像梯形区域上边中心点坐标";
  2397. this.btnPost4.UseVisualStyleBackColor = true;
  2398. this.btnPost4.Click += new System.EventHandler(this.btnPost4_Click);
  2399. //
  2400. // btnPost3
  2401. //
  2402. this.btnPost3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2403. this.btnPost3.Location = new System.Drawing.Point(40, 151);
  2404. this.btnPost3.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2405. this.btnPost3.Name = "btnPost3";
  2406. this.btnPost3.Size = new System.Drawing.Size(275, 50);
  2407. this.btnPost3.TabIndex = 59;
  2408. this.btnPost3.Text = "是否切割成功验证";
  2409. this.btnPost3.UseVisualStyleBackColor = true;
  2410. this.btnPost3.Click += new System.EventHandler(this.btnPost3_Click);
  2411. //
  2412. // btnPost2
  2413. //
  2414. this.btnPost2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2415. this.btnPost2.Location = new System.Drawing.Point(40, 86);
  2416. this.btnPost2.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2417. this.btnPost2.Name = "btnPost2";
  2418. this.btnPost2.Size = new System.Drawing.Size(275, 50);
  2419. this.btnPost2.TabIndex = 58;
  2420. this.btnPost2.Text = "计算切割点位置";
  2421. this.btnPost2.UseVisualStyleBackColor = true;
  2422. this.btnPost2.Click += new System.EventHandler(this.btnPost2_Click);
  2423. //
  2424. // lblstate1
  2425. //
  2426. this.lblstate1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2427. this.lblstate1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2428. this.lblstate1.Location = new System.Drawing.Point(1182, 33);
  2429. this.lblstate1.Name = "lblstate1";
  2430. this.lblstate1.Size = new System.Drawing.Size(112, 27);
  2431. this.lblstate1.TabIndex = 57;
  2432. //
  2433. // label30
  2434. //
  2435. this.label30.AutoSize = true;
  2436. this.label30.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2437. this.label30.Location = new System.Drawing.Point(1053, 33);
  2438. this.label30.Name = "label30";
  2439. this.label30.Size = new System.Drawing.Size(92, 27);
  2440. this.label30.TabIndex = 56;
  2441. this.label30.Text = "成功失败";
  2442. //
  2443. // lbldirection1
  2444. //
  2445. this.lbldirection1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2446. this.lbldirection1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2447. this.lbldirection1.Location = new System.Drawing.Point(859, 33);
  2448. this.lbldirection1.Name = "lbldirection1";
  2449. this.lbldirection1.Size = new System.Drawing.Size(112, 27);
  2450. this.lbldirection1.TabIndex = 55;
  2451. //
  2452. // label28
  2453. //
  2454. this.label28.AutoSize = true;
  2455. this.label28.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2456. this.label28.Location = new System.Drawing.Point(730, 33);
  2457. this.label28.Name = "label28";
  2458. this.label28.Size = new System.Drawing.Size(92, 27);
  2459. this.label28.TabIndex = 54;
  2460. this.label28.Text = "顺逆时针";
  2461. //
  2462. // lbldegree1
  2463. //
  2464. this.lbldegree1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2465. this.lbldegree1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2466. this.lbldegree1.Location = new System.Drawing.Point(570, 33);
  2467. this.lbldegree1.Name = "lbldegree1";
  2468. this.lbldegree1.Size = new System.Drawing.Size(112, 27);
  2469. this.lbldegree1.TabIndex = 53;
  2470. //
  2471. // label25
  2472. //
  2473. this.label25.AutoSize = true;
  2474. this.label25.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2475. this.label25.Location = new System.Drawing.Point(441, 33);
  2476. this.label25.Name = "label25";
  2477. this.label25.Size = new System.Drawing.Size(112, 27);
  2478. this.label25.TabIndex = 52;
  2479. this.label25.Text = "偏移角度:";
  2480. //
  2481. // btnPost1
  2482. //
  2483. this.btnPost1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2484. this.btnPost1.Location = new System.Drawing.Point(40, 21);
  2485. this.btnPost1.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2486. this.btnPost1.Name = "btnPost1";
  2487. this.btnPost1.Size = new System.Drawing.Size(275, 50);
  2488. this.btnPost1.TabIndex = 51;
  2489. this.btnPost1.Text = "计算原始图像偏移角度及方向";
  2490. this.btnPost1.UseVisualStyleBackColor = true;
  2491. this.btnPost1.Click += new System.EventHandler(this.btnPost1_Click);
  2492. //
  2493. // tabPage3
  2494. //
  2495. this.tabPage3.Controls.Add(this.cbbWPZD);
  2496. this.tabPage3.Controls.Add(this.cbbWPZF);
  2497. this.tabPage3.Controls.Add(this.cbbWQGD);
  2498. this.tabPage3.Controls.Add(this.cbbWQGF);
  2499. this.tabPage3.Controls.Add(this.cbbWLZ);
  2500. this.tabPage3.Controls.Add(this.cbbWXZ);
  2501. this.tabPage3.Controls.Add(this.cbbWCS);
  2502. this.tabPage3.Controls.Add(this.cbbWYP);
  2503. this.tabPage3.Controls.Add(this.txtRXZ);
  2504. this.tabPage3.Controls.Add(this.label26);
  2505. this.tabPage3.Controls.Add(this.txtRPZD);
  2506. this.tabPage3.Controls.Add(this.label29);
  2507. this.tabPage3.Controls.Add(this.txtRPZF);
  2508. this.tabPage3.Controls.Add(this.label34);
  2509. this.tabPage3.Controls.Add(this.txtRQGD);
  2510. this.tabPage3.Controls.Add(this.label36);
  2511. this.tabPage3.Controls.Add(this.txtRQGF);
  2512. this.tabPage3.Controls.Add(this.label40);
  2513. this.tabPage3.Controls.Add(this.txtRLZ);
  2514. this.tabPage3.Controls.Add(this.label44);
  2515. this.tabPage3.Controls.Add(this.chkRIsP);
  2516. this.tabPage3.Controls.Add(this.label52);
  2517. this.tabPage3.Controls.Add(this.txtRYP);
  2518. this.tabPage3.Controls.Add(this.txtRCS);
  2519. this.tabPage3.Controls.Add(this.txtRFIBF);
  2520. this.tabPage3.Controls.Add(this.txtRPTF);
  2521. this.tabPage3.Controls.Add(this.label60);
  2522. this.tabPage3.Controls.Add(this.label63);
  2523. this.tabPage3.Controls.Add(this.label64);
  2524. this.tabPage3.Controls.Add(this.label65);
  2525. this.tabPage3.Controls.Add(this.chkRPT);
  2526. this.tabPage3.Controls.Add(this.label66);
  2527. this.tabPage3.Controls.Add(this.label58);
  2528. this.tabPage3.Controls.Add(this.label50);
  2529. this.tabPage3.Controls.Add(this.label54);
  2530. this.tabPage3.Controls.Add(this.label46);
  2531. this.tabPage3.Controls.Add(this.label42);
  2532. this.tabPage3.Controls.Add(this.label38);
  2533. this.tabPage3.Controls.Add(this.chkWIsP);
  2534. this.tabPage3.Controls.Add(this.label32);
  2535. this.tabPage3.Controls.Add(this.txtWFIBF);
  2536. this.tabPage3.Controls.Add(this.txtWPTF);
  2537. this.tabPage3.Controls.Add(this.label48);
  2538. this.tabPage3.Controls.Add(this.label56);
  2539. this.tabPage3.Controls.Add(this.label59);
  2540. this.tabPage3.Controls.Add(this.label61);
  2541. this.tabPage3.Controls.Add(this.chkWPT);
  2542. this.tabPage3.Controls.Add(this.label62);
  2543. this.tabPage3.Controls.Add(this.btnReadConfig);
  2544. this.tabPage3.Controls.Add(this.btnCreateConfig);
  2545. this.tabPage3.Location = new System.Drawing.Point(4, 25);
  2546. this.tabPage3.Name = "tabPage3";
  2547. this.tabPage3.Size = new System.Drawing.Size(1361, 571);
  2548. this.tabPage3.TabIndex = 2;
  2549. this.tabPage3.Text = "参数文件设计";
  2550. this.tabPage3.UseVisualStyleBackColor = true;
  2551. //
  2552. // cbbWPZD
  2553. //
  2554. this.cbbWPZD.FormattingEnabled = true;
  2555. this.cbbWPZD.Items.AddRange(new object[] {
  2556. "1000",
  2557. "1500",
  2558. "2000",
  2559. "2500",
  2560. "3000"});
  2561. this.cbbWPZD.Location = new System.Drawing.Point(1098, 155);
  2562. this.cbbWPZD.Name = "cbbWPZD";
  2563. this.cbbWPZD.Size = new System.Drawing.Size(121, 23);
  2564. this.cbbWPZD.TabIndex = 75;
  2565. this.cbbWPZD.Text = "2000";
  2566. //
  2567. // cbbWPZF
  2568. //
  2569. this.cbbWPZF.FormattingEnabled = true;
  2570. this.cbbWPZF.Items.AddRange(new object[] {
  2571. "600",
  2572. "1000",
  2573. "2000",
  2574. "10000"});
  2575. this.cbbWPZF.Location = new System.Drawing.Point(780, 155);
  2576. this.cbbWPZF.Name = "cbbWPZF";
  2577. this.cbbWPZF.Size = new System.Drawing.Size(121, 23);
  2578. this.cbbWPZF.TabIndex = 74;
  2579. this.cbbWPZF.Text = "600";
  2580. //
  2581. // cbbWQGD
  2582. //
  2583. this.cbbWQGD.FormattingEnabled = true;
  2584. this.cbbWQGD.Items.AddRange(new object[] {
  2585. "1000",
  2586. "1500",
  2587. "2000",
  2588. "2500",
  2589. "3000"});
  2590. this.cbbWQGD.Location = new System.Drawing.Point(1098, 97);
  2591. this.cbbWQGD.Name = "cbbWQGD";
  2592. this.cbbWQGD.Size = new System.Drawing.Size(121, 23);
  2593. this.cbbWQGD.TabIndex = 73;
  2594. this.cbbWQGD.Text = "2000";
  2595. //
  2596. // cbbWQGF
  2597. //
  2598. this.cbbWQGF.FormattingEnabled = true;
  2599. this.cbbWQGF.Items.AddRange(new object[] {
  2600. "600",
  2601. "1000",
  2602. "2000",
  2603. "10000"});
  2604. this.cbbWQGF.Location = new System.Drawing.Point(780, 97);
  2605. this.cbbWQGF.Name = "cbbWQGF";
  2606. this.cbbWQGF.Size = new System.Drawing.Size(121, 23);
  2607. this.cbbWQGF.TabIndex = 72;
  2608. this.cbbWQGF.Text = "600";
  2609. //
  2610. // cbbWLZ
  2611. //
  2612. this.cbbWLZ.FormattingEnabled = true;
  2613. this.cbbWLZ.Items.AddRange(new object[] {
  2614. "600",
  2615. "1000",
  2616. "2000",
  2617. "10000"});
  2618. this.cbbWLZ.Location = new System.Drawing.Point(419, 97);
  2619. this.cbbWLZ.Name = "cbbWLZ";
  2620. this.cbbWLZ.Size = new System.Drawing.Size(121, 23);
  2621. this.cbbWLZ.TabIndex = 71;
  2622. this.cbbWLZ.Text = "600";
  2623. //
  2624. // cbbWXZ
  2625. //
  2626. this.cbbWXZ.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  2627. this.cbbWXZ.FormattingEnabled = true;
  2628. this.cbbWXZ.Items.AddRange(new object[] {
  2629. "截面观测",
  2630. "表面观测"});
  2631. this.cbbWXZ.Location = new System.Drawing.Point(419, 155);
  2632. this.cbbWXZ.Name = "cbbWXZ";
  2633. this.cbbWXZ.Size = new System.Drawing.Size(121, 23);
  2634. this.cbbWXZ.TabIndex = 70;
  2635. //
  2636. // cbbWCS
  2637. //
  2638. this.cbbWCS.FormattingEnabled = true;
  2639. this.cbbWCS.Location = new System.Drawing.Point(721, 224);
  2640. this.cbbWCS.Name = "cbbWCS";
  2641. this.cbbWCS.Size = new System.Drawing.Size(121, 23);
  2642. this.cbbWCS.TabIndex = 69;
  2643. //
  2644. // cbbWYP
  2645. //
  2646. this.cbbWYP.FormattingEnabled = true;
  2647. this.cbbWYP.Location = new System.Drawing.Point(419, 224);
  2648. this.cbbWYP.Name = "cbbWYP";
  2649. this.cbbWYP.Size = new System.Drawing.Size(121, 23);
  2650. this.cbbWYP.TabIndex = 68;
  2651. //
  2652. // txtRXZ
  2653. //
  2654. this.txtRXZ.Location = new System.Drawing.Point(428, 422);
  2655. this.txtRXZ.Name = "txtRXZ";
  2656. this.txtRXZ.Size = new System.Drawing.Size(91, 25);
  2657. this.txtRXZ.TabIndex = 67;
  2658. //
  2659. // label26
  2660. //
  2661. this.label26.AutoSize = true;
  2662. this.label26.Location = new System.Drawing.Point(281, 425);
  2663. this.label26.Name = "label26";
  2664. this.label26.Size = new System.Drawing.Size(82, 15);
  2665. this.label26.TabIndex = 66;
  2666. this.label26.Text = "校正角度:";
  2667. //
  2668. // txtRPZD
  2669. //
  2670. this.txtRPZD.Location = new System.Drawing.Point(1098, 422);
  2671. this.txtRPZD.Name = "txtRPZD";
  2672. this.txtRPZD.Size = new System.Drawing.Size(145, 25);
  2673. this.txtRPZD.TabIndex = 65;
  2674. //
  2675. // label29
  2676. //
  2677. this.label29.AutoSize = true;
  2678. this.label29.Location = new System.Drawing.Point(980, 425);
  2679. this.label29.Name = "label29";
  2680. this.label29.Size = new System.Drawing.Size(82, 15);
  2681. this.label29.TabIndex = 64;
  2682. this.label29.Text = "拍照电压:";
  2683. //
  2684. // txtRPZF
  2685. //
  2686. this.txtRPZF.Location = new System.Drawing.Point(780, 422);
  2687. this.txtRPZF.Name = "txtRPZF";
  2688. this.txtRPZF.Size = new System.Drawing.Size(145, 25);
  2689. this.txtRPZF.TabIndex = 63;
  2690. //
  2691. // label34
  2692. //
  2693. this.label34.AutoSize = true;
  2694. this.label34.Location = new System.Drawing.Point(632, 425);
  2695. this.label34.Name = "label34";
  2696. this.label34.Size = new System.Drawing.Size(112, 15);
  2697. this.label34.TabIndex = 62;
  2698. this.label34.Text = "拍照放大位数:";
  2699. //
  2700. // txtRQGD
  2701. //
  2702. this.txtRQGD.Location = new System.Drawing.Point(1098, 364);
  2703. this.txtRQGD.Name = "txtRQGD";
  2704. this.txtRQGD.Size = new System.Drawing.Size(145, 25);
  2705. this.txtRQGD.TabIndex = 61;
  2706. //
  2707. // label36
  2708. //
  2709. this.label36.AutoSize = true;
  2710. this.label36.Location = new System.Drawing.Point(980, 367);
  2711. this.label36.Name = "label36";
  2712. this.label36.Size = new System.Drawing.Size(112, 15);
  2713. this.label36.TabIndex = 60;
  2714. this.label36.Text = "定位切割电压:";
  2715. //
  2716. // txtRQGF
  2717. //
  2718. this.txtRQGF.Location = new System.Drawing.Point(780, 364);
  2719. this.txtRQGF.Name = "txtRQGF";
  2720. this.txtRQGF.Size = new System.Drawing.Size(145, 25);
  2721. this.txtRQGF.TabIndex = 59;
  2722. //
  2723. // label40
  2724. //
  2725. this.label40.AutoSize = true;
  2726. this.label40.Location = new System.Drawing.Point(632, 367);
  2727. this.label40.Name = "label40";
  2728. this.label40.Size = new System.Drawing.Size(142, 15);
  2729. this.label40.TabIndex = 58;
  2730. this.label40.Text = "定位切割放大位数:";
  2731. //
  2732. // txtRLZ
  2733. //
  2734. this.txtRLZ.Location = new System.Drawing.Point(428, 364);
  2735. this.txtRLZ.Name = "txtRLZ";
  2736. this.txtRLZ.Size = new System.Drawing.Size(145, 25);
  2737. this.txtRLZ.TabIndex = 57;
  2738. //
  2739. // label44
  2740. //
  2741. this.label44.AutoSize = true;
  2742. this.label44.Location = new System.Drawing.Point(280, 367);
  2743. this.label44.Name = "label44";
  2744. this.label44.Size = new System.Drawing.Size(142, 15);
  2745. this.label44.TabIndex = 56;
  2746. this.label44.Text = "拉直操作放大位数:";
  2747. //
  2748. // chkRIsP
  2749. //
  2750. this.chkRIsP.AutoSize = true;
  2751. this.chkRIsP.Location = new System.Drawing.Point(386, 304);
  2752. this.chkRIsP.Name = "chkRIsP";
  2753. this.chkRIsP.Size = new System.Drawing.Size(18, 17);
  2754. this.chkRIsP.TabIndex = 55;
  2755. this.chkRIsP.UseVisualStyleBackColor = true;
  2756. //
  2757. // label52
  2758. //
  2759. this.label52.AutoSize = true;
  2760. this.label52.Location = new System.Drawing.Point(280, 304);
  2761. this.label52.Name = "label52";
  2762. this.label52.Size = new System.Drawing.Size(97, 15);
  2763. this.label52.TabIndex = 54;
  2764. this.label52.Text = "是否仅拍照:";
  2765. //
  2766. // txtRYP
  2767. //
  2768. this.txtRYP.Location = new System.Drawing.Point(428, 491);
  2769. this.txtRYP.Name = "txtRYP";
  2770. this.txtRYP.Size = new System.Drawing.Size(91, 25);
  2771. this.txtRYP.TabIndex = 53;
  2772. //
  2773. // txtRCS
  2774. //
  2775. this.txtRCS.Location = new System.Drawing.Point(721, 491);
  2776. this.txtRCS.Name = "txtRCS";
  2777. this.txtRCS.Size = new System.Drawing.Size(145, 25);
  2778. this.txtRCS.TabIndex = 52;
  2779. //
  2780. // txtRFIBF
  2781. //
  2782. this.txtRFIBF.Location = new System.Drawing.Point(1098, 301);
  2783. this.txtRFIBF.Name = "txtRFIBF";
  2784. this.txtRFIBF.Size = new System.Drawing.Size(145, 25);
  2785. this.txtRFIBF.TabIndex = 51;
  2786. //
  2787. // txtRPTF
  2788. //
  2789. this.txtRPTF.Location = new System.Drawing.Point(800, 301);
  2790. this.txtRPTF.Name = "txtRPTF";
  2791. this.txtRPTF.Size = new System.Drawing.Size(145, 25);
  2792. this.txtRPTF.TabIndex = 50;
  2793. //
  2794. // label60
  2795. //
  2796. this.label60.AutoSize = true;
  2797. this.label60.Location = new System.Drawing.Point(280, 494);
  2798. this.label60.Name = "label60";
  2799. this.label60.Size = new System.Drawing.Size(82, 15);
  2800. this.label60.TabIndex = 49;
  2801. this.label60.Text = "样品类型:";
  2802. //
  2803. // label63
  2804. //
  2805. this.label63.AutoSize = true;
  2806. this.label63.Location = new System.Drawing.Point(633, 494);
  2807. this.label63.Name = "label63";
  2808. this.label63.Size = new System.Drawing.Size(52, 15);
  2809. this.label63.TabIndex = 48;
  2810. this.label63.Text = "厂商:";
  2811. //
  2812. // label64
  2813. //
  2814. this.label64.AutoSize = true;
  2815. this.label64.Location = new System.Drawing.Point(992, 306);
  2816. this.label64.Name = "label64";
  2817. this.label64.Size = new System.Drawing.Size(100, 15);
  2818. this.label64.TabIndex = 47;
  2819. this.label64.Text = "FIBELY名称:";
  2820. //
  2821. // label65
  2822. //
  2823. this.label65.AutoSize = true;
  2824. this.label65.Location = new System.Drawing.Point(688, 306);
  2825. this.label65.Name = "label65";
  2826. this.label65.Size = new System.Drawing.Size(92, 15);
  2827. this.label65.TabIndex = 46;
  2828. this.label65.Text = "PTELY文件:";
  2829. //
  2830. // chkRPT
  2831. //
  2832. this.chkRPT.AutoSize = true;
  2833. this.chkRPT.Location = new System.Drawing.Point(591, 304);
  2834. this.chkRPT.Name = "chkRPT";
  2835. this.chkRPT.Size = new System.Drawing.Size(18, 17);
  2836. this.chkRPT.TabIndex = 45;
  2837. this.chkRPT.UseVisualStyleBackColor = true;
  2838. //
  2839. // label66
  2840. //
  2841. this.label66.AutoSize = true;
  2842. this.label66.Location = new System.Drawing.Point(485, 304);
  2843. this.label66.Name = "label66";
  2844. this.label66.Size = new System.Drawing.Size(68, 15);
  2845. this.label66.TabIndex = 44;
  2846. this.label66.Text = "是否PT:";
  2847. //
  2848. // label58
  2849. //
  2850. this.label58.AutoSize = true;
  2851. this.label58.Location = new System.Drawing.Point(281, 158);
  2852. this.label58.Name = "label58";
  2853. this.label58.Size = new System.Drawing.Size(82, 15);
  2854. this.label58.TabIndex = 42;
  2855. this.label58.Text = "校正角度:";
  2856. //
  2857. // label50
  2858. //
  2859. this.label50.AutoSize = true;
  2860. this.label50.Location = new System.Drawing.Point(980, 158);
  2861. this.label50.Name = "label50";
  2862. this.label50.Size = new System.Drawing.Size(82, 15);
  2863. this.label50.TabIndex = 40;
  2864. this.label50.Text = "拍照电压:";
  2865. //
  2866. // label54
  2867. //
  2868. this.label54.AutoSize = true;
  2869. this.label54.Location = new System.Drawing.Point(632, 158);
  2870. this.label54.Name = "label54";
  2871. this.label54.Size = new System.Drawing.Size(112, 15);
  2872. this.label54.TabIndex = 38;
  2873. this.label54.Text = "拍照放大位数:";
  2874. //
  2875. // label46
  2876. //
  2877. this.label46.AutoSize = true;
  2878. this.label46.Location = new System.Drawing.Point(980, 100);
  2879. this.label46.Name = "label46";
  2880. this.label46.Size = new System.Drawing.Size(112, 15);
  2881. this.label46.TabIndex = 36;
  2882. this.label46.Text = "定位切割电压:";
  2883. //
  2884. // label42
  2885. //
  2886. this.label42.AutoSize = true;
  2887. this.label42.Location = new System.Drawing.Point(632, 100);
  2888. this.label42.Name = "label42";
  2889. this.label42.Size = new System.Drawing.Size(142, 15);
  2890. this.label42.TabIndex = 34;
  2891. this.label42.Text = "定位切割放大位数:";
  2892. //
  2893. // label38
  2894. //
  2895. this.label38.AutoSize = true;
  2896. this.label38.Location = new System.Drawing.Point(280, 100);
  2897. this.label38.Name = "label38";
  2898. this.label38.Size = new System.Drawing.Size(142, 15);
  2899. this.label38.TabIndex = 32;
  2900. this.label38.Text = "拉直操作放大位数:";
  2901. //
  2902. // chkWIsP
  2903. //
  2904. this.chkWIsP.AutoSize = true;
  2905. this.chkWIsP.Location = new System.Drawing.Point(386, 37);
  2906. this.chkWIsP.Name = "chkWIsP";
  2907. this.chkWIsP.Size = new System.Drawing.Size(18, 17);
  2908. this.chkWIsP.TabIndex = 31;
  2909. this.chkWIsP.UseVisualStyleBackColor = true;
  2910. //
  2911. // label32
  2912. //
  2913. this.label32.AutoSize = true;
  2914. this.label32.Location = new System.Drawing.Point(280, 37);
  2915. this.label32.Name = "label32";
  2916. this.label32.Size = new System.Drawing.Size(97, 15);
  2917. this.label32.TabIndex = 30;
  2918. this.label32.Text = "是否仅拍照:";
  2919. //
  2920. // txtWFIBF
  2921. //
  2922. this.txtWFIBF.Location = new System.Drawing.Point(1098, 34);
  2923. this.txtWFIBF.Name = "txtWFIBF";
  2924. this.txtWFIBF.Size = new System.Drawing.Size(145, 25);
  2925. this.txtWFIBF.TabIndex = 26;
  2926. this.txtWFIBF.Text = "Sample001";
  2927. //
  2928. // txtWPTF
  2929. //
  2930. this.txtWPTF.Location = new System.Drawing.Point(800, 34);
  2931. this.txtWPTF.Name = "txtWPTF";
  2932. this.txtWPTF.Size = new System.Drawing.Size(145, 25);
  2933. this.txtWPTF.TabIndex = 25;
  2934. this.txtWPTF.Text = "HOZ001";
  2935. //
  2936. // label48
  2937. //
  2938. this.label48.AutoSize = true;
  2939. this.label48.Location = new System.Drawing.Point(280, 227);
  2940. this.label48.Name = "label48";
  2941. this.label48.Size = new System.Drawing.Size(82, 15);
  2942. this.label48.TabIndex = 24;
  2943. this.label48.Text = "样品类型:";
  2944. //
  2945. // label56
  2946. //
  2947. this.label56.AutoSize = true;
  2948. this.label56.Location = new System.Drawing.Point(633, 227);
  2949. this.label56.Name = "label56";
  2950. this.label56.Size = new System.Drawing.Size(52, 15);
  2951. this.label56.TabIndex = 20;
  2952. this.label56.Text = "厂商:";
  2953. //
  2954. // label59
  2955. //
  2956. this.label59.AutoSize = true;
  2957. this.label59.Location = new System.Drawing.Point(992, 39);
  2958. this.label59.Name = "label59";
  2959. this.label59.Size = new System.Drawing.Size(100, 15);
  2960. this.label59.TabIndex = 18;
  2961. this.label59.Text = "FIBELY名称:";
  2962. //
  2963. // label61
  2964. //
  2965. this.label61.AutoSize = true;
  2966. this.label61.Location = new System.Drawing.Point(688, 39);
  2967. this.label61.Name = "label61";
  2968. this.label61.Size = new System.Drawing.Size(92, 15);
  2969. this.label61.TabIndex = 16;
  2970. this.label61.Text = "PTELY文件:";
  2971. //
  2972. // chkWPT
  2973. //
  2974. this.chkWPT.AutoSize = true;
  2975. this.chkWPT.Location = new System.Drawing.Point(591, 37);
  2976. this.chkWPT.Name = "chkWPT";
  2977. this.chkWPT.Size = new System.Drawing.Size(18, 17);
  2978. this.chkWPT.TabIndex = 15;
  2979. this.chkWPT.UseVisualStyleBackColor = true;
  2980. //
  2981. // label62
  2982. //
  2983. this.label62.AutoSize = true;
  2984. this.label62.Location = new System.Drawing.Point(485, 37);
  2985. this.label62.Name = "label62";
  2986. this.label62.Size = new System.Drawing.Size(68, 15);
  2987. this.label62.TabIndex = 14;
  2988. this.label62.Text = "是否PT:";
  2989. //
  2990. // btnReadConfig
  2991. //
  2992. this.btnReadConfig.Location = new System.Drawing.Point(77, 288);
  2993. this.btnReadConfig.Name = "btnReadConfig";
  2994. this.btnReadConfig.Size = new System.Drawing.Size(155, 47);
  2995. this.btnReadConfig.TabIndex = 2;
  2996. this.btnReadConfig.Text = "读取配置文件";
  2997. this.btnReadConfig.UseVisualStyleBackColor = true;
  2998. this.btnReadConfig.Click += new System.EventHandler(this.btnReadConfig_Click);
  2999. //
  3000. // btnCreateConfig
  3001. //
  3002. this.btnCreateConfig.Location = new System.Drawing.Point(77, 21);
  3003. this.btnCreateConfig.Name = "btnCreateConfig";
  3004. this.btnCreateConfig.Size = new System.Drawing.Size(155, 47);
  3005. this.btnCreateConfig.TabIndex = 0;
  3006. this.btnCreateConfig.Text = "创建配置文件";
  3007. this.btnCreateConfig.UseVisualStyleBackColor = true;
  3008. this.btnCreateConfig.Click += new System.EventHandler(this.btnCreateConfig_Click);
  3009. //
  3010. // tabPage4
  3011. //
  3012. this.tabPage4.Controls.Add(this.btn60);
  3013. this.tabPage4.Controls.Add(this.btn45);
  3014. this.tabPage4.Controls.Add(this.btn30);
  3015. this.tabPage4.Controls.Add(this.btnrect);
  3016. this.tabPage4.Controls.Add(this.txtdistance);
  3017. this.tabPage4.Controls.Add(this.txtarray);
  3018. this.tabPage4.Controls.Add(this.txty);
  3019. this.tabPage4.Controls.Add(this.txtx);
  3020. this.tabPage4.Controls.Add(this.txtsample1y);
  3021. this.tabPage4.Controls.Add(this.txtsample1x);
  3022. this.tabPage4.Controls.Add(this.label76);
  3023. this.tabPage4.Controls.Add(this.label78);
  3024. this.tabPage4.Controls.Add(this.label74);
  3025. this.tabPage4.Controls.Add(this.label72);
  3026. this.tabPage4.Controls.Add(this.label70);
  3027. this.tabPage4.Controls.Add(this.label68);
  3028. this.tabPage4.Controls.Add(this.chart1);
  3029. this.tabPage4.Controls.Add(this.lblPs1);
  3030. this.tabPage4.Controls.Add(this.btnPsFile);
  3031. this.tabPage4.Location = new System.Drawing.Point(4, 25);
  3032. this.tabPage4.Name = "tabPage4";
  3033. this.tabPage4.Size = new System.Drawing.Size(1361, 571);
  3034. this.tabPage4.TabIndex = 3;
  3035. this.tabPage4.Text = "自动计算坐标";
  3036. this.tabPage4.UseVisualStyleBackColor = true;
  3037. //
  3038. // lblPs1
  3039. //
  3040. this.lblPs1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3041. this.lblPs1.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3042. this.lblPs1.ForeColor = System.Drawing.Color.Blue;
  3043. this.lblPs1.Location = new System.Drawing.Point(229, 22);
  3044. this.lblPs1.Name = "lblPs1";
  3045. this.lblPs1.Size = new System.Drawing.Size(107, 38);
  3046. this.lblPs1.TabIndex = 0;
  3047. this.lblPs1.Text = "0,0";
  3048. this.lblPs1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3049. //
  3050. // btnPsFile
  3051. //
  3052. this.btnPsFile.Location = new System.Drawing.Point(32, 22);
  3053. this.btnPsFile.Name = "btnPsFile";
  3054. this.btnPsFile.Size = new System.Drawing.Size(127, 38);
  3055. this.btnPsFile.TabIndex = 1;
  3056. this.btnPsFile.Text = "打开位置文件";
  3057. this.btnPsFile.UseVisualStyleBackColor = true;
  3058. this.btnPsFile.Click += new System.EventHandler(this.btnPsFile_Click);
  3059. //
  3060. // chart1
  3061. //
  3062. chartArea1.AxisX.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
  3063. chartArea1.AxisX.MajorGrid.Enabled = false;
  3064. chartArea1.AxisX.Maximum = 130D;
  3065. chartArea1.AxisX.Minimum = 0D;
  3066. chartArea1.AxisY.MajorGrid.Enabled = false;
  3067. chartArea1.AxisY.Maximum = 130D;
  3068. chartArea1.AxisY.Minimum = 0D;
  3069. chartArea1.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
  3070. chartArea1.Name = "ChartArea1";
  3071. chartArea1.Position.Auto = false;
  3072. chartArea1.Position.Height = 94F;
  3073. chartArea1.Position.Width = 94F;
  3074. this.chart1.ChartAreas.Add(chartArea1);
  3075. legend1.Enabled = false;
  3076. legend1.Name = "Legend1";
  3077. this.chart1.Legends.Add(legend1);
  3078. this.chart1.Location = new System.Drawing.Point(667, 6);
  3079. this.chart1.Name = "chart1";
  3080. series1.ChartArea = "ChartArea1";
  3081. series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
  3082. series1.IsValueShownAsLabel = true;
  3083. series1.Legend = "Legend1";
  3084. series1.MarkerBorderColor = System.Drawing.Color.Red;
  3085. series1.MarkerColor = System.Drawing.Color.White;
  3086. series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
  3087. series1.Name = "Series1";
  3088. series2.ChartArea = "ChartArea1";
  3089. series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
  3090. series2.Legend = "Legend1";
  3091. series2.MarkerBorderColor = System.Drawing.Color.Black;
  3092. series2.MarkerColor = System.Drawing.Color.Black;
  3093. series2.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Square;
  3094. series2.Name = "Series2";
  3095. dataPoint1.MarkerBorderWidth = 3;
  3096. dataPoint1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Star4;
  3097. series2.Points.Add(dataPoint1);
  3098. this.chart1.Series.Add(series1);
  3099. this.chart1.Series.Add(series2);
  3100. this.chart1.Size = new System.Drawing.Size(590, 557);
  3101. this.chart1.TabIndex = 2;
  3102. this.chart1.Text = "chart1";
  3103. //
  3104. // label68
  3105. //
  3106. this.label68.AutoSize = true;
  3107. this.label68.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3108. this.label68.Location = new System.Drawing.Point(47, 209);
  3109. this.label68.Name = "label68";
  3110. this.label68.Size = new System.Drawing.Size(146, 27);
  3111. this.label68.TabIndex = 54;
  3112. this.label68.Text = "中心点X轴坐标";
  3113. //
  3114. // label70
  3115. //
  3116. this.label70.AutoSize = true;
  3117. this.label70.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3118. this.label70.Location = new System.Drawing.Point(47, 260);
  3119. this.label70.Name = "label70";
  3120. this.label70.Size = new System.Drawing.Size(145, 27);
  3121. this.label70.TabIndex = 56;
  3122. this.label70.Text = "中心点Y轴坐标";
  3123. //
  3124. // label72
  3125. //
  3126. this.label72.AutoSize = true;
  3127. this.label72.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3128. this.label72.Location = new System.Drawing.Point(47, 314);
  3129. this.label72.Name = "label72";
  3130. this.label72.Size = new System.Drawing.Size(152, 27);
  3131. this.label72.TabIndex = 58;
  3132. this.label72.Text = "默认样品排列数";
  3133. //
  3134. // label74
  3135. //
  3136. this.label74.AutoSize = true;
  3137. this.label74.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3138. this.label74.Location = new System.Drawing.Point(47, 367);
  3139. this.label74.Name = "label74";
  3140. this.label74.Size = new System.Drawing.Size(112, 27);
  3141. this.label74.TabIndex = 60;
  3142. this.label74.Text = "样品间距离";
  3143. //
  3144. // label76
  3145. //
  3146. this.label76.AutoSize = true;
  3147. this.label76.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3148. this.label76.Location = new System.Drawing.Point(46, 152);
  3149. this.label76.Name = "label76";
  3150. this.label76.Size = new System.Drawing.Size(146, 27);
  3151. this.label76.TabIndex = 65;
  3152. this.label76.Text = "样品1-Y轴坐标";
  3153. //
  3154. // label78
  3155. //
  3156. this.label78.AutoSize = true;
  3157. this.label78.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3158. this.label78.Location = new System.Drawing.Point(46, 101);
  3159. this.label78.Name = "label78";
  3160. this.label78.Size = new System.Drawing.Size(147, 27);
  3161. this.label78.TabIndex = 63;
  3162. this.label78.Text = "样品1-X轴坐标";
  3163. //
  3164. // txtsample1x
  3165. //
  3166. this.txtsample1x.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3167. this.txtsample1x.Location = new System.Drawing.Point(307, 103);
  3168. this.txtsample1x.Name = "txtsample1x";
  3169. this.txtsample1x.Size = new System.Drawing.Size(100, 28);
  3170. this.txtsample1x.TabIndex = 67;
  3171. this.txtsample1x.Text = "0";
  3172. this.txtsample1x.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3173. //
  3174. // txtsample1y
  3175. //
  3176. this.txtsample1y.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3177. this.txtsample1y.Location = new System.Drawing.Point(307, 154);
  3178. this.txtsample1y.Name = "txtsample1y";
  3179. this.txtsample1y.Size = new System.Drawing.Size(100, 28);
  3180. this.txtsample1y.TabIndex = 68;
  3181. this.txtsample1y.Text = "130";
  3182. this.txtsample1y.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3183. //
  3184. // txty
  3185. //
  3186. this.txty.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3187. this.txty.Location = new System.Drawing.Point(307, 262);
  3188. this.txty.Name = "txty";
  3189. this.txty.Size = new System.Drawing.Size(100, 28);
  3190. this.txty.TabIndex = 70;
  3191. this.txty.Text = "65";
  3192. this.txty.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3193. //
  3194. // txtx
  3195. //
  3196. this.txtx.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3197. this.txtx.Location = new System.Drawing.Point(307, 211);
  3198. this.txtx.Name = "txtx";
  3199. this.txtx.Size = new System.Drawing.Size(100, 28);
  3200. this.txtx.TabIndex = 69;
  3201. this.txtx.Text = "65";
  3202. this.txtx.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3203. //
  3204. // txtdistance
  3205. //
  3206. this.txtdistance.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3207. this.txtdistance.Location = new System.Drawing.Point(307, 367);
  3208. this.txtdistance.Name = "txtdistance";
  3209. this.txtdistance.Size = new System.Drawing.Size(100, 28);
  3210. this.txtdistance.TabIndex = 72;
  3211. this.txtdistance.Text = "30";
  3212. this.txtdistance.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3213. //
  3214. // txtarray
  3215. //
  3216. this.txtarray.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3217. this.txtarray.Location = new System.Drawing.Point(307, 316);
  3218. this.txtarray.Name = "txtarray";
  3219. this.txtarray.Size = new System.Drawing.Size(100, 28);
  3220. this.txtarray.TabIndex = 71;
  3221. this.txtarray.Text = "4";
  3222. this.txtarray.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3223. //
  3224. // btnrect
  3225. //
  3226. this.btnrect.Location = new System.Drawing.Point(51, 472);
  3227. this.btnrect.Name = "btnrect";
  3228. this.btnrect.Size = new System.Drawing.Size(127, 38);
  3229. this.btnrect.TabIndex = 73;
  3230. this.btnrect.Text = "计算显示";
  3231. this.btnrect.UseVisualStyleBackColor = true;
  3232. this.btnrect.Click += new System.EventHandler(this.btnrect_Click);
  3233. //
  3234. // btn30
  3235. //
  3236. this.btn30.Location = new System.Drawing.Point(476, 96);
  3237. this.btn30.Name = "btn30";
  3238. this.btn30.Size = new System.Drawing.Size(81, 38);
  3239. this.btn30.TabIndex = 74;
  3240. this.btn30.Text = "30度";
  3241. this.btn30.UseVisualStyleBackColor = true;
  3242. this.btn30.Click += new System.EventHandler(this.btn30_Click);
  3243. //
  3244. // btn45
  3245. //
  3246. this.btn45.Location = new System.Drawing.Point(476, 148);
  3247. this.btn45.Name = "btn45";
  3248. this.btn45.Size = new System.Drawing.Size(81, 38);
  3249. this.btn45.TabIndex = 75;
  3250. this.btn45.Text = "45度";
  3251. this.btn45.UseVisualStyleBackColor = true;
  3252. this.btn45.Click += new System.EventHandler(this.btn45_Click);
  3253. //
  3254. // btn60
  3255. //
  3256. this.btn60.Location = new System.Drawing.Point(476, 201);
  3257. this.btn60.Name = "btn60";
  3258. this.btn60.Size = new System.Drawing.Size(81, 38);
  3259. this.btn60.TabIndex = 76;
  3260. this.btn60.Text = "60度";
  3261. this.btn60.UseVisualStyleBackColor = true;
  3262. this.btn60.Click += new System.EventHandler(this.btn60_Click);
  3263. //
  3264. // FormUnitControl
  3265. //
  3266. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  3267. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  3268. this.ClientSize = new System.Drawing.Size(1369, 600);
  3269. this.Controls.Add(this.tabControl1);
  3270. this.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  3271. this.Name = "FormUnitControl";
  3272. this.Text = "UnitControl";
  3273. this.Load += new System.EventHandler(this.FormUnitControl_Load);
  3274. this.panelControl.ResumeLayout(false);
  3275. this.panelSEM.ResumeLayout(false);
  3276. this.panelSEM.PerformLayout();
  3277. this.panelFIB.ResumeLayout(false);
  3278. this.panelFIB.PerformLayout();
  3279. this.panelStage.ResumeLayout(false);
  3280. this.panelStage.PerformLayout();
  3281. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  3282. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  3283. this.tabControl1.ResumeLayout(false);
  3284. this.tabPage1.ResumeLayout(false);
  3285. this.tabPage2.ResumeLayout(false);
  3286. this.tabPage2.PerformLayout();
  3287. this.tabPage3.ResumeLayout(false);
  3288. this.tabPage3.PerformLayout();
  3289. this.tabPage4.ResumeLayout(false);
  3290. this.tabPage4.PerformLayout();
  3291. ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
  3292. this.ResumeLayout(false);
  3293. }
  3294. #endregion
  3295. private System.Windows.Forms.Button btnGrabImage;
  3296. private System.Windows.Forms.Button btnenlargeGet;
  3297. private System.Windows.Forms.Button btnenlargeSet;
  3298. private System.Windows.Forms.TextBox txtenlargeSet;
  3299. private System.Windows.Forms.Label label1;
  3300. private System.Windows.Forms.Button btnWDSet;
  3301. private System.Windows.Forms.TextBox txtWDSet;
  3302. private System.Windows.Forms.Label label3;
  3303. private System.Windows.Forms.Button btnWDGet;
  3304. private System.Windows.Forms.Button btnContrastSet;
  3305. private System.Windows.Forms.TextBox txtContrastSet;
  3306. private System.Windows.Forms.Label label4;
  3307. private System.Windows.Forms.Button btnContrastGet;
  3308. private System.Windows.Forms.Button btnBrightnessSet;
  3309. private System.Windows.Forms.TextBox txtBrightnessSet;
  3310. private System.Windows.Forms.Label label6;
  3311. private System.Windows.Forms.Button btnBrightnessGet;
  3312. private System.Windows.Forms.Button btnAstigmatismYSet;
  3313. private System.Windows.Forms.TextBox txtAstigmatismYSet;
  3314. private System.Windows.Forms.Label label5;
  3315. private System.Windows.Forms.Button btnAstigmatismYGet;
  3316. private System.Windows.Forms.Button btnAstigmatismXSet;
  3317. private System.Windows.Forms.TextBox txtAstigmatismXSet;
  3318. private System.Windows.Forms.Label label8;
  3319. private System.Windows.Forms.Button btnAstigmatismXGet;
  3320. private System.Windows.Forms.Button btnTiltAngleSet;
  3321. private System.Windows.Forms.TextBox txtTiltAngleSet;
  3322. private System.Windows.Forms.Label label7;
  3323. private System.Windows.Forms.Button btnTiltAngleGet;
  3324. private System.Windows.Forms.Label label9;
  3325. private System.Windows.Forms.Button btnPixelSizeGet;
  3326. private System.Windows.Forms.Button btnScanRotationSet;
  3327. private System.Windows.Forms.TextBox txtScanRotationSet;
  3328. private System.Windows.Forms.Label label11;
  3329. private System.Windows.Forms.Button btnScanRotationGet;
  3330. private System.Windows.Forms.Button btnCloseVoltage;
  3331. private System.Windows.Forms.Button btnOpenVoltage;
  3332. private System.Windows.Forms.Button btnStageSetM;
  3333. private System.Windows.Forms.TextBox txtStageM;
  3334. private System.Windows.Forms.Label lblStageM;
  3335. private System.Windows.Forms.Label label10;
  3336. private System.Windows.Forms.Button btnStageGetM;
  3337. private System.Windows.Forms.Button btnStageSetR;
  3338. private System.Windows.Forms.TextBox txtStageR;
  3339. private System.Windows.Forms.Label lblStageR;
  3340. private System.Windows.Forms.Label label13;
  3341. private System.Windows.Forms.Button btnStageGetR;
  3342. private System.Windows.Forms.Button btnStageSetT;
  3343. private System.Windows.Forms.TextBox txtStageT;
  3344. private System.Windows.Forms.Label lblStageT;
  3345. private System.Windows.Forms.Label label15;
  3346. private System.Windows.Forms.Button btnStageGetT;
  3347. private System.Windows.Forms.Button btnStageSetZ;
  3348. private System.Windows.Forms.TextBox txtStageZ;
  3349. private System.Windows.Forms.Label lblStageZ;
  3350. private System.Windows.Forms.Label label17;
  3351. private System.Windows.Forms.Button btnStageGetZ;
  3352. private System.Windows.Forms.Button btnStageSetY;
  3353. private System.Windows.Forms.TextBox txtStageY;
  3354. private System.Windows.Forms.Label lblStageY;
  3355. private System.Windows.Forms.Label label19;
  3356. private System.Windows.Forms.Button btnStageGetY;
  3357. private System.Windows.Forms.Button btnStageSetX;
  3358. private System.Windows.Forms.TextBox txtStageX;
  3359. private System.Windows.Forms.Label lblStageX;
  3360. private System.Windows.Forms.Label label21;
  3361. private System.Windows.Forms.Button btnStageGetX;
  3362. private System.Windows.Forms.Button btnGetStagePosition;
  3363. private System.Windows.Forms.Button btnReadXml;
  3364. private System.Windows.Forms.Button btnWriteXml;
  3365. private System.Windows.Forms.Panel panelControl;
  3366. private System.Windows.Forms.Button btnSEM;
  3367. private System.Windows.Forms.Button btnAutoFocus1;
  3368. private System.Windows.Forms.Button btnAutoFocus2;
  3369. private System.Windows.Forms.Button btnAutoBrightness;
  3370. private System.Windows.Forms.Button btnAutoContrast;
  3371. private System.Windows.Forms.Button btnAutoBCCancle;
  3372. private System.Windows.Forms.Button btnAutoBC;
  3373. private System.Windows.Forms.Button btnAutoStig;
  3374. private System.Windows.Forms.Panel panelSEM;
  3375. private System.Windows.Forms.Panel panelFIB;
  3376. private System.Windows.Forms.Button btnMILL;
  3377. private System.Windows.Forms.Button btnFIB;
  3378. private System.Windows.Forms.Label lblPixelSizeGet;
  3379. private System.Windows.Forms.Button btnTiltCorrYSet;
  3380. private System.Windows.Forms.TextBox txtTiltCorrY;
  3381. private System.Windows.Forms.Label label2;
  3382. private System.Windows.Forms.Button btnTiltCorrYGet;
  3383. private System.Windows.Forms.Button btnTiltCorrXSet;
  3384. private System.Windows.Forms.TextBox txtTiltCorrX;
  3385. private System.Windows.Forms.Button btnTiltCorrXGet;
  3386. private System.Windows.Forms.Label label12;
  3387. private System.Windows.Forms.Button btnTiltCorr;
  3388. private System.Windows.Forms.Button btnFIBBeamShiftYSet;
  3389. private System.Windows.Forms.TextBox txtFIBBeamShiftY;
  3390. private System.Windows.Forms.Label label18;
  3391. private System.Windows.Forms.Button btnFIBBeamShiftYGet;
  3392. private System.Windows.Forms.Button btnFIBBeamShiftXSet;
  3393. private System.Windows.Forms.TextBox txtFIBBeamShiftX;
  3394. private System.Windows.Forms.Button btnFIBBeamShiftXGet;
  3395. private System.Windows.Forms.Label label20;
  3396. private System.Windows.Forms.Button btnMCF;
  3397. private System.Windows.Forms.Label label14;
  3398. private System.Windows.Forms.Button btnFIBMagSet;
  3399. private System.Windows.Forms.Button btnFIBMagGet;
  3400. private System.Windows.Forms.TextBox txtFIBMag;
  3401. private System.Windows.Forms.Button btnFIBWDSet;
  3402. private System.Windows.Forms.Button btnFIBWDGet;
  3403. private System.Windows.Forms.Label label16;
  3404. private System.Windows.Forms.TextBox txtFIBWD;
  3405. private System.Windows.Forms.Button btnFIBAstigmatismYSet;
  3406. private System.Windows.Forms.TextBox txtFIBAstigmatismY;
  3407. private System.Windows.Forms.Label label22;
  3408. private System.Windows.Forms.Button btnFIBAstigmatismYGet;
  3409. private System.Windows.Forms.Button btnFIBAstigmatismXSet;
  3410. private System.Windows.Forms.TextBox txtFIBAstigmatismX;
  3411. private System.Windows.Forms.Button btnFIBAstigmatismXGet;
  3412. private System.Windows.Forms.Label label23;
  3413. private System.Windows.Forms.Panel panelStage;
  3414. private System.Windows.Forms.Label label24;
  3415. private System.Windows.Forms.Button btnMoveXY;
  3416. private System.Windows.Forms.Button btnImageStoreGet;
  3417. private System.Windows.Forms.Button btnImageStoreSet;
  3418. private System.Windows.Forms.ComboBox cmbImageStore;
  3419. private System.Windows.Forms.Label lblImageStore;
  3420. private System.Windows.Forms.Button btnAbort;
  3421. private System.Windows.Forms.PictureBox pictureBox2;
  3422. private System.Windows.Forms.PictureBox pictureBox1;
  3423. private System.Windows.Forms.Button btnFrozen;
  3424. private System.Windows.Forms.Button btnLive;
  3425. private System.Windows.Forms.Button btnExeEly;
  3426. private System.Windows.Forms.Button btnExeEly2;
  3427. private System.Windows.Forms.Button btnFIBStatus;
  3428. private System.Windows.Forms.TabControl tabControl1;
  3429. private System.Windows.Forms.TabPage tabPage1;
  3430. private System.Windows.Forms.TabPage tabPage2;
  3431. private System.Windows.Forms.Button btnPost1;
  3432. private System.Windows.Forms.Label lblstate6;
  3433. private System.Windows.Forms.Label label47;
  3434. private System.Windows.Forms.Label lblcentery;
  3435. private System.Windows.Forms.Label label49;
  3436. private System.Windows.Forms.Label lblcenterx;
  3437. private System.Windows.Forms.Label label51;
  3438. private System.Windows.Forms.Label lblstate5;
  3439. private System.Windows.Forms.Label label53;
  3440. private System.Windows.Forms.Label lbldirection2;
  3441. private System.Windows.Forms.Label label55;
  3442. private System.Windows.Forms.Label lbldegree2;
  3443. private System.Windows.Forms.Label label57;
  3444. private System.Windows.Forms.Label lblstigpath;
  3445. private System.Windows.Forms.Label label45;
  3446. private System.Windows.Forms.Label lblfocuspath;
  3447. private System.Windows.Forms.Label label43;
  3448. private System.Windows.Forms.Label lblstate4;
  3449. private System.Windows.Forms.Label label37;
  3450. private System.Windows.Forms.Label lbltopcy;
  3451. private System.Windows.Forms.Label label39;
  3452. private System.Windows.Forms.Label lbltopcx;
  3453. private System.Windows.Forms.Label label41;
  3454. private System.Windows.Forms.Label lblstate3;
  3455. private System.Windows.Forms.Label label35;
  3456. private System.Windows.Forms.Label lblstate2;
  3457. private System.Windows.Forms.Label label27;
  3458. private System.Windows.Forms.Label lbllocationy;
  3459. private System.Windows.Forms.Label label31;
  3460. private System.Windows.Forms.Label lbllocationx;
  3461. private System.Windows.Forms.Label label33;
  3462. private System.Windows.Forms.Button btnPost8;
  3463. private System.Windows.Forms.Button btnPost7;
  3464. private System.Windows.Forms.Button btnPost6;
  3465. private System.Windows.Forms.Button btnPost5;
  3466. private System.Windows.Forms.Button btnPost4;
  3467. private System.Windows.Forms.Button btnPost3;
  3468. private System.Windows.Forms.Button btnPost2;
  3469. private System.Windows.Forms.Label lblstate1;
  3470. private System.Windows.Forms.Label label30;
  3471. private System.Windows.Forms.Label lbldirection1;
  3472. private System.Windows.Forms.Label label28;
  3473. private System.Windows.Forms.Label lbldegree1;
  3474. private System.Windows.Forms.Label label25;
  3475. private System.Windows.Forms.Button btnScanRotationSetLock;
  3476. private System.Windows.Forms.Button btnTiltAngleSetOff;
  3477. private System.Windows.Forms.Button btnTiltAngleSetOn;
  3478. private System.Windows.Forms.Button btnScanRotationSetOn;
  3479. private System.Windows.Forms.Button btnExeEly3;
  3480. private System.Windows.Forms.TabPage tabPage3;
  3481. private System.Windows.Forms.Button btnCreateConfig;
  3482. private System.Windows.Forms.Button btnReadConfig;
  3483. private System.Windows.Forms.TextBox txtWFIBF;
  3484. private System.Windows.Forms.TextBox txtWPTF;
  3485. private System.Windows.Forms.Label label48;
  3486. private System.Windows.Forms.Label label56;
  3487. private System.Windows.Forms.Label label59;
  3488. private System.Windows.Forms.Label label61;
  3489. private System.Windows.Forms.CheckBox chkWPT;
  3490. private System.Windows.Forms.Label label62;
  3491. private System.Windows.Forms.TextBox txtRXZ;
  3492. private System.Windows.Forms.Label label26;
  3493. private System.Windows.Forms.TextBox txtRPZD;
  3494. private System.Windows.Forms.Label label29;
  3495. private System.Windows.Forms.TextBox txtRPZF;
  3496. private System.Windows.Forms.Label label34;
  3497. private System.Windows.Forms.TextBox txtRQGD;
  3498. private System.Windows.Forms.Label label36;
  3499. private System.Windows.Forms.TextBox txtRQGF;
  3500. private System.Windows.Forms.Label label40;
  3501. private System.Windows.Forms.TextBox txtRLZ;
  3502. private System.Windows.Forms.Label label44;
  3503. private System.Windows.Forms.CheckBox chkRIsP;
  3504. private System.Windows.Forms.Label label52;
  3505. private System.Windows.Forms.TextBox txtRYP;
  3506. private System.Windows.Forms.TextBox txtRCS;
  3507. private System.Windows.Forms.TextBox txtRFIBF;
  3508. private System.Windows.Forms.TextBox txtRPTF;
  3509. private System.Windows.Forms.Label label60;
  3510. private System.Windows.Forms.Label label63;
  3511. private System.Windows.Forms.Label label64;
  3512. private System.Windows.Forms.Label label65;
  3513. private System.Windows.Forms.CheckBox chkRPT;
  3514. private System.Windows.Forms.Label label66;
  3515. private System.Windows.Forms.Label label58;
  3516. private System.Windows.Forms.Label label50;
  3517. private System.Windows.Forms.Label label54;
  3518. private System.Windows.Forms.Label label46;
  3519. private System.Windows.Forms.Label label42;
  3520. private System.Windows.Forms.Label label38;
  3521. private System.Windows.Forms.CheckBox chkWIsP;
  3522. private System.Windows.Forms.Label label32;
  3523. private System.Windows.Forms.ComboBox cbbWCS;
  3524. private System.Windows.Forms.ComboBox cbbWYP;
  3525. private System.Windows.Forms.ComboBox cbbWXZ;
  3526. private System.Windows.Forms.ComboBox cbbWPZD;
  3527. private System.Windows.Forms.ComboBox cbbWPZF;
  3528. private System.Windows.Forms.ComboBox cbbWQGD;
  3529. private System.Windows.Forms.ComboBox cbbWQGF;
  3530. private System.Windows.Forms.ComboBox cbbWLZ;
  3531. private System.Windows.Forms.TabPage tabPage4;
  3532. private System.Windows.Forms.Button btnPsFile;
  3533. private System.Windows.Forms.Label lblPs1;
  3534. private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
  3535. private System.Windows.Forms.Label label76;
  3536. private System.Windows.Forms.Label label78;
  3537. private System.Windows.Forms.Label label74;
  3538. private System.Windows.Forms.Label label72;
  3539. private System.Windows.Forms.Label label70;
  3540. private System.Windows.Forms.Label label68;
  3541. private System.Windows.Forms.TextBox txtdistance;
  3542. private System.Windows.Forms.TextBox txtarray;
  3543. private System.Windows.Forms.TextBox txty;
  3544. private System.Windows.Forms.TextBox txtx;
  3545. private System.Windows.Forms.TextBox txtsample1y;
  3546. private System.Windows.Forms.TextBox txtsample1x;
  3547. private System.Windows.Forms.Button btnrect;
  3548. private System.Windows.Forms.Button btn60;
  3549. private System.Windows.Forms.Button btn45;
  3550. private System.Windows.Forms.Button btn30;
  3551. }
  3552. }