FormUnitControl.Designer.cs 200 KB

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