FormUnitControl.Designer.cs 253 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653
  1. namespace HOZProject
  2. {
  3. partial class FormUnitControl
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
  29. System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
  30. System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
  31. System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
  32. System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(65D, 65D);
  33. this.btnGrabImage = new System.Windows.Forms.Button();
  34. this.btnenlargeGet = new System.Windows.Forms.Button();
  35. this.btnWriteXml = new System.Windows.Forms.Button();
  36. this.btnReadXml = new System.Windows.Forms.Button();
  37. this.btnGetStagePosition = new System.Windows.Forms.Button();
  38. this.btnStageSetM = new System.Windows.Forms.Button();
  39. this.txtStageM = new System.Windows.Forms.TextBox();
  40. this.lblStageM = new System.Windows.Forms.Label();
  41. this.label10 = new System.Windows.Forms.Label();
  42. this.btnStageGetM = new System.Windows.Forms.Button();
  43. this.btnStageSetR = new System.Windows.Forms.Button();
  44. this.txtStageR = new System.Windows.Forms.TextBox();
  45. this.lblStageR = new System.Windows.Forms.Label();
  46. this.label13 = new System.Windows.Forms.Label();
  47. this.btnStageGetR = new System.Windows.Forms.Button();
  48. this.btnStageSetT = new System.Windows.Forms.Button();
  49. this.txtStageT = new System.Windows.Forms.TextBox();
  50. this.lblStageT = new System.Windows.Forms.Label();
  51. this.label15 = new System.Windows.Forms.Label();
  52. this.btnStageGetT = new System.Windows.Forms.Button();
  53. this.btnStageSetZ = new System.Windows.Forms.Button();
  54. this.txtStageZ = new System.Windows.Forms.TextBox();
  55. this.lblStageZ = new System.Windows.Forms.Label();
  56. this.label17 = new System.Windows.Forms.Label();
  57. this.btnStageGetZ = new System.Windows.Forms.Button();
  58. this.btnStageSetY = new System.Windows.Forms.Button();
  59. this.txtStageY = new System.Windows.Forms.TextBox();
  60. this.lblStageY = new System.Windows.Forms.Label();
  61. this.label19 = new System.Windows.Forms.Label();
  62. this.btnStageGetY = new System.Windows.Forms.Button();
  63. this.btnStageSetX = new System.Windows.Forms.Button();
  64. this.txtStageX = new System.Windows.Forms.TextBox();
  65. this.lblStageX = new System.Windows.Forms.Label();
  66. this.label21 = new System.Windows.Forms.Label();
  67. this.btnStageGetX = new System.Windows.Forms.Button();
  68. this.btnCloseVoltage = new System.Windows.Forms.Button();
  69. this.btnOpenVoltage = new System.Windows.Forms.Button();
  70. this.label9 = new System.Windows.Forms.Label();
  71. this.btnPixelSizeGet = new System.Windows.Forms.Button();
  72. this.btnScanRotationSet = new System.Windows.Forms.Button();
  73. this.txtScanRotationSet = new System.Windows.Forms.TextBox();
  74. this.label11 = new System.Windows.Forms.Label();
  75. this.btnScanRotationGet = new System.Windows.Forms.Button();
  76. this.btnTiltAngleSet = new System.Windows.Forms.Button();
  77. this.txtTiltAngleSet = new System.Windows.Forms.TextBox();
  78. this.label7 = new System.Windows.Forms.Label();
  79. this.btnTiltAngleGet = new System.Windows.Forms.Button();
  80. this.btnAstigmatismYSet = new System.Windows.Forms.Button();
  81. this.txtAstigmatismYSet = new System.Windows.Forms.TextBox();
  82. this.label5 = new System.Windows.Forms.Label();
  83. this.btnAstigmatismYGet = new System.Windows.Forms.Button();
  84. this.btnAstigmatismXSet = new System.Windows.Forms.Button();
  85. this.txtAstigmatismXSet = new System.Windows.Forms.TextBox();
  86. this.label8 = new System.Windows.Forms.Label();
  87. this.btnAstigmatismXGet = new System.Windows.Forms.Button();
  88. this.btnContrastSet = new System.Windows.Forms.Button();
  89. this.txtContrastSet = new System.Windows.Forms.TextBox();
  90. this.label4 = new System.Windows.Forms.Label();
  91. this.btnContrastGet = new System.Windows.Forms.Button();
  92. this.btnBrightnessSet = new System.Windows.Forms.Button();
  93. this.txtBrightnessSet = new System.Windows.Forms.TextBox();
  94. this.label6 = new System.Windows.Forms.Label();
  95. this.btnBrightnessGet = new System.Windows.Forms.Button();
  96. this.btnWDSet = new System.Windows.Forms.Button();
  97. this.txtWDSet = new System.Windows.Forms.TextBox();
  98. this.label3 = new System.Windows.Forms.Label();
  99. this.btnWDGet = new System.Windows.Forms.Button();
  100. this.btnenlargeSet = new System.Windows.Forms.Button();
  101. this.txtenlargeSet = new System.Windows.Forms.TextBox();
  102. this.label1 = new System.Windows.Forms.Label();
  103. this.panelControl = new System.Windows.Forms.Panel();
  104. this.button4 = new System.Windows.Forms.Button();
  105. this.btnMILL = new System.Windows.Forms.Button();
  106. this.btnFIB = new System.Windows.Forms.Button();
  107. this.panelSEM = new System.Windows.Forms.Panel();
  108. this.panelFIB = new System.Windows.Forms.Panel();
  109. this.btnExeEly3 = new System.Windows.Forms.Button();
  110. this.btnFIBStatus = new System.Windows.Forms.Button();
  111. this.btnExeEly2 = new System.Windows.Forms.Button();
  112. this.btnExeEly = new System.Windows.Forms.Button();
  113. this.btnFIBAstigmatismYSet = new System.Windows.Forms.Button();
  114. this.txtFIBAstigmatismY = new System.Windows.Forms.TextBox();
  115. this.label22 = new System.Windows.Forms.Label();
  116. this.btnFIBAstigmatismYGet = new System.Windows.Forms.Button();
  117. this.btnFIBAstigmatismXSet = new System.Windows.Forms.Button();
  118. this.txtFIBAstigmatismX = new System.Windows.Forms.TextBox();
  119. this.btnFIBAstigmatismXGet = new System.Windows.Forms.Button();
  120. this.label23 = new System.Windows.Forms.Label();
  121. this.btnFIBBeamShiftYSet = new System.Windows.Forms.Button();
  122. this.txtFIBBeamShiftY = new System.Windows.Forms.TextBox();
  123. this.label18 = new System.Windows.Forms.Label();
  124. this.btnFIBBeamShiftYGet = new System.Windows.Forms.Button();
  125. this.btnFIBBeamShiftXSet = new System.Windows.Forms.Button();
  126. this.txtFIBBeamShiftX = new System.Windows.Forms.TextBox();
  127. this.btnFIBBeamShiftXGet = new System.Windows.Forms.Button();
  128. this.label20 = new System.Windows.Forms.Label();
  129. this.btnMCF = new System.Windows.Forms.Button();
  130. this.label14 = new System.Windows.Forms.Label();
  131. this.btnFIBMagSet = new System.Windows.Forms.Button();
  132. this.btnFIBMagGet = new System.Windows.Forms.Button();
  133. this.txtFIBMag = new System.Windows.Forms.TextBox();
  134. this.btnFIBWDSet = new System.Windows.Forms.Button();
  135. this.btnFIBWDGet = new System.Windows.Forms.Button();
  136. this.label16 = new System.Windows.Forms.Label();
  137. this.txtFIBWD = new System.Windows.Forms.TextBox();
  138. this.button1 = new System.Windows.Forms.Button();
  139. this.txtVoltage = new System.Windows.Forms.TextBox();
  140. this.button2 = new System.Windows.Forms.Button();
  141. this.label67 = new System.Windows.Forms.Label();
  142. this.btnScanRotationSetOn = new System.Windows.Forms.Button();
  143. this.btnTiltAngleSetOn = new System.Windows.Forms.Button();
  144. this.btnTiltAngleSetOff = new System.Windows.Forms.Button();
  145. this.btnScanRotationSetLock = new System.Windows.Forms.Button();
  146. this.btnFrozen = new System.Windows.Forms.Button();
  147. this.btnLive = new System.Windows.Forms.Button();
  148. this.btnAutoStig = new System.Windows.Forms.Button();
  149. this.btnTiltCorrYSet = new System.Windows.Forms.Button();
  150. this.cmbImageStore = new System.Windows.Forms.ComboBox();
  151. this.btnAutoBCCancle = new System.Windows.Forms.Button();
  152. this.lblImageStore = new System.Windows.Forms.Label();
  153. this.txtTiltCorrY = new System.Windows.Forms.TextBox();
  154. this.btnImageStoreSet = new System.Windows.Forms.Button();
  155. this.btnImageStoreGet = new System.Windows.Forms.Button();
  156. this.btnAutoBC = new System.Windows.Forms.Button();
  157. this.label2 = new System.Windows.Forms.Label();
  158. this.btnAutoContrast = new System.Windows.Forms.Button();
  159. this.btnTiltCorrYGet = new System.Windows.Forms.Button();
  160. this.btnAutoBrightness = new System.Windows.Forms.Button();
  161. this.btnTiltCorrXSet = new System.Windows.Forms.Button();
  162. this.txtTiltCorrX = new System.Windows.Forms.TextBox();
  163. this.btnAutoFocus2 = new System.Windows.Forms.Button();
  164. this.btnAutoFocus1 = new System.Windows.Forms.Button();
  165. this.btnTiltCorrXGet = new System.Windows.Forms.Button();
  166. this.label12 = new System.Windows.Forms.Label();
  167. this.lblPixelSizeGet = new System.Windows.Forms.Label();
  168. this.btnTiltCorr = new System.Windows.Forms.Button();
  169. this.btnSEM = new System.Windows.Forms.Button();
  170. this.panelStage = new System.Windows.Forms.Panel();
  171. this.btnDRSet = new System.Windows.Forms.Button();
  172. this.txtDRSet = new System.Windows.Forms.TextBox();
  173. this.label83 = new System.Windows.Forms.Label();
  174. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  175. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  176. this.btnAbort = new System.Windows.Forms.Button();
  177. this.btnMoveXY = new System.Windows.Forms.Button();
  178. this.label24 = new System.Windows.Forms.Label();
  179. this.tabControl1 = new System.Windows.Forms.TabControl();
  180. this.tabPage1 = new System.Windows.Forms.TabPage();
  181. this.tabPage2 = new System.Windows.Forms.TabPage();
  182. this.label81 = new System.Windows.Forms.Label();
  183. this.label79 = new System.Windows.Forms.Label();
  184. this.lblstate8 = new System.Windows.Forms.Label();
  185. this.label84 = new System.Windows.Forms.Label();
  186. this.lblMag2 = new System.Windows.Forms.Label();
  187. this.label80 = new System.Windows.Forms.Label();
  188. this.lblMag1 = new System.Windows.Forms.Label();
  189. this.label82 = new System.Windows.Forms.Label();
  190. this.btnPost8 = new System.Windows.Forms.Button();
  191. this.txtfirm = new System.Windows.Forms.TextBox();
  192. this.txtTypee = new System.Windows.Forms.TextBox();
  193. this.btntest = new System.Windows.Forms.Button();
  194. this.txtaddr2 = new System.Windows.Forms.TextBox();
  195. this.txtaddr = new System.Windows.Forms.TextBox();
  196. this.lbllocationy2 = new System.Windows.Forms.Label();
  197. this.label71 = new System.Windows.Forms.Label();
  198. this.lbllocationx2 = new System.Windows.Forms.Label();
  199. this.label75 = new System.Windows.Forms.Label();
  200. this.lblstate9 = new System.Windows.Forms.Label();
  201. this.label47 = new System.Windows.Forms.Label();
  202. this.lblcenter2 = new System.Windows.Forms.Label();
  203. this.label49 = new System.Windows.Forms.Label();
  204. this.lblcenter1 = new System.Windows.Forms.Label();
  205. this.label51 = new System.Windows.Forms.Label();
  206. this.lblstate7 = new System.Windows.Forms.Label();
  207. this.label53 = new System.Windows.Forms.Label();
  208. this.lbldirection2 = new System.Windows.Forms.Label();
  209. this.label55 = new System.Windows.Forms.Label();
  210. this.lbldegree2 = new System.Windows.Forms.Label();
  211. this.label57 = new System.Windows.Forms.Label();
  212. this.lblstigpath = new System.Windows.Forms.Label();
  213. this.label45 = new System.Windows.Forms.Label();
  214. this.lblfocuspath = new System.Windows.Forms.Label();
  215. this.label43 = new System.Windows.Forms.Label();
  216. this.lblstate4 = new System.Windows.Forms.Label();
  217. this.label37 = new System.Windows.Forms.Label();
  218. this.lbltopcy = new System.Windows.Forms.Label();
  219. this.label39 = new System.Windows.Forms.Label();
  220. this.lbltopcx = new System.Windows.Forms.Label();
  221. this.label41 = new System.Windows.Forms.Label();
  222. this.lblstate3 = new System.Windows.Forms.Label();
  223. this.label35 = new System.Windows.Forms.Label();
  224. this.lblstate2 = new System.Windows.Forms.Label();
  225. this.label27 = new System.Windows.Forms.Label();
  226. this.lbllocationy1 = new System.Windows.Forms.Label();
  227. this.label31 = new System.Windows.Forms.Label();
  228. this.lbllocationx1 = new System.Windows.Forms.Label();
  229. this.label33 = new System.Windows.Forms.Label();
  230. this.btnPost9 = new System.Windows.Forms.Button();
  231. this.btnPost7 = new System.Windows.Forms.Button();
  232. this.btnPost6 = new System.Windows.Forms.Button();
  233. this.btnPost5 = new System.Windows.Forms.Button();
  234. this.btnPost4 = new System.Windows.Forms.Button();
  235. this.btnPost3 = new System.Windows.Forms.Button();
  236. this.btnPost2 = new System.Windows.Forms.Button();
  237. this.lblstate1 = new System.Windows.Forms.Label();
  238. this.label30 = new System.Windows.Forms.Label();
  239. this.lbldirection1 = new System.Windows.Forms.Label();
  240. this.label28 = new System.Windows.Forms.Label();
  241. this.lbldegree1 = new System.Windows.Forms.Label();
  242. this.label25 = new System.Windows.Forms.Label();
  243. this.btnPost1 = new System.Windows.Forms.Button();
  244. this.tabPage3 = new System.Windows.Forms.TabPage();
  245. this.textBox2 = new System.Windows.Forms.TextBox();
  246. this.textBox1 = new System.Windows.Forms.TextBox();
  247. this.button6 = new System.Windows.Forms.Button();
  248. this.button5 = new System.Windows.Forms.Button();
  249. this.button3 = new System.Windows.Forms.Button();
  250. this.cbbWPZD = new System.Windows.Forms.ComboBox();
  251. this.cbbWPZF = new System.Windows.Forms.ComboBox();
  252. this.cbbWQGD = new System.Windows.Forms.ComboBox();
  253. this.cbbWQGF = new System.Windows.Forms.ComboBox();
  254. this.cbbWLZ = new System.Windows.Forms.ComboBox();
  255. this.cbbWXZ = new System.Windows.Forms.ComboBox();
  256. this.cbbWCS = new System.Windows.Forms.ComboBox();
  257. this.cbbWYP = new System.Windows.Forms.ComboBox();
  258. this.txtRXZ = new System.Windows.Forms.TextBox();
  259. this.label26 = new System.Windows.Forms.Label();
  260. this.txtRPZD = new System.Windows.Forms.TextBox();
  261. this.label29 = new System.Windows.Forms.Label();
  262. this.txtRPZF = new System.Windows.Forms.TextBox();
  263. this.label34 = new System.Windows.Forms.Label();
  264. this.txtRQGD = new System.Windows.Forms.TextBox();
  265. this.label36 = new System.Windows.Forms.Label();
  266. this.txtRQGF = new System.Windows.Forms.TextBox();
  267. this.label40 = new System.Windows.Forms.Label();
  268. this.txtRLZ = new System.Windows.Forms.TextBox();
  269. this.label44 = new System.Windows.Forms.Label();
  270. this.chkRIsP = new System.Windows.Forms.CheckBox();
  271. this.label52 = new System.Windows.Forms.Label();
  272. this.txtRYP = new System.Windows.Forms.TextBox();
  273. this.txtRCS = new System.Windows.Forms.TextBox();
  274. this.txtRFIBF = new System.Windows.Forms.TextBox();
  275. this.txtRPTF = new System.Windows.Forms.TextBox();
  276. this.label60 = new System.Windows.Forms.Label();
  277. this.label63 = new System.Windows.Forms.Label();
  278. this.label64 = new System.Windows.Forms.Label();
  279. this.label65 = new System.Windows.Forms.Label();
  280. this.chkRPT = new System.Windows.Forms.CheckBox();
  281. this.label66 = new System.Windows.Forms.Label();
  282. this.label58 = new System.Windows.Forms.Label();
  283. this.label50 = new System.Windows.Forms.Label();
  284. this.label54 = new System.Windows.Forms.Label();
  285. this.label46 = new System.Windows.Forms.Label();
  286. this.label42 = new System.Windows.Forms.Label();
  287. this.label38 = new System.Windows.Forms.Label();
  288. this.chkWIsP = new System.Windows.Forms.CheckBox();
  289. this.label32 = new System.Windows.Forms.Label();
  290. this.txtWFIBF = new System.Windows.Forms.TextBox();
  291. this.txtWPTF = new System.Windows.Forms.TextBox();
  292. this.label48 = new System.Windows.Forms.Label();
  293. this.label56 = new System.Windows.Forms.Label();
  294. this.label59 = new System.Windows.Forms.Label();
  295. this.label61 = new System.Windows.Forms.Label();
  296. this.chkWPT = new System.Windows.Forms.CheckBox();
  297. this.label62 = new System.Windows.Forms.Label();
  298. this.btnReadConfig = new System.Windows.Forms.Button();
  299. this.btnCreateConfig = new System.Windows.Forms.Button();
  300. this.tabPage4 = new System.Windows.Forms.TabPage();
  301. this.txtstageny = new System.Windows.Forms.TextBox();
  302. this.txtstagenx = new System.Windows.Forms.TextBox();
  303. this.txtps = new System.Windows.Forms.TextBox();
  304. this.label77 = new System.Windows.Forms.Label();
  305. this.btnimgv = new System.Windows.Forms.Button();
  306. this.txtstagevy = new System.Windows.Forms.TextBox();
  307. this.txtstagevx = new System.Windows.Forms.TextBox();
  308. this.txtimgy = new System.Windows.Forms.TextBox();
  309. this.txtimgx = new System.Windows.Forms.TextBox();
  310. this.label69 = new System.Windows.Forms.Label();
  311. this.label73 = new System.Windows.Forms.Label();
  312. this.btn60 = new System.Windows.Forms.Button();
  313. this.btn45 = new System.Windows.Forms.Button();
  314. this.btn30 = new System.Windows.Forms.Button();
  315. this.btnrect = new System.Windows.Forms.Button();
  316. this.txtdistance = new System.Windows.Forms.TextBox();
  317. this.txtarray = new System.Windows.Forms.TextBox();
  318. this.txty = new System.Windows.Forms.TextBox();
  319. this.txtx = new System.Windows.Forms.TextBox();
  320. this.txtsample1y = new System.Windows.Forms.TextBox();
  321. this.txtsample1x = new System.Windows.Forms.TextBox();
  322. this.label76 = new System.Windows.Forms.Label();
  323. this.label78 = new System.Windows.Forms.Label();
  324. this.label74 = new System.Windows.Forms.Label();
  325. this.label72 = new System.Windows.Forms.Label();
  326. this.label70 = new System.Windows.Forms.Label();
  327. this.label68 = new System.Windows.Forms.Label();
  328. this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
  329. this.lblPs1 = new System.Windows.Forms.Label();
  330. this.btnPsFile = new System.Windows.Forms.Button();
  331. this.tabPage5 = new System.Windows.Forms.TabPage();
  332. this.label93 = new System.Windows.Forms.Label();
  333. this.txtFocus = new System.Windows.Forms.TextBox();
  334. this.button11 = new System.Windows.Forms.Button();
  335. this.button10 = new System.Windows.Forms.Button();
  336. this.label91 = new System.Windows.Forms.Label();
  337. this.txtTy = new System.Windows.Forms.TextBox();
  338. this.label92 = new System.Windows.Forms.Label();
  339. this.txtTx = new System.Windows.Forms.TextBox();
  340. this.label90 = new System.Windows.Forms.Label();
  341. this.button7 = new System.Windows.Forms.Button();
  342. this.button8 = new System.Windows.Forms.Button();
  343. this.button9 = new System.Windows.Forms.Button();
  344. this.label89 = new System.Windows.Forms.Label();
  345. this.txtelyy = new System.Windows.Forms.TextBox();
  346. this.label88 = new System.Windows.Forms.Label();
  347. this.txtelyx = new System.Windows.Forms.TextBox();
  348. this.label87 = new System.Windows.Forms.Label();
  349. this.label86 = new System.Windows.Forms.Label();
  350. this.btnDeltaR = new System.Windows.Forms.Button();
  351. this.txtDeltaR = new System.Windows.Forms.TextBox();
  352. this.label85 = new System.Windows.Forms.Label();
  353. this.tabPage6 = new System.Windows.Forms.TabPage();
  354. this.label101 = new System.Windows.Forms.Label();
  355. this.lblEDSH = new System.Windows.Forms.Label();
  356. this.label99 = new System.Windows.Forms.Label();
  357. this.lblEDSW = new System.Windows.Forms.Label();
  358. this.label97 = new System.Windows.Forms.Label();
  359. this.lblEDSY = new System.Windows.Forms.Label();
  360. this.label96 = new System.Windows.Forms.Label();
  361. this.lblEDSX = new System.Windows.Forms.Label();
  362. this.button14 = new System.Windows.Forms.Button();
  363. this.ltLines = new System.Windows.Forms.ListBox();
  364. this.button13 = new System.Windows.Forms.Button();
  365. this.label94 = new System.Windows.Forms.Label();
  366. this.txtPicPath = new System.Windows.Forms.TextBox();
  367. this.ltPoints = new System.Windows.Forms.ListBox();
  368. this.button12 = new System.Windows.Forms.Button();
  369. this.button15 = new System.Windows.Forms.Button();
  370. this.textBox3 = new System.Windows.Forms.TextBox();
  371. this.textBox4 = new System.Windows.Forms.TextBox();
  372. this.panelControl.SuspendLayout();
  373. this.panelSEM.SuspendLayout();
  374. this.panelFIB.SuspendLayout();
  375. this.panelStage.SuspendLayout();
  376. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  377. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  378. this.tabControl1.SuspendLayout();
  379. this.tabPage1.SuspendLayout();
  380. this.tabPage2.SuspendLayout();
  381. this.tabPage3.SuspendLayout();
  382. this.tabPage4.SuspendLayout();
  383. ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
  384. this.tabPage5.SuspendLayout();
  385. this.tabPage6.SuspendLayout();
  386. this.SuspendLayout();
  387. //
  388. // btnGrabImage
  389. //
  390. this.btnGrabImage.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  391. this.btnGrabImage.Location = new System.Drawing.Point(605, 11);
  392. this.btnGrabImage.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  393. this.btnGrabImage.Name = "btnGrabImage";
  394. this.btnGrabImage.Size = new System.Drawing.Size(144, 41);
  395. this.btnGrabImage.TabIndex = 1;
  396. this.btnGrabImage.Text = "抓取图像";
  397. this.btnGrabImage.UseVisualStyleBackColor = true;
  398. this.btnGrabImage.Click += new System.EventHandler(this.btnGrabImage_Click);
  399. //
  400. // btnenlargeGet
  401. //
  402. this.btnenlargeGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  403. this.btnenlargeGet.Location = new System.Drawing.Point(243, 20);
  404. this.btnenlargeGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  405. this.btnenlargeGet.Name = "btnenlargeGet";
  406. this.btnenlargeGet.Size = new System.Drawing.Size(54, 34);
  407. this.btnenlargeGet.TabIndex = 2;
  408. this.btnenlargeGet.Text = "读";
  409. this.btnenlargeGet.UseVisualStyleBackColor = true;
  410. this.btnenlargeGet.Click += new System.EventHandler(this.btnenlargeGet_Click);
  411. //
  412. // btnWriteXml
  413. //
  414. this.btnWriteXml.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  415. this.btnWriteXml.Location = new System.Drawing.Point(450, 15);
  416. this.btnWriteXml.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  417. this.btnWriteXml.Name = "btnWriteXml";
  418. this.btnWriteXml.Size = new System.Drawing.Size(144, 41);
  419. this.btnWriteXml.TabIndex = 83;
  420. this.btnWriteXml.Text = "写Xml文件";
  421. this.btnWriteXml.UseVisualStyleBackColor = true;
  422. this.btnWriteXml.Click += new System.EventHandler(this.btnWriteXml_Click);
  423. //
  424. // btnReadXml
  425. //
  426. this.btnReadXml.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  427. this.btnReadXml.Location = new System.Drawing.Point(24, 11);
  428. this.btnReadXml.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  429. this.btnReadXml.Name = "btnReadXml";
  430. this.btnReadXml.Size = new System.Drawing.Size(144, 41);
  431. this.btnReadXml.TabIndex = 82;
  432. this.btnReadXml.Text = "读Xml文件";
  433. this.btnReadXml.UseVisualStyleBackColor = true;
  434. this.btnReadXml.Click += new System.EventHandler(this.btnReadXml_Click);
  435. //
  436. // btnGetStagePosition
  437. //
  438. this.btnGetStagePosition.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  439. this.btnGetStagePosition.Location = new System.Drawing.Point(107, 337);
  440. this.btnGetStagePosition.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  441. this.btnGetStagePosition.Name = "btnGetStagePosition";
  442. this.btnGetStagePosition.Size = new System.Drawing.Size(144, 41);
  443. this.btnGetStagePosition.TabIndex = 81;
  444. this.btnGetStagePosition.Text = "获取位置数组";
  445. this.btnGetStagePosition.UseVisualStyleBackColor = true;
  446. this.btnGetStagePosition.Click += new System.EventHandler(this.btnGetStagePosition_Click);
  447. //
  448. // btnStageSetM
  449. //
  450. this.btnStageSetM.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  451. this.btnStageSetM.Location = new System.Drawing.Point(480, 258);
  452. this.btnStageSetM.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  453. this.btnStageSetM.Name = "btnStageSetM";
  454. this.btnStageSetM.Size = new System.Drawing.Size(79, 34);
  455. this.btnStageSetM.TabIndex = 80;
  456. this.btnStageSetM.Text = "Set";
  457. this.btnStageSetM.UseVisualStyleBackColor = true;
  458. this.btnStageSetM.Click += new System.EventHandler(this.btnStageSetM_Click);
  459. //
  460. // txtStageM
  461. //
  462. this.txtStageM.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  463. this.txtStageM.Location = new System.Drawing.Point(370, 259);
  464. this.txtStageM.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  465. this.txtStageM.Name = "txtStageM";
  466. this.txtStageM.Size = new System.Drawing.Size(100, 30);
  467. this.txtStageM.TabIndex = 79;
  468. this.txtStageM.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  469. //
  470. // lblStageM
  471. //
  472. this.lblStageM.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  473. this.lblStageM.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  474. this.lblStageM.Location = new System.Drawing.Point(194, 258);
  475. this.lblStageM.Name = "lblStageM";
  476. this.lblStageM.Size = new System.Drawing.Size(83, 33);
  477. this.lblStageM.TabIndex = 78;
  478. this.lblStageM.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  479. //
  480. // label10
  481. //
  482. this.label10.AutoSize = true;
  483. this.label10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  484. this.label10.Location = new System.Drawing.Point(54, 264);
  485. this.label10.Name = "label10";
  486. this.label10.Size = new System.Drawing.Size(138, 27);
  487. this.label10.TabIndex = 77;
  488. this.label10.Text = "样品台 M轴:";
  489. //
  490. // btnStageGetM
  491. //
  492. this.btnStageGetM.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  493. this.btnStageGetM.Location = new System.Drawing.Point(285, 258);
  494. this.btnStageGetM.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  495. this.btnStageGetM.Name = "btnStageGetM";
  496. this.btnStageGetM.Size = new System.Drawing.Size(79, 34);
  497. this.btnStageGetM.TabIndex = 76;
  498. this.btnStageGetM.Text = "Get";
  499. this.btnStageGetM.UseVisualStyleBackColor = true;
  500. this.btnStageGetM.Click += new System.EventHandler(this.btnStageGetM_Click);
  501. //
  502. // btnStageSetR
  503. //
  504. this.btnStageSetR.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  505. this.btnStageSetR.Location = new System.Drawing.Point(480, 220);
  506. this.btnStageSetR.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  507. this.btnStageSetR.Name = "btnStageSetR";
  508. this.btnStageSetR.Size = new System.Drawing.Size(79, 34);
  509. this.btnStageSetR.TabIndex = 75;
  510. this.btnStageSetR.Text = "Set";
  511. this.btnStageSetR.UseVisualStyleBackColor = true;
  512. this.btnStageSetR.Click += new System.EventHandler(this.btnStageSetR_Click);
  513. //
  514. // txtStageR
  515. //
  516. this.txtStageR.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  517. this.txtStageR.Location = new System.Drawing.Point(370, 223);
  518. this.txtStageR.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  519. this.txtStageR.Name = "txtStageR";
  520. this.txtStageR.Size = new System.Drawing.Size(100, 30);
  521. this.txtStageR.TabIndex = 74;
  522. this.txtStageR.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  523. //
  524. // lblStageR
  525. //
  526. this.lblStageR.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  527. this.lblStageR.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  528. this.lblStageR.Location = new System.Drawing.Point(194, 220);
  529. this.lblStageR.Name = "lblStageR";
  530. this.lblStageR.Size = new System.Drawing.Size(83, 33);
  531. this.lblStageR.TabIndex = 73;
  532. this.lblStageR.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  533. //
  534. // label13
  535. //
  536. this.label13.AutoSize = true;
  537. this.label13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  538. this.label13.Location = new System.Drawing.Point(54, 228);
  539. this.label13.Name = "label13";
  540. this.label13.Size = new System.Drawing.Size(131, 27);
  541. this.label13.TabIndex = 72;
  542. this.label13.Text = "样品台 R轴:";
  543. //
  544. // btnStageGetR
  545. //
  546. this.btnStageGetR.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  547. this.btnStageGetR.Location = new System.Drawing.Point(285, 220);
  548. this.btnStageGetR.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  549. this.btnStageGetR.Name = "btnStageGetR";
  550. this.btnStageGetR.Size = new System.Drawing.Size(79, 34);
  551. this.btnStageGetR.TabIndex = 71;
  552. this.btnStageGetR.Text = "Get";
  553. this.btnStageGetR.UseVisualStyleBackColor = true;
  554. this.btnStageGetR.Click += new System.EventHandler(this.btnStageGetR_Click);
  555. //
  556. // btnStageSetT
  557. //
  558. this.btnStageSetT.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  559. this.btnStageSetT.Location = new System.Drawing.Point(480, 184);
  560. this.btnStageSetT.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  561. this.btnStageSetT.Name = "btnStageSetT";
  562. this.btnStageSetT.Size = new System.Drawing.Size(79, 34);
  563. this.btnStageSetT.TabIndex = 70;
  564. this.btnStageSetT.Text = "Set";
  565. this.btnStageSetT.UseVisualStyleBackColor = true;
  566. this.btnStageSetT.Click += new System.EventHandler(this.btnStageSetT_Click);
  567. //
  568. // txtStageT
  569. //
  570. this.txtStageT.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  571. this.txtStageT.Location = new System.Drawing.Point(370, 185);
  572. this.txtStageT.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  573. this.txtStageT.Name = "txtStageT";
  574. this.txtStageT.Size = new System.Drawing.Size(100, 30);
  575. this.txtStageT.TabIndex = 69;
  576. this.txtStageT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  577. //
  578. // lblStageT
  579. //
  580. this.lblStageT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  581. this.lblStageT.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  582. this.lblStageT.Location = new System.Drawing.Point(194, 184);
  583. this.lblStageT.Name = "lblStageT";
  584. this.lblStageT.Size = new System.Drawing.Size(83, 33);
  585. this.lblStageT.TabIndex = 68;
  586. this.lblStageT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  587. //
  588. // label15
  589. //
  590. this.label15.AutoSize = true;
  591. this.label15.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  592. this.label15.Location = new System.Drawing.Point(54, 190);
  593. this.label15.Name = "label15";
  594. this.label15.Size = new System.Drawing.Size(129, 27);
  595. this.label15.TabIndex = 67;
  596. this.label15.Text = "样品台 T轴:";
  597. //
  598. // btnStageGetT
  599. //
  600. this.btnStageGetT.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  601. this.btnStageGetT.Location = new System.Drawing.Point(285, 184);
  602. this.btnStageGetT.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  603. this.btnStageGetT.Name = "btnStageGetT";
  604. this.btnStageGetT.Size = new System.Drawing.Size(79, 34);
  605. this.btnStageGetT.TabIndex = 66;
  606. this.btnStageGetT.Text = "Get";
  607. this.btnStageGetT.UseVisualStyleBackColor = true;
  608. this.btnStageGetT.Click += new System.EventHandler(this.btnStageGetT_Click);
  609. //
  610. // btnStageSetZ
  611. //
  612. this.btnStageSetZ.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  613. this.btnStageSetZ.Location = new System.Drawing.Point(480, 148);
  614. this.btnStageSetZ.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  615. this.btnStageSetZ.Name = "btnStageSetZ";
  616. this.btnStageSetZ.Size = new System.Drawing.Size(79, 34);
  617. this.btnStageSetZ.TabIndex = 65;
  618. this.btnStageSetZ.Text = "Set";
  619. this.btnStageSetZ.UseVisualStyleBackColor = true;
  620. this.btnStageSetZ.Click += new System.EventHandler(this.btnStageSetZ_Click);
  621. //
  622. // txtStageZ
  623. //
  624. this.txtStageZ.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  625. this.txtStageZ.Location = new System.Drawing.Point(370, 148);
  626. this.txtStageZ.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  627. this.txtStageZ.Name = "txtStageZ";
  628. this.txtStageZ.Size = new System.Drawing.Size(100, 30);
  629. this.txtStageZ.TabIndex = 64;
  630. this.txtStageZ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  631. //
  632. // lblStageZ
  633. //
  634. this.lblStageZ.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  635. this.lblStageZ.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  636. this.lblStageZ.Location = new System.Drawing.Point(194, 148);
  637. this.lblStageZ.Name = "lblStageZ";
  638. this.lblStageZ.Size = new System.Drawing.Size(83, 33);
  639. this.lblStageZ.TabIndex = 63;
  640. this.lblStageZ.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  641. //
  642. // label17
  643. //
  644. this.label17.AutoSize = true;
  645. this.label17.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  646. this.label17.Location = new System.Drawing.Point(54, 153);
  647. this.label17.Name = "label17";
  648. this.label17.Size = new System.Drawing.Size(130, 27);
  649. this.label17.TabIndex = 62;
  650. this.label17.Text = "样品台 Z轴:";
  651. //
  652. // btnStageGetZ
  653. //
  654. this.btnStageGetZ.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  655. this.btnStageGetZ.Location = new System.Drawing.Point(285, 148);
  656. this.btnStageGetZ.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  657. this.btnStageGetZ.Name = "btnStageGetZ";
  658. this.btnStageGetZ.Size = new System.Drawing.Size(79, 34);
  659. this.btnStageGetZ.TabIndex = 61;
  660. this.btnStageGetZ.Text = "Get";
  661. this.btnStageGetZ.UseVisualStyleBackColor = true;
  662. this.btnStageGetZ.Click += new System.EventHandler(this.btnStageGetZ_Click);
  663. //
  664. // btnStageSetY
  665. //
  666. this.btnStageSetY.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  667. this.btnStageSetY.Location = new System.Drawing.Point(480, 110);
  668. this.btnStageSetY.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  669. this.btnStageSetY.Name = "btnStageSetY";
  670. this.btnStageSetY.Size = new System.Drawing.Size(79, 34);
  671. this.btnStageSetY.TabIndex = 60;
  672. this.btnStageSetY.Text = "Set";
  673. this.btnStageSetY.UseVisualStyleBackColor = true;
  674. this.btnStageSetY.Click += new System.EventHandler(this.btnStageSetY_Click);
  675. //
  676. // txtStageY
  677. //
  678. this.txtStageY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  679. this.txtStageY.Location = new System.Drawing.Point(370, 110);
  680. this.txtStageY.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  681. this.txtStageY.Name = "txtStageY";
  682. this.txtStageY.Size = new System.Drawing.Size(100, 30);
  683. this.txtStageY.TabIndex = 59;
  684. this.txtStageY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  685. //
  686. // lblStageY
  687. //
  688. this.lblStageY.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  689. this.lblStageY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  690. this.lblStageY.Location = new System.Drawing.Point(194, 110);
  691. this.lblStageY.Name = "lblStageY";
  692. this.lblStageY.Size = new System.Drawing.Size(83, 33);
  693. this.lblStageY.TabIndex = 58;
  694. this.lblStageY.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  695. //
  696. // label19
  697. //
  698. this.label19.AutoSize = true;
  699. this.label19.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  700. this.label19.Location = new System.Drawing.Point(54, 115);
  701. this.label19.Name = "label19";
  702. this.label19.Size = new System.Drawing.Size(130, 27);
  703. this.label19.TabIndex = 57;
  704. this.label19.Text = "样品台 Y轴:";
  705. //
  706. // btnStageGetY
  707. //
  708. this.btnStageGetY.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  709. this.btnStageGetY.Location = new System.Drawing.Point(285, 110);
  710. this.btnStageGetY.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  711. this.btnStageGetY.Name = "btnStageGetY";
  712. this.btnStageGetY.Size = new System.Drawing.Size(79, 34);
  713. this.btnStageGetY.TabIndex = 56;
  714. this.btnStageGetY.Text = "Get";
  715. this.btnStageGetY.UseVisualStyleBackColor = true;
  716. this.btnStageGetY.Click += new System.EventHandler(this.btnStageGetY_Click);
  717. //
  718. // btnStageSetX
  719. //
  720. this.btnStageSetX.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  721. this.btnStageSetX.Location = new System.Drawing.Point(480, 73);
  722. this.btnStageSetX.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  723. this.btnStageSetX.Name = "btnStageSetX";
  724. this.btnStageSetX.Size = new System.Drawing.Size(79, 34);
  725. this.btnStageSetX.TabIndex = 55;
  726. this.btnStageSetX.Text = "Set";
  727. this.btnStageSetX.UseVisualStyleBackColor = true;
  728. this.btnStageSetX.Click += new System.EventHandler(this.btnStageSetX_Click);
  729. //
  730. // txtStageX
  731. //
  732. this.txtStageX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  733. this.txtStageX.Location = new System.Drawing.Point(370, 74);
  734. this.txtStageX.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  735. this.txtStageX.Name = "txtStageX";
  736. this.txtStageX.Size = new System.Drawing.Size(100, 30);
  737. this.txtStageX.TabIndex = 54;
  738. this.txtStageX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  739. //
  740. // lblStageX
  741. //
  742. this.lblStageX.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  743. this.lblStageX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  744. this.lblStageX.Location = new System.Drawing.Point(194, 73);
  745. this.lblStageX.Name = "lblStageX";
  746. this.lblStageX.Size = new System.Drawing.Size(83, 33);
  747. this.lblStageX.TabIndex = 53;
  748. this.lblStageX.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  749. //
  750. // label21
  751. //
  752. this.label21.AutoSize = true;
  753. this.label21.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  754. this.label21.Location = new System.Drawing.Point(54, 79);
  755. this.label21.Name = "label21";
  756. this.label21.Size = new System.Drawing.Size(131, 27);
  757. this.label21.TabIndex = 52;
  758. this.label21.Text = "样品台 X轴:";
  759. //
  760. // btnStageGetX
  761. //
  762. this.btnStageGetX.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  763. this.btnStageGetX.Location = new System.Drawing.Point(285, 73);
  764. this.btnStageGetX.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  765. this.btnStageGetX.Name = "btnStageGetX";
  766. this.btnStageGetX.Size = new System.Drawing.Size(79, 34);
  767. this.btnStageGetX.TabIndex = 51;
  768. this.btnStageGetX.Text = "Get";
  769. this.btnStageGetX.UseVisualStyleBackColor = true;
  770. this.btnStageGetX.Click += new System.EventHandler(this.btnStageGetX_Click);
  771. //
  772. // btnCloseVoltage
  773. //
  774. this.btnCloseVoltage.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  775. this.btnCloseVoltage.Location = new System.Drawing.Point(591, 69);
  776. this.btnCloseVoltage.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  777. this.btnCloseVoltage.Name = "btnCloseVoltage";
  778. this.btnCloseVoltage.Size = new System.Drawing.Size(144, 41);
  779. this.btnCloseVoltage.TabIndex = 50;
  780. this.btnCloseVoltage.Text = "关闭电压";
  781. this.btnCloseVoltage.UseVisualStyleBackColor = true;
  782. this.btnCloseVoltage.Click += new System.EventHandler(this.btnCloseVoltage_Click);
  783. //
  784. // btnOpenVoltage
  785. //
  786. this.btnOpenVoltage.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  787. this.btnOpenVoltage.Location = new System.Drawing.Point(591, 18);
  788. this.btnOpenVoltage.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  789. this.btnOpenVoltage.Name = "btnOpenVoltage";
  790. this.btnOpenVoltage.Size = new System.Drawing.Size(144, 41);
  791. this.btnOpenVoltage.TabIndex = 49;
  792. this.btnOpenVoltage.Text = "开启电压";
  793. this.btnOpenVoltage.UseVisualStyleBackColor = true;
  794. this.btnOpenVoltage.Click += new System.EventHandler(this.btnOpenVoltage_Click);
  795. //
  796. // label9
  797. //
  798. this.label9.AutoSize = true;
  799. this.label9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  800. this.label9.Location = new System.Drawing.Point(12, 435);
  801. this.label9.Name = "label9";
  802. this.label9.Size = new System.Drawing.Size(104, 27);
  803. this.label9.TabIndex = 45;
  804. this.label9.Text = "Pixel Size:";
  805. //
  806. // btnPixelSizeGet
  807. //
  808. this.btnPixelSizeGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  809. this.btnPixelSizeGet.ForeColor = System.Drawing.Color.Black;
  810. this.btnPixelSizeGet.Location = new System.Drawing.Point(348, 431);
  811. this.btnPixelSizeGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  812. this.btnPixelSizeGet.Name = "btnPixelSizeGet";
  813. this.btnPixelSizeGet.Size = new System.Drawing.Size(54, 34);
  814. this.btnPixelSizeGet.TabIndex = 44;
  815. this.btnPixelSizeGet.Text = "读";
  816. this.btnPixelSizeGet.UseVisualStyleBackColor = true;
  817. this.btnPixelSizeGet.Click += new System.EventHandler(this.btnPixelSizeGet_Click);
  818. //
  819. // btnScanRotationSet
  820. //
  821. this.btnScanRotationSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  822. this.btnScanRotationSet.Location = new System.Drawing.Point(296, 367);
  823. this.btnScanRotationSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  824. this.btnScanRotationSet.Name = "btnScanRotationSet";
  825. this.btnScanRotationSet.Size = new System.Drawing.Size(54, 34);
  826. this.btnScanRotationSet.TabIndex = 43;
  827. this.btnScanRotationSet.Text = "写";
  828. this.btnScanRotationSet.UseVisualStyleBackColor = true;
  829. this.btnScanRotationSet.Click += new System.EventHandler(this.btnScanRotationSet_Click);
  830. //
  831. // txtScanRotationSet
  832. //
  833. this.txtScanRotationSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  834. this.txtScanRotationSet.Location = new System.Drawing.Point(154, 369);
  835. this.txtScanRotationSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  836. this.txtScanRotationSet.Name = "txtScanRotationSet";
  837. this.txtScanRotationSet.Size = new System.Drawing.Size(85, 30);
  838. this.txtScanRotationSet.TabIndex = 42;
  839. this.txtScanRotationSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  840. //
  841. // label11
  842. //
  843. this.label11.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  844. this.label11.Location = new System.Drawing.Point(12, 353);
  845. this.label11.Name = "label11";
  846. this.label11.Size = new System.Drawing.Size(125, 62);
  847. this.label11.TabIndex = 40;
  848. this.label11.Text = "Scan Rotate角度:";
  849. //
  850. // btnScanRotationGet
  851. //
  852. this.btnScanRotationGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  853. this.btnScanRotationGet.Location = new System.Drawing.Point(243, 367);
  854. this.btnScanRotationGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  855. this.btnScanRotationGet.Name = "btnScanRotationGet";
  856. this.btnScanRotationGet.Size = new System.Drawing.Size(54, 34);
  857. this.btnScanRotationGet.TabIndex = 39;
  858. this.btnScanRotationGet.Text = "读";
  859. this.btnScanRotationGet.UseVisualStyleBackColor = true;
  860. this.btnScanRotationGet.Click += new System.EventHandler(this.btnScanRotationGet_Click);
  861. //
  862. // btnTiltAngleSet
  863. //
  864. this.btnTiltAngleSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  865. this.btnTiltAngleSet.Location = new System.Drawing.Point(296, 302);
  866. this.btnTiltAngleSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  867. this.btnTiltAngleSet.Name = "btnTiltAngleSet";
  868. this.btnTiltAngleSet.Size = new System.Drawing.Size(54, 34);
  869. this.btnTiltAngleSet.TabIndex = 38;
  870. this.btnTiltAngleSet.Text = "写";
  871. this.btnTiltAngleSet.UseVisualStyleBackColor = true;
  872. this.btnTiltAngleSet.Click += new System.EventHandler(this.btnTiltAngleSet_Click);
  873. //
  874. // txtTiltAngleSet
  875. //
  876. this.txtTiltAngleSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  877. this.txtTiltAngleSet.Location = new System.Drawing.Point(154, 304);
  878. this.txtTiltAngleSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  879. this.txtTiltAngleSet.Name = "txtTiltAngleSet";
  880. this.txtTiltAngleSet.Size = new System.Drawing.Size(85, 30);
  881. this.txtTiltAngleSet.TabIndex = 37;
  882. this.txtTiltAngleSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  883. //
  884. // label7
  885. //
  886. this.label7.AutoSize = true;
  887. this.label7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  888. this.label7.Location = new System.Drawing.Point(14, 306);
  889. this.label7.Name = "label7";
  890. this.label7.Size = new System.Drawing.Size(112, 27);
  891. this.label7.TabIndex = 35;
  892. this.label7.Text = "角度补偿:";
  893. //
  894. // btnTiltAngleGet
  895. //
  896. this.btnTiltAngleGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  897. this.btnTiltAngleGet.Location = new System.Drawing.Point(243, 302);
  898. this.btnTiltAngleGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  899. this.btnTiltAngleGet.Name = "btnTiltAngleGet";
  900. this.btnTiltAngleGet.Size = new System.Drawing.Size(54, 34);
  901. this.btnTiltAngleGet.TabIndex = 34;
  902. this.btnTiltAngleGet.Text = "读";
  903. this.btnTiltAngleGet.UseVisualStyleBackColor = true;
  904. this.btnTiltAngleGet.Click += new System.EventHandler(this.btnTiltAngleGet_Click);
  905. //
  906. // btnAstigmatismYSet
  907. //
  908. this.btnAstigmatismYSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  909. this.btnAstigmatismYSet.Location = new System.Drawing.Point(296, 255);
  910. this.btnAstigmatismYSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  911. this.btnAstigmatismYSet.Name = "btnAstigmatismYSet";
  912. this.btnAstigmatismYSet.Size = new System.Drawing.Size(54, 34);
  913. this.btnAstigmatismYSet.TabIndex = 33;
  914. this.btnAstigmatismYSet.Text = "写";
  915. this.btnAstigmatismYSet.UseVisualStyleBackColor = true;
  916. this.btnAstigmatismYSet.Click += new System.EventHandler(this.btnAstigmatismYSet_Click);
  917. //
  918. // txtAstigmatismYSet
  919. //
  920. this.txtAstigmatismYSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  921. this.txtAstigmatismYSet.Location = new System.Drawing.Point(154, 257);
  922. this.txtAstigmatismYSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  923. this.txtAstigmatismYSet.Name = "txtAstigmatismYSet";
  924. this.txtAstigmatismYSet.Size = new System.Drawing.Size(85, 30);
  925. this.txtAstigmatismYSet.TabIndex = 32;
  926. this.txtAstigmatismYSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  927. //
  928. // label5
  929. //
  930. this.label5.AutoSize = true;
  931. this.label5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  932. this.label5.Location = new System.Drawing.Point(12, 259);
  933. this.label5.Name = "label5";
  934. this.label5.Size = new System.Drawing.Size(104, 27);
  935. this.label5.TabIndex = 30;
  936. this.label5.Text = "消像散Y:";
  937. //
  938. // btnAstigmatismYGet
  939. //
  940. this.btnAstigmatismYGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  941. this.btnAstigmatismYGet.Location = new System.Drawing.Point(243, 255);
  942. this.btnAstigmatismYGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  943. this.btnAstigmatismYGet.Name = "btnAstigmatismYGet";
  944. this.btnAstigmatismYGet.Size = new System.Drawing.Size(54, 34);
  945. this.btnAstigmatismYGet.TabIndex = 29;
  946. this.btnAstigmatismYGet.Text = "读";
  947. this.btnAstigmatismYGet.UseVisualStyleBackColor = true;
  948. this.btnAstigmatismYGet.Click += new System.EventHandler(this.btnAstigmatismYGet_Click);
  949. //
  950. // btnAstigmatismXSet
  951. //
  952. this.btnAstigmatismXSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  953. this.btnAstigmatismXSet.Location = new System.Drawing.Point(296, 208);
  954. this.btnAstigmatismXSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  955. this.btnAstigmatismXSet.Name = "btnAstigmatismXSet";
  956. this.btnAstigmatismXSet.Size = new System.Drawing.Size(54, 34);
  957. this.btnAstigmatismXSet.TabIndex = 28;
  958. this.btnAstigmatismXSet.Text = "写";
  959. this.btnAstigmatismXSet.UseVisualStyleBackColor = true;
  960. this.btnAstigmatismXSet.Click += new System.EventHandler(this.btnAstigmatismXSet_Click);
  961. //
  962. // txtAstigmatismXSet
  963. //
  964. this.txtAstigmatismXSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  965. this.txtAstigmatismXSet.Location = new System.Drawing.Point(154, 210);
  966. this.txtAstigmatismXSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  967. this.txtAstigmatismXSet.Name = "txtAstigmatismXSet";
  968. this.txtAstigmatismXSet.Size = new System.Drawing.Size(85, 30);
  969. this.txtAstigmatismXSet.TabIndex = 27;
  970. this.txtAstigmatismXSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  971. //
  972. // label8
  973. //
  974. this.label8.AutoSize = true;
  975. this.label8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  976. this.label8.Location = new System.Drawing.Point(12, 212);
  977. this.label8.Name = "label8";
  978. this.label8.Size = new System.Drawing.Size(105, 27);
  979. this.label8.TabIndex = 25;
  980. this.label8.Text = "消像散X:";
  981. //
  982. // btnAstigmatismXGet
  983. //
  984. this.btnAstigmatismXGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  985. this.btnAstigmatismXGet.Location = new System.Drawing.Point(243, 208);
  986. this.btnAstigmatismXGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  987. this.btnAstigmatismXGet.Name = "btnAstigmatismXGet";
  988. this.btnAstigmatismXGet.Size = new System.Drawing.Size(54, 34);
  989. this.btnAstigmatismXGet.TabIndex = 24;
  990. this.btnAstigmatismXGet.Text = "读";
  991. this.btnAstigmatismXGet.UseVisualStyleBackColor = true;
  992. this.btnAstigmatismXGet.Click += new System.EventHandler(this.btnAstigmatismXGet_Click);
  993. //
  994. // btnContrastSet
  995. //
  996. this.btnContrastSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  997. this.btnContrastSet.Location = new System.Drawing.Point(296, 161);
  998. this.btnContrastSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  999. this.btnContrastSet.Name = "btnContrastSet";
  1000. this.btnContrastSet.Size = new System.Drawing.Size(54, 34);
  1001. this.btnContrastSet.TabIndex = 23;
  1002. this.btnContrastSet.Text = "写";
  1003. this.btnContrastSet.UseVisualStyleBackColor = true;
  1004. this.btnContrastSet.Click += new System.EventHandler(this.btnContrastSet_Click);
  1005. //
  1006. // txtContrastSet
  1007. //
  1008. this.txtContrastSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1009. this.txtContrastSet.Location = new System.Drawing.Point(154, 163);
  1010. this.txtContrastSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1011. this.txtContrastSet.Name = "txtContrastSet";
  1012. this.txtContrastSet.Size = new System.Drawing.Size(85, 30);
  1013. this.txtContrastSet.TabIndex = 22;
  1014. this.txtContrastSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1015. //
  1016. // label4
  1017. //
  1018. this.label4.AutoSize = true;
  1019. this.label4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1020. this.label4.Location = new System.Drawing.Point(12, 165);
  1021. this.label4.Name = "label4";
  1022. this.label4.Size = new System.Drawing.Size(92, 27);
  1023. this.label4.TabIndex = 20;
  1024. this.label4.Text = "对比度:";
  1025. //
  1026. // btnContrastGet
  1027. //
  1028. this.btnContrastGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1029. this.btnContrastGet.Location = new System.Drawing.Point(243, 161);
  1030. this.btnContrastGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1031. this.btnContrastGet.Name = "btnContrastGet";
  1032. this.btnContrastGet.Size = new System.Drawing.Size(54, 34);
  1033. this.btnContrastGet.TabIndex = 19;
  1034. this.btnContrastGet.Text = "读";
  1035. this.btnContrastGet.UseVisualStyleBackColor = true;
  1036. this.btnContrastGet.Click += new System.EventHandler(this.btnContrastGet_Click);
  1037. //
  1038. // btnBrightnessSet
  1039. //
  1040. this.btnBrightnessSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1041. this.btnBrightnessSet.Location = new System.Drawing.Point(296, 114);
  1042. this.btnBrightnessSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1043. this.btnBrightnessSet.Name = "btnBrightnessSet";
  1044. this.btnBrightnessSet.Size = new System.Drawing.Size(54, 34);
  1045. this.btnBrightnessSet.TabIndex = 18;
  1046. this.btnBrightnessSet.Text = "写";
  1047. this.btnBrightnessSet.UseVisualStyleBackColor = true;
  1048. this.btnBrightnessSet.Click += new System.EventHandler(this.btnBrightnessSet_Click);
  1049. //
  1050. // txtBrightnessSet
  1051. //
  1052. this.txtBrightnessSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1053. this.txtBrightnessSet.Location = new System.Drawing.Point(154, 116);
  1054. this.txtBrightnessSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1055. this.txtBrightnessSet.Name = "txtBrightnessSet";
  1056. this.txtBrightnessSet.Size = new System.Drawing.Size(85, 30);
  1057. this.txtBrightnessSet.TabIndex = 17;
  1058. this.txtBrightnessSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1059. //
  1060. // label6
  1061. //
  1062. this.label6.AutoSize = true;
  1063. this.label6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1064. this.label6.Location = new System.Drawing.Point(12, 118);
  1065. this.label6.Name = "label6";
  1066. this.label6.Size = new System.Drawing.Size(72, 27);
  1067. this.label6.TabIndex = 15;
  1068. this.label6.Text = "亮度:";
  1069. //
  1070. // btnBrightnessGet
  1071. //
  1072. this.btnBrightnessGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1073. this.btnBrightnessGet.Location = new System.Drawing.Point(243, 114);
  1074. this.btnBrightnessGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1075. this.btnBrightnessGet.Name = "btnBrightnessGet";
  1076. this.btnBrightnessGet.Size = new System.Drawing.Size(54, 34);
  1077. this.btnBrightnessGet.TabIndex = 14;
  1078. this.btnBrightnessGet.Text = "读";
  1079. this.btnBrightnessGet.UseVisualStyleBackColor = true;
  1080. this.btnBrightnessGet.Click += new System.EventHandler(this.btnBrightnessGet_Click);
  1081. //
  1082. // btnWDSet
  1083. //
  1084. this.btnWDSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1085. this.btnWDSet.Location = new System.Drawing.Point(296, 67);
  1086. this.btnWDSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1087. this.btnWDSet.Name = "btnWDSet";
  1088. this.btnWDSet.Size = new System.Drawing.Size(54, 34);
  1089. this.btnWDSet.TabIndex = 13;
  1090. this.btnWDSet.Text = "写";
  1091. this.btnWDSet.UseVisualStyleBackColor = true;
  1092. this.btnWDSet.Click += new System.EventHandler(this.btnWDSet_Click);
  1093. //
  1094. // txtWDSet
  1095. //
  1096. this.txtWDSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1097. this.txtWDSet.Location = new System.Drawing.Point(154, 69);
  1098. this.txtWDSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1099. this.txtWDSet.Name = "txtWDSet";
  1100. this.txtWDSet.Size = new System.Drawing.Size(85, 30);
  1101. this.txtWDSet.TabIndex = 12;
  1102. this.txtWDSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1103. //
  1104. // label3
  1105. //
  1106. this.label3.AutoSize = true;
  1107. this.label3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1108. this.label3.Location = new System.Drawing.Point(12, 71);
  1109. this.label3.Name = "label3";
  1110. this.label3.Size = new System.Drawing.Size(72, 27);
  1111. this.label3.TabIndex = 10;
  1112. this.label3.Text = "焦距:";
  1113. //
  1114. // btnWDGet
  1115. //
  1116. this.btnWDGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1117. this.btnWDGet.Location = new System.Drawing.Point(243, 67);
  1118. this.btnWDGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1119. this.btnWDGet.Name = "btnWDGet";
  1120. this.btnWDGet.Size = new System.Drawing.Size(54, 34);
  1121. this.btnWDGet.TabIndex = 9;
  1122. this.btnWDGet.Text = "读";
  1123. this.btnWDGet.UseVisualStyleBackColor = true;
  1124. this.btnWDGet.Click += new System.EventHandler(this.btnWDGet_Click);
  1125. //
  1126. // btnenlargeSet
  1127. //
  1128. this.btnenlargeSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1129. this.btnenlargeSet.Location = new System.Drawing.Point(296, 20);
  1130. this.btnenlargeSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1131. this.btnenlargeSet.Name = "btnenlargeSet";
  1132. this.btnenlargeSet.Size = new System.Drawing.Size(54, 34);
  1133. this.btnenlargeSet.TabIndex = 8;
  1134. this.btnenlargeSet.Text = "写";
  1135. this.btnenlargeSet.UseVisualStyleBackColor = true;
  1136. this.btnenlargeSet.Click += new System.EventHandler(this.btnenlargeSet_Click);
  1137. //
  1138. // txtenlargeSet
  1139. //
  1140. this.txtenlargeSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1141. this.txtenlargeSet.Location = new System.Drawing.Point(154, 22);
  1142. this.txtenlargeSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1143. this.txtenlargeSet.Name = "txtenlargeSet";
  1144. this.txtenlargeSet.Size = new System.Drawing.Size(85, 30);
  1145. this.txtenlargeSet.TabIndex = 7;
  1146. this.txtenlargeSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1147. //
  1148. // label1
  1149. //
  1150. this.label1.AutoSize = true;
  1151. this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1152. this.label1.Location = new System.Drawing.Point(12, 24);
  1153. this.label1.Name = "label1";
  1154. this.label1.Size = new System.Drawing.Size(72, 27);
  1155. this.label1.TabIndex = 5;
  1156. this.label1.Text = "缩放:";
  1157. //
  1158. // panelControl
  1159. //
  1160. this.panelControl.Controls.Add(this.button4);
  1161. this.panelControl.Controls.Add(this.btnMILL);
  1162. this.panelControl.Controls.Add(this.btnGrabImage);
  1163. this.panelControl.Controls.Add(this.btnFIB);
  1164. this.panelControl.Controls.Add(this.panelSEM);
  1165. this.panelControl.Controls.Add(this.btnSEM);
  1166. this.panelControl.Dock = System.Windows.Forms.DockStyle.Fill;
  1167. this.panelControl.Location = new System.Drawing.Point(3, 3);
  1168. this.panelControl.Name = "panelControl";
  1169. this.panelControl.Size = new System.Drawing.Size(780, 565);
  1170. this.panelControl.TabIndex = 20;
  1171. //
  1172. // button4
  1173. //
  1174. this.button4.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1175. this.button4.Location = new System.Drawing.Point(464, 10);
  1176. this.button4.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1177. this.button4.Name = "button4";
  1178. this.button4.Size = new System.Drawing.Size(144, 41);
  1179. this.button4.TabIndex = 50;
  1180. this.button4.Text = "连续拍照";
  1181. this.button4.UseVisualStyleBackColor = true;
  1182. this.button4.Click += new System.EventHandler(this.button4_Click);
  1183. //
  1184. // btnMILL
  1185. //
  1186. this.btnMILL.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1187. this.btnMILL.Location = new System.Drawing.Point(313, 10);
  1188. this.btnMILL.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1189. this.btnMILL.Name = "btnMILL";
  1190. this.btnMILL.Size = new System.Drawing.Size(144, 41);
  1191. this.btnMILL.TabIndex = 49;
  1192. this.btnMILL.Text = "MILL模式";
  1193. this.btnMILL.UseVisualStyleBackColor = true;
  1194. this.btnMILL.Click += new System.EventHandler(this.btnMILL_Click);
  1195. //
  1196. // btnFIB
  1197. //
  1198. this.btnFIB.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1199. this.btnFIB.Location = new System.Drawing.Point(163, 11);
  1200. this.btnFIB.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1201. this.btnFIB.Name = "btnFIB";
  1202. this.btnFIB.Size = new System.Drawing.Size(144, 41);
  1203. this.btnFIB.TabIndex = 48;
  1204. this.btnFIB.Text = "FIB模式";
  1205. this.btnFIB.UseVisualStyleBackColor = true;
  1206. this.btnFIB.Click += new System.EventHandler(this.btnFIB_Click);
  1207. //
  1208. // panelSEM
  1209. //
  1210. this.panelSEM.Controls.Add(this.panelFIB);
  1211. this.panelSEM.Controls.Add(this.button1);
  1212. this.panelSEM.Controls.Add(this.txtVoltage);
  1213. this.panelSEM.Controls.Add(this.button2);
  1214. this.panelSEM.Controls.Add(this.label67);
  1215. this.panelSEM.Controls.Add(this.btnScanRotationSetOn);
  1216. this.panelSEM.Controls.Add(this.btnTiltAngleSetOn);
  1217. this.panelSEM.Controls.Add(this.btnTiltAngleSetOff);
  1218. this.panelSEM.Controls.Add(this.btnScanRotationSetLock);
  1219. this.panelSEM.Controls.Add(this.btnFrozen);
  1220. this.panelSEM.Controls.Add(this.btnLive);
  1221. this.panelSEM.Controls.Add(this.btnAutoStig);
  1222. this.panelSEM.Controls.Add(this.btnTiltCorrYSet);
  1223. this.panelSEM.Controls.Add(this.cmbImageStore);
  1224. this.panelSEM.Controls.Add(this.label1);
  1225. this.panelSEM.Controls.Add(this.btnAutoBCCancle);
  1226. this.panelSEM.Controls.Add(this.lblImageStore);
  1227. this.panelSEM.Controls.Add(this.txtTiltCorrY);
  1228. this.panelSEM.Controls.Add(this.btnImageStoreSet);
  1229. this.panelSEM.Controls.Add(this.btnTiltAngleSet);
  1230. this.panelSEM.Controls.Add(this.btnImageStoreGet);
  1231. this.panelSEM.Controls.Add(this.btnAutoBC);
  1232. this.panelSEM.Controls.Add(this.label2);
  1233. this.panelSEM.Controls.Add(this.txtTiltAngleSet);
  1234. this.panelSEM.Controls.Add(this.btnAutoContrast);
  1235. this.panelSEM.Controls.Add(this.btnTiltCorrYGet);
  1236. this.panelSEM.Controls.Add(this.btnScanRotationGet);
  1237. this.panelSEM.Controls.Add(this.btnAutoBrightness);
  1238. this.panelSEM.Controls.Add(this.btnTiltCorrXSet);
  1239. this.panelSEM.Controls.Add(this.label11);
  1240. this.panelSEM.Controls.Add(this.txtTiltCorrX);
  1241. this.panelSEM.Controls.Add(this.btnAutoFocus2);
  1242. this.panelSEM.Controls.Add(this.btnAutoFocus1);
  1243. this.panelSEM.Controls.Add(this.btnTiltCorrXGet);
  1244. this.panelSEM.Controls.Add(this.label7);
  1245. this.panelSEM.Controls.Add(this.btnenlargeSet);
  1246. this.panelSEM.Controls.Add(this.label12);
  1247. this.panelSEM.Controls.Add(this.txtScanRotationSet);
  1248. this.panelSEM.Controls.Add(this.btnenlargeGet);
  1249. this.panelSEM.Controls.Add(this.btnTiltAngleGet);
  1250. this.panelSEM.Controls.Add(this.btnScanRotationSet);
  1251. this.panelSEM.Controls.Add(this.btnAstigmatismYSet);
  1252. this.panelSEM.Controls.Add(this.txtenlargeSet);
  1253. this.panelSEM.Controls.Add(this.txtAstigmatismYSet);
  1254. this.panelSEM.Controls.Add(this.btnWDSet);
  1255. this.panelSEM.Controls.Add(this.btnPixelSizeGet);
  1256. this.panelSEM.Controls.Add(this.btnWDGet);
  1257. this.panelSEM.Controls.Add(this.label9);
  1258. this.panelSEM.Controls.Add(this.label3);
  1259. this.panelSEM.Controls.Add(this.btnCloseVoltage);
  1260. this.panelSEM.Controls.Add(this.btnOpenVoltage);
  1261. this.panelSEM.Controls.Add(this.lblPixelSizeGet);
  1262. this.panelSEM.Controls.Add(this.txtWDSet);
  1263. this.panelSEM.Controls.Add(this.label5);
  1264. this.panelSEM.Controls.Add(this.btnBrightnessSet);
  1265. this.panelSEM.Controls.Add(this.btnAstigmatismYGet);
  1266. this.panelSEM.Controls.Add(this.btnBrightnessGet);
  1267. this.panelSEM.Controls.Add(this.btnAstigmatismXSet);
  1268. this.panelSEM.Controls.Add(this.label6);
  1269. this.panelSEM.Controls.Add(this.txtAstigmatismXSet);
  1270. this.panelSEM.Controls.Add(this.txtBrightnessSet);
  1271. this.panelSEM.Controls.Add(this.btnAstigmatismXGet);
  1272. this.panelSEM.Controls.Add(this.label4);
  1273. this.panelSEM.Controls.Add(this.label8);
  1274. this.panelSEM.Controls.Add(this.btnContrastGet);
  1275. this.panelSEM.Controls.Add(this.btnContrastSet);
  1276. this.panelSEM.Controls.Add(this.txtContrastSet);
  1277. this.panelSEM.Controls.Add(this.btnTiltCorr);
  1278. this.panelSEM.Dock = System.Windows.Forms.DockStyle.Bottom;
  1279. this.panelSEM.Location = new System.Drawing.Point(0, 56);
  1280. this.panelSEM.Name = "panelSEM";
  1281. this.panelSEM.Size = new System.Drawing.Size(780, 509);
  1282. this.panelSEM.TabIndex = 47;
  1283. //
  1284. // panelFIB
  1285. //
  1286. this.panelFIB.Controls.Add(this.btnExeEly3);
  1287. this.panelFIB.Controls.Add(this.btnFIBStatus);
  1288. this.panelFIB.Controls.Add(this.btnExeEly2);
  1289. this.panelFIB.Controls.Add(this.btnExeEly);
  1290. this.panelFIB.Controls.Add(this.btnFIBAstigmatismYSet);
  1291. this.panelFIB.Controls.Add(this.txtFIBAstigmatismY);
  1292. this.panelFIB.Controls.Add(this.label22);
  1293. this.panelFIB.Controls.Add(this.btnFIBAstigmatismYGet);
  1294. this.panelFIB.Controls.Add(this.btnFIBAstigmatismXSet);
  1295. this.panelFIB.Controls.Add(this.txtFIBAstigmatismX);
  1296. this.panelFIB.Controls.Add(this.btnFIBAstigmatismXGet);
  1297. this.panelFIB.Controls.Add(this.label23);
  1298. this.panelFIB.Controls.Add(this.btnFIBBeamShiftYSet);
  1299. this.panelFIB.Controls.Add(this.txtFIBBeamShiftY);
  1300. this.panelFIB.Controls.Add(this.label18);
  1301. this.panelFIB.Controls.Add(this.btnFIBBeamShiftYGet);
  1302. this.panelFIB.Controls.Add(this.btnFIBBeamShiftXSet);
  1303. this.panelFIB.Controls.Add(this.txtFIBBeamShiftX);
  1304. this.panelFIB.Controls.Add(this.btnFIBBeamShiftXGet);
  1305. this.panelFIB.Controls.Add(this.label20);
  1306. this.panelFIB.Controls.Add(this.btnMCF);
  1307. this.panelFIB.Controls.Add(this.label14);
  1308. this.panelFIB.Controls.Add(this.btnFIBMagSet);
  1309. this.panelFIB.Controls.Add(this.btnFIBMagGet);
  1310. this.panelFIB.Controls.Add(this.txtFIBMag);
  1311. this.panelFIB.Controls.Add(this.btnFIBWDSet);
  1312. this.panelFIB.Controls.Add(this.btnFIBWDGet);
  1313. this.panelFIB.Controls.Add(this.label16);
  1314. this.panelFIB.Controls.Add(this.txtFIBWD);
  1315. this.panelFIB.Dock = System.Windows.Forms.DockStyle.Top;
  1316. this.panelFIB.Location = new System.Drawing.Point(0, 0);
  1317. this.panelFIB.Name = "panelFIB";
  1318. this.panelFIB.Size = new System.Drawing.Size(780, 289);
  1319. this.panelFIB.TabIndex = 50;
  1320. this.panelFIB.Visible = false;
  1321. //
  1322. // btnExeEly3
  1323. //
  1324. this.btnExeEly3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1325. this.btnExeEly3.Location = new System.Drawing.Point(530, 229);
  1326. this.btnExeEly3.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1327. this.btnExeEly3.Name = "btnExeEly3";
  1328. this.btnExeEly3.Size = new System.Drawing.Size(144, 41);
  1329. this.btnExeEly3.TabIndex = 75;
  1330. this.btnExeEly3.Text = "执行ELY文件";
  1331. this.btnExeEly3.UseVisualStyleBackColor = true;
  1332. this.btnExeEly3.Click += new System.EventHandler(this.btnExeEly3_Click);
  1333. //
  1334. // btnFIBStatus
  1335. //
  1336. this.btnFIBStatus.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1337. this.btnFIBStatus.Location = new System.Drawing.Point(406, 120);
  1338. this.btnFIBStatus.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1339. this.btnFIBStatus.Name = "btnFIBStatus";
  1340. this.btnFIBStatus.Size = new System.Drawing.Size(144, 41);
  1341. this.btnFIBStatus.TabIndex = 74;
  1342. this.btnFIBStatus.Text = "FIB状态";
  1343. this.btnFIBStatus.UseVisualStyleBackColor = true;
  1344. this.btnFIBStatus.Click += new System.EventHandler(this.btnFIBStatus_Click);
  1345. //
  1346. // btnExeEly2
  1347. //
  1348. this.btnExeEly2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1349. this.btnExeEly2.Location = new System.Drawing.Point(379, 229);
  1350. this.btnExeEly2.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1351. this.btnExeEly2.Name = "btnExeEly2";
  1352. this.btnExeEly2.Size = new System.Drawing.Size(144, 41);
  1353. this.btnExeEly2.TabIndex = 73;
  1354. this.btnExeEly2.Text = "确认ELY文件";
  1355. this.btnExeEly2.UseVisualStyleBackColor = true;
  1356. this.btnExeEly2.Click += new System.EventHandler(this.btnExeEly2_Click);
  1357. //
  1358. // btnExeEly
  1359. //
  1360. this.btnExeEly.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1361. this.btnExeEly.Location = new System.Drawing.Point(229, 229);
  1362. this.btnExeEly.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1363. this.btnExeEly.Name = "btnExeEly";
  1364. this.btnExeEly.Size = new System.Drawing.Size(144, 41);
  1365. this.btnExeEly.TabIndex = 72;
  1366. this.btnExeEly.Text = "选择ELY文件";
  1367. this.btnExeEly.UseVisualStyleBackColor = true;
  1368. this.btnExeEly.Click += new System.EventHandler(this.btnExeEly_Click);
  1369. //
  1370. // btnFIBAstigmatismYSet
  1371. //
  1372. this.btnFIBAstigmatismYSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1373. this.btnFIBAstigmatismYSet.Location = new System.Drawing.Point(304, 172);
  1374. this.btnFIBAstigmatismYSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1375. this.btnFIBAstigmatismYSet.Name = "btnFIBAstigmatismYSet";
  1376. this.btnFIBAstigmatismYSet.Size = new System.Drawing.Size(54, 34);
  1377. this.btnFIBAstigmatismYSet.TabIndex = 71;
  1378. this.btnFIBAstigmatismYSet.Text = "写";
  1379. this.btnFIBAstigmatismYSet.UseVisualStyleBackColor = true;
  1380. this.btnFIBAstigmatismYSet.Click += new System.EventHandler(this.btnFIBAstigmatismYSet_Click);
  1381. //
  1382. // txtFIBAstigmatismY
  1383. //
  1384. this.txtFIBAstigmatismY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1385. this.txtFIBAstigmatismY.Location = new System.Drawing.Point(162, 174);
  1386. this.txtFIBAstigmatismY.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1387. this.txtFIBAstigmatismY.Name = "txtFIBAstigmatismY";
  1388. this.txtFIBAstigmatismY.Size = new System.Drawing.Size(85, 30);
  1389. this.txtFIBAstigmatismY.TabIndex = 70;
  1390. this.txtFIBAstigmatismY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1391. //
  1392. // label22
  1393. //
  1394. this.label22.AutoSize = true;
  1395. this.label22.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1396. this.label22.Location = new System.Drawing.Point(20, 176);
  1397. this.label22.Name = "label22";
  1398. this.label22.Size = new System.Drawing.Size(104, 27);
  1399. this.label22.TabIndex = 69;
  1400. this.label22.Text = "消像散Y:";
  1401. //
  1402. // btnFIBAstigmatismYGet
  1403. //
  1404. this.btnFIBAstigmatismYGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1405. this.btnFIBAstigmatismYGet.Location = new System.Drawing.Point(251, 172);
  1406. this.btnFIBAstigmatismYGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1407. this.btnFIBAstigmatismYGet.Name = "btnFIBAstigmatismYGet";
  1408. this.btnFIBAstigmatismYGet.Size = new System.Drawing.Size(54, 34);
  1409. this.btnFIBAstigmatismYGet.TabIndex = 68;
  1410. this.btnFIBAstigmatismYGet.Text = "读";
  1411. this.btnFIBAstigmatismYGet.UseVisualStyleBackColor = true;
  1412. this.btnFIBAstigmatismYGet.Click += new System.EventHandler(this.btnFIBAstigmatismYGet_Click);
  1413. //
  1414. // btnFIBAstigmatismXSet
  1415. //
  1416. this.btnFIBAstigmatismXSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1417. this.btnFIBAstigmatismXSet.Location = new System.Drawing.Point(304, 125);
  1418. this.btnFIBAstigmatismXSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1419. this.btnFIBAstigmatismXSet.Name = "btnFIBAstigmatismXSet";
  1420. this.btnFIBAstigmatismXSet.Size = new System.Drawing.Size(54, 34);
  1421. this.btnFIBAstigmatismXSet.TabIndex = 67;
  1422. this.btnFIBAstigmatismXSet.Text = "写";
  1423. this.btnFIBAstigmatismXSet.UseVisualStyleBackColor = true;
  1424. this.btnFIBAstigmatismXSet.Click += new System.EventHandler(this.btnFIBAstigmatismXSet_Click);
  1425. //
  1426. // txtFIBAstigmatismX
  1427. //
  1428. this.txtFIBAstigmatismX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1429. this.txtFIBAstigmatismX.Location = new System.Drawing.Point(162, 127);
  1430. this.txtFIBAstigmatismX.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1431. this.txtFIBAstigmatismX.Name = "txtFIBAstigmatismX";
  1432. this.txtFIBAstigmatismX.Size = new System.Drawing.Size(85, 30);
  1433. this.txtFIBAstigmatismX.TabIndex = 66;
  1434. this.txtFIBAstigmatismX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1435. //
  1436. // btnFIBAstigmatismXGet
  1437. //
  1438. this.btnFIBAstigmatismXGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1439. this.btnFIBAstigmatismXGet.Location = new System.Drawing.Point(251, 125);
  1440. this.btnFIBAstigmatismXGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1441. this.btnFIBAstigmatismXGet.Name = "btnFIBAstigmatismXGet";
  1442. this.btnFIBAstigmatismXGet.Size = new System.Drawing.Size(54, 34);
  1443. this.btnFIBAstigmatismXGet.TabIndex = 64;
  1444. this.btnFIBAstigmatismXGet.Text = "读";
  1445. this.btnFIBAstigmatismXGet.UseVisualStyleBackColor = true;
  1446. this.btnFIBAstigmatismXGet.Click += new System.EventHandler(this.btnFIBAstigmatismXGet_Click);
  1447. //
  1448. // label23
  1449. //
  1450. this.label23.AutoSize = true;
  1451. this.label23.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1452. this.label23.Location = new System.Drawing.Point(20, 129);
  1453. this.label23.Name = "label23";
  1454. this.label23.Size = new System.Drawing.Size(105, 27);
  1455. this.label23.TabIndex = 65;
  1456. this.label23.Text = "消像散X:";
  1457. //
  1458. // btnFIBBeamShiftYSet
  1459. //
  1460. this.btnFIBBeamShiftYSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1461. this.btnFIBBeamShiftYSet.Location = new System.Drawing.Point(672, 74);
  1462. this.btnFIBBeamShiftYSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1463. this.btnFIBBeamShiftYSet.Name = "btnFIBBeamShiftYSet";
  1464. this.btnFIBBeamShiftYSet.Size = new System.Drawing.Size(54, 34);
  1465. this.btnFIBBeamShiftYSet.TabIndex = 63;
  1466. this.btnFIBBeamShiftYSet.Text = "写";
  1467. this.btnFIBBeamShiftYSet.UseVisualStyleBackColor = true;
  1468. this.btnFIBBeamShiftYSet.Click += new System.EventHandler(this.btnFIBBeamShiftYSet_Click);
  1469. //
  1470. // txtFIBBeamShiftY
  1471. //
  1472. this.txtFIBBeamShiftY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1473. this.txtFIBBeamShiftY.Location = new System.Drawing.Point(514, 76);
  1474. this.txtFIBBeamShiftY.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1475. this.txtFIBBeamShiftY.Name = "txtFIBBeamShiftY";
  1476. this.txtFIBBeamShiftY.Size = new System.Drawing.Size(101, 30);
  1477. this.txtFIBBeamShiftY.TabIndex = 62;
  1478. this.txtFIBBeamShiftY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1479. //
  1480. // label18
  1481. //
  1482. this.label18.AutoSize = true;
  1483. this.label18.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1484. this.label18.Location = new System.Drawing.Point(417, 78);
  1485. this.label18.Name = "label18";
  1486. this.label18.Size = new System.Drawing.Size(104, 27);
  1487. this.label18.TabIndex = 61;
  1488. this.label18.Text = "电子束Y:";
  1489. //
  1490. // btnFIBBeamShiftYGet
  1491. //
  1492. this.btnFIBBeamShiftYGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1493. this.btnFIBBeamShiftYGet.Location = new System.Drawing.Point(619, 74);
  1494. this.btnFIBBeamShiftYGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1495. this.btnFIBBeamShiftYGet.Name = "btnFIBBeamShiftYGet";
  1496. this.btnFIBBeamShiftYGet.Size = new System.Drawing.Size(54, 34);
  1497. this.btnFIBBeamShiftYGet.TabIndex = 60;
  1498. this.btnFIBBeamShiftYGet.Text = "读";
  1499. this.btnFIBBeamShiftYGet.UseVisualStyleBackColor = true;
  1500. this.btnFIBBeamShiftYGet.Click += new System.EventHandler(this.btnFIBBeamShiftYGet_Click);
  1501. //
  1502. // btnFIBBeamShiftXSet
  1503. //
  1504. this.btnFIBBeamShiftXSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1505. this.btnFIBBeamShiftXSet.Location = new System.Drawing.Point(672, 27);
  1506. this.btnFIBBeamShiftXSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1507. this.btnFIBBeamShiftXSet.Name = "btnFIBBeamShiftXSet";
  1508. this.btnFIBBeamShiftXSet.Size = new System.Drawing.Size(54, 34);
  1509. this.btnFIBBeamShiftXSet.TabIndex = 59;
  1510. this.btnFIBBeamShiftXSet.Text = "写";
  1511. this.btnFIBBeamShiftXSet.UseVisualStyleBackColor = true;
  1512. this.btnFIBBeamShiftXSet.Click += new System.EventHandler(this.btnFIBBeamShiftXSet_Click);
  1513. //
  1514. // txtFIBBeamShiftX
  1515. //
  1516. this.txtFIBBeamShiftX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1517. this.txtFIBBeamShiftX.Location = new System.Drawing.Point(514, 29);
  1518. this.txtFIBBeamShiftX.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1519. this.txtFIBBeamShiftX.Name = "txtFIBBeamShiftX";
  1520. this.txtFIBBeamShiftX.Size = new System.Drawing.Size(101, 30);
  1521. this.txtFIBBeamShiftX.TabIndex = 58;
  1522. this.txtFIBBeamShiftX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1523. //
  1524. // btnFIBBeamShiftXGet
  1525. //
  1526. this.btnFIBBeamShiftXGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1527. this.btnFIBBeamShiftXGet.Location = new System.Drawing.Point(619, 27);
  1528. this.btnFIBBeamShiftXGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1529. this.btnFIBBeamShiftXGet.Name = "btnFIBBeamShiftXGet";
  1530. this.btnFIBBeamShiftXGet.Size = new System.Drawing.Size(54, 34);
  1531. this.btnFIBBeamShiftXGet.TabIndex = 56;
  1532. this.btnFIBBeamShiftXGet.Text = "读";
  1533. this.btnFIBBeamShiftXGet.UseVisualStyleBackColor = true;
  1534. this.btnFIBBeamShiftXGet.Click += new System.EventHandler(this.btnFIBBeamShiftXGet_Click);
  1535. //
  1536. // label20
  1537. //
  1538. this.label20.AutoSize = true;
  1539. this.label20.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1540. this.label20.Location = new System.Drawing.Point(417, 31);
  1541. this.label20.Name = "label20";
  1542. this.label20.Size = new System.Drawing.Size(105, 27);
  1543. this.label20.TabIndex = 57;
  1544. this.label20.Text = "电子束X:";
  1545. //
  1546. // btnMCF
  1547. //
  1548. this.btnMCF.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1549. this.btnMCF.Location = new System.Drawing.Point(582, 122);
  1550. this.btnMCF.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1551. this.btnMCF.Name = "btnMCF";
  1552. this.btnMCF.Size = new System.Drawing.Size(144, 41);
  1553. this.btnMCF.TabIndex = 55;
  1554. this.btnMCF.Text = "执行宏文件";
  1555. this.btnMCF.UseVisualStyleBackColor = true;
  1556. this.btnMCF.Click += new System.EventHandler(this.btnMCF_Click);
  1557. //
  1558. // label14
  1559. //
  1560. this.label14.AutoSize = true;
  1561. this.label14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1562. this.label14.Location = new System.Drawing.Point(20, 30);
  1563. this.label14.Name = "label14";
  1564. this.label14.Size = new System.Drawing.Size(72, 27);
  1565. this.label14.TabIndex = 15;
  1566. this.label14.Text = "缩放:";
  1567. //
  1568. // btnFIBMagSet
  1569. //
  1570. this.btnFIBMagSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1571. this.btnFIBMagSet.Location = new System.Drawing.Point(304, 26);
  1572. this.btnFIBMagSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1573. this.btnFIBMagSet.Name = "btnFIBMagSet";
  1574. this.btnFIBMagSet.Size = new System.Drawing.Size(54, 34);
  1575. this.btnFIBMagSet.TabIndex = 17;
  1576. this.btnFIBMagSet.Text = "写";
  1577. this.btnFIBMagSet.UseVisualStyleBackColor = true;
  1578. this.btnFIBMagSet.Click += new System.EventHandler(this.btnFIBMagSet_Click);
  1579. //
  1580. // btnFIBMagGet
  1581. //
  1582. this.btnFIBMagGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1583. this.btnFIBMagGet.Location = new System.Drawing.Point(251, 26);
  1584. this.btnFIBMagGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1585. this.btnFIBMagGet.Name = "btnFIBMagGet";
  1586. this.btnFIBMagGet.Size = new System.Drawing.Size(54, 34);
  1587. this.btnFIBMagGet.TabIndex = 14;
  1588. this.btnFIBMagGet.Text = "读";
  1589. this.btnFIBMagGet.UseVisualStyleBackColor = true;
  1590. this.btnFIBMagGet.Click += new System.EventHandler(this.btnFIBMagGet_Click);
  1591. //
  1592. // txtFIBMag
  1593. //
  1594. this.txtFIBMag.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1595. this.txtFIBMag.Location = new System.Drawing.Point(162, 28);
  1596. this.txtFIBMag.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1597. this.txtFIBMag.Name = "txtFIBMag";
  1598. this.txtFIBMag.Size = new System.Drawing.Size(85, 30);
  1599. this.txtFIBMag.TabIndex = 16;
  1600. this.txtFIBMag.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1601. //
  1602. // btnFIBWDSet
  1603. //
  1604. this.btnFIBWDSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1605. this.btnFIBWDSet.Location = new System.Drawing.Point(304, 73);
  1606. this.btnFIBWDSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1607. this.btnFIBWDSet.Name = "btnFIBWDSet";
  1608. this.btnFIBWDSet.Size = new System.Drawing.Size(54, 34);
  1609. this.btnFIBWDSet.TabIndex = 21;
  1610. this.btnFIBWDSet.Text = "写";
  1611. this.btnFIBWDSet.UseVisualStyleBackColor = true;
  1612. this.btnFIBWDSet.Click += new System.EventHandler(this.btnFIBWDSet_Click);
  1613. //
  1614. // btnFIBWDGet
  1615. //
  1616. this.btnFIBWDGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1617. this.btnFIBWDGet.Location = new System.Drawing.Point(251, 73);
  1618. this.btnFIBWDGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1619. this.btnFIBWDGet.Name = "btnFIBWDGet";
  1620. this.btnFIBWDGet.Size = new System.Drawing.Size(54, 34);
  1621. this.btnFIBWDGet.TabIndex = 18;
  1622. this.btnFIBWDGet.Text = "读";
  1623. this.btnFIBWDGet.UseVisualStyleBackColor = true;
  1624. this.btnFIBWDGet.Click += new System.EventHandler(this.btnFIBWDGet_Click);
  1625. //
  1626. // label16
  1627. //
  1628. this.label16.AutoSize = true;
  1629. this.label16.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1630. this.label16.Location = new System.Drawing.Point(20, 77);
  1631. this.label16.Name = "label16";
  1632. this.label16.Size = new System.Drawing.Size(72, 27);
  1633. this.label16.TabIndex = 19;
  1634. this.label16.Text = "焦距:";
  1635. //
  1636. // txtFIBWD
  1637. //
  1638. this.txtFIBWD.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1639. this.txtFIBWD.Location = new System.Drawing.Point(162, 75);
  1640. this.txtFIBWD.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1641. this.txtFIBWD.Name = "txtFIBWD";
  1642. this.txtFIBWD.Size = new System.Drawing.Size(85, 30);
  1643. this.txtFIBWD.TabIndex = 20;
  1644. this.txtFIBWD.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1645. //
  1646. // button1
  1647. //
  1648. this.button1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1649. this.button1.Location = new System.Drawing.Point(693, 365);
  1650. this.button1.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1651. this.button1.Name = "button1";
  1652. this.button1.Size = new System.Drawing.Size(54, 34);
  1653. this.button1.TabIndex = 97;
  1654. this.button1.Text = "写";
  1655. this.button1.UseVisualStyleBackColor = true;
  1656. this.button1.Click += new System.EventHandler(this.button1_Click);
  1657. //
  1658. // txtVoltage
  1659. //
  1660. this.txtVoltage.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1661. this.txtVoltage.Location = new System.Drawing.Point(551, 367);
  1662. this.txtVoltage.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1663. this.txtVoltage.Name = "txtVoltage";
  1664. this.txtVoltage.Size = new System.Drawing.Size(85, 30);
  1665. this.txtVoltage.TabIndex = 96;
  1666. this.txtVoltage.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1667. //
  1668. // button2
  1669. //
  1670. this.button2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1671. this.button2.Location = new System.Drawing.Point(640, 365);
  1672. this.button2.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1673. this.button2.Name = "button2";
  1674. this.button2.Size = new System.Drawing.Size(54, 34);
  1675. this.button2.TabIndex = 94;
  1676. this.button2.Text = "读";
  1677. this.button2.UseVisualStyleBackColor = true;
  1678. this.button2.Click += new System.EventHandler(this.button2_Click);
  1679. //
  1680. // label67
  1681. //
  1682. this.label67.AutoSize = true;
  1683. this.label67.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1684. this.label67.Location = new System.Drawing.Point(469, 369);
  1685. this.label67.Name = "label67";
  1686. this.label67.Size = new System.Drawing.Size(72, 27);
  1687. this.label67.TabIndex = 95;
  1688. this.label67.Text = "电压:";
  1689. //
  1690. // btnScanRotationSetOn
  1691. //
  1692. this.btnScanRotationSetOn.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1693. this.btnScanRotationSetOn.Location = new System.Drawing.Point(353, 367);
  1694. this.btnScanRotationSetOn.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1695. this.btnScanRotationSetOn.Name = "btnScanRotationSetOn";
  1696. this.btnScanRotationSetOn.Size = new System.Drawing.Size(54, 34);
  1697. this.btnScanRotationSetOn.TabIndex = 93;
  1698. this.btnScanRotationSetOn.Text = "开";
  1699. this.btnScanRotationSetOn.UseVisualStyleBackColor = true;
  1700. this.btnScanRotationSetOn.Click += new System.EventHandler(this.btnScanRotationSetOn_Click);
  1701. //
  1702. // btnTiltAngleSetOn
  1703. //
  1704. this.btnTiltAngleSetOn.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1705. this.btnTiltAngleSetOn.Location = new System.Drawing.Point(353, 302);
  1706. this.btnTiltAngleSetOn.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1707. this.btnTiltAngleSetOn.Name = "btnTiltAngleSetOn";
  1708. this.btnTiltAngleSetOn.Size = new System.Drawing.Size(54, 34);
  1709. this.btnTiltAngleSetOn.TabIndex = 92;
  1710. this.btnTiltAngleSetOn.Text = "开";
  1711. this.btnTiltAngleSetOn.UseVisualStyleBackColor = true;
  1712. this.btnTiltAngleSetOn.Click += new System.EventHandler(this.btnTiltAngleSetOn_Click);
  1713. //
  1714. // btnTiltAngleSetOff
  1715. //
  1716. this.btnTiltAngleSetOff.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1717. this.btnTiltAngleSetOff.Location = new System.Drawing.Point(409, 302);
  1718. this.btnTiltAngleSetOff.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1719. this.btnTiltAngleSetOff.Name = "btnTiltAngleSetOff";
  1720. this.btnTiltAngleSetOff.Size = new System.Drawing.Size(54, 34);
  1721. this.btnTiltAngleSetOff.TabIndex = 91;
  1722. this.btnTiltAngleSetOff.Text = "锁";
  1723. this.btnTiltAngleSetOff.UseVisualStyleBackColor = true;
  1724. this.btnTiltAngleSetOff.Click += new System.EventHandler(this.button1_Click_1);
  1725. //
  1726. // btnScanRotationSetLock
  1727. //
  1728. this.btnScanRotationSetLock.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1729. this.btnScanRotationSetLock.Location = new System.Drawing.Point(409, 367);
  1730. this.btnScanRotationSetLock.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1731. this.btnScanRotationSetLock.Name = "btnScanRotationSetLock";
  1732. this.btnScanRotationSetLock.Size = new System.Drawing.Size(54, 34);
  1733. this.btnScanRotationSetLock.TabIndex = 90;
  1734. this.btnScanRotationSetLock.Text = "锁";
  1735. this.btnScanRotationSetLock.UseVisualStyleBackColor = true;
  1736. this.btnScanRotationSetLock.Click += new System.EventHandler(this.btnScanRotationSetLock_Click);
  1737. //
  1738. // btnFrozen
  1739. //
  1740. this.btnFrozen.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1741. this.btnFrozen.Location = new System.Drawing.Point(649, 205);
  1742. this.btnFrozen.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1743. this.btnFrozen.Name = "btnFrozen";
  1744. this.btnFrozen.Size = new System.Drawing.Size(86, 41);
  1745. this.btnFrozen.TabIndex = 89;
  1746. this.btnFrozen.Text = "冻结";
  1747. this.btnFrozen.UseVisualStyleBackColor = true;
  1748. this.btnFrozen.Click += new System.EventHandler(this.btnFrozen_Click);
  1749. //
  1750. // btnLive
  1751. //
  1752. this.btnLive.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1753. this.btnLive.Location = new System.Drawing.Point(557, 205);
  1754. this.btnLive.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1755. this.btnLive.Name = "btnLive";
  1756. this.btnLive.Size = new System.Drawing.Size(86, 41);
  1757. this.btnLive.TabIndex = 88;
  1758. this.btnLive.Text = "解冻";
  1759. this.btnLive.UseVisualStyleBackColor = true;
  1760. this.btnLive.Click += new System.EventHandler(this.btnLive_Click);
  1761. //
  1762. // btnAutoStig
  1763. //
  1764. this.btnAutoStig.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1765. this.btnAutoStig.Location = new System.Drawing.Point(356, 210);
  1766. this.btnAutoStig.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1767. this.btnAutoStig.Name = "btnAutoStig";
  1768. this.btnAutoStig.Size = new System.Drawing.Size(69, 79);
  1769. this.btnAutoStig.TabIndex = 34;
  1770. this.btnAutoStig.Text = "自动";
  1771. this.btnAutoStig.UseVisualStyleBackColor = true;
  1772. this.btnAutoStig.Click += new System.EventHandler(this.btnAutoStig_Click);
  1773. //
  1774. // btnTiltCorrYSet
  1775. //
  1776. this.btnTiltCorrYSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1777. this.btnTiltCorrYSet.Location = new System.Drawing.Point(693, 455);
  1778. this.btnTiltCorrYSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1779. this.btnTiltCorrYSet.Name = "btnTiltCorrYSet";
  1780. this.btnTiltCorrYSet.Size = new System.Drawing.Size(54, 34);
  1781. this.btnTiltCorrYSet.TabIndex = 54;
  1782. this.btnTiltCorrYSet.Text = "写";
  1783. this.btnTiltCorrYSet.UseVisualStyleBackColor = true;
  1784. this.btnTiltCorrYSet.Click += new System.EventHandler(this.btnTiltCorrYSet_Click);
  1785. //
  1786. // cmbImageStore
  1787. //
  1788. this.cmbImageStore.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1789. this.cmbImageStore.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1790. this.cmbImageStore.FormattingEnabled = true;
  1791. this.cmbImageStore.Items.AddRange(new object[] {
  1792. "1024 * 768",
  1793. "512 * 384",
  1794. "2048 * 1536",
  1795. "3072 * 2304",
  1796. "4096 * 3072",
  1797. "5120 * 3840",
  1798. "6144 * 4608",
  1799. "8192 * 6144",
  1800. "12288 * 9216",
  1801. "16384 * 12288",
  1802. "24576 * 18432",
  1803. "32768 * 24576"});
  1804. this.cmbImageStore.Location = new System.Drawing.Point(613, 317);
  1805. this.cmbImageStore.Name = "cmbImageStore";
  1806. this.cmbImageStore.Size = new System.Drawing.Size(144, 26);
  1807. this.cmbImageStore.TabIndex = 87;
  1808. //
  1809. // btnAutoBCCancle
  1810. //
  1811. this.btnAutoBCCancle.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1812. this.btnAutoBCCancle.Location = new System.Drawing.Point(431, 114);
  1813. this.btnAutoBCCancle.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1814. this.btnAutoBCCancle.Name = "btnAutoBCCancle";
  1815. this.btnAutoBCCancle.Size = new System.Drawing.Size(29, 81);
  1816. this.btnAutoBCCancle.TabIndex = 29;
  1817. this.btnAutoBCCancle.Text = "取消";
  1818. this.btnAutoBCCancle.UseVisualStyleBackColor = true;
  1819. this.btnAutoBCCancle.Click += new System.EventHandler(this.btnAutoBCCancle_Click);
  1820. //
  1821. // lblImageStore
  1822. //
  1823. this.lblImageStore.AutoSize = true;
  1824. this.lblImageStore.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1825. this.lblImageStore.Location = new System.Drawing.Point(608, 255);
  1826. this.lblImageStore.Name = "lblImageStore";
  1827. this.lblImageStore.Size = new System.Drawing.Size(0, 27);
  1828. this.lblImageStore.TabIndex = 86;
  1829. //
  1830. // txtTiltCorrY
  1831. //
  1832. this.txtTiltCorrY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1833. this.txtTiltCorrY.Location = new System.Drawing.Point(551, 457);
  1834. this.txtTiltCorrY.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1835. this.txtTiltCorrY.Name = "txtTiltCorrY";
  1836. this.txtTiltCorrY.Size = new System.Drawing.Size(85, 30);
  1837. this.txtTiltCorrY.TabIndex = 53;
  1838. this.txtTiltCorrY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1839. //
  1840. // btnImageStoreSet
  1841. //
  1842. this.btnImageStoreSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1843. this.btnImageStoreSet.Location = new System.Drawing.Point(464, 308);
  1844. this.btnImageStoreSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1845. this.btnImageStoreSet.Name = "btnImageStoreSet";
  1846. this.btnImageStoreSet.Size = new System.Drawing.Size(144, 41);
  1847. this.btnImageStoreSet.TabIndex = 85;
  1848. this.btnImageStoreSet.Text = "设置分辨率";
  1849. this.btnImageStoreSet.UseVisualStyleBackColor = true;
  1850. this.btnImageStoreSet.Click += new System.EventHandler(this.btnImageStoreSet_Click);
  1851. //
  1852. // btnImageStoreGet
  1853. //
  1854. this.btnImageStoreGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1855. this.btnImageStoreGet.Location = new System.Drawing.Point(431, 248);
  1856. this.btnImageStoreGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1857. this.btnImageStoreGet.Name = "btnImageStoreGet";
  1858. this.btnImageStoreGet.Size = new System.Drawing.Size(144, 41);
  1859. this.btnImageStoreGet.TabIndex = 84;
  1860. this.btnImageStoreGet.Text = "获取分辨率";
  1861. this.btnImageStoreGet.UseVisualStyleBackColor = true;
  1862. this.btnImageStoreGet.Click += new System.EventHandler(this.btnImageStoreGet_Click);
  1863. //
  1864. // btnAutoBC
  1865. //
  1866. this.btnAutoBC.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1867. this.btnAutoBC.Location = new System.Drawing.Point(472, 114);
  1868. this.btnAutoBC.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1869. this.btnAutoBC.Name = "btnAutoBC";
  1870. this.btnAutoBC.Size = new System.Drawing.Size(30, 82);
  1871. this.btnAutoBC.TabIndex = 28;
  1872. this.btnAutoBC.Text = "自动";
  1873. this.btnAutoBC.UseVisualStyleBackColor = true;
  1874. this.btnAutoBC.Click += new System.EventHandler(this.btnAutoBC_Click);
  1875. //
  1876. // label2
  1877. //
  1878. this.label2.AutoSize = true;
  1879. this.label2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1880. this.label2.Location = new System.Drawing.Point(438, 459);
  1881. this.label2.Name = "label2";
  1882. this.label2.Size = new System.Drawing.Size(104, 27);
  1883. this.label2.TabIndex = 52;
  1884. this.label2.Text = "电子束Y:";
  1885. //
  1886. // btnAutoContrast
  1887. //
  1888. this.btnAutoContrast.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1889. this.btnAutoContrast.Location = new System.Drawing.Point(354, 161);
  1890. this.btnAutoContrast.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1891. this.btnAutoContrast.Name = "btnAutoContrast";
  1892. this.btnAutoContrast.Size = new System.Drawing.Size(71, 34);
  1893. this.btnAutoContrast.TabIndex = 27;
  1894. this.btnAutoContrast.Text = "自动";
  1895. this.btnAutoContrast.UseVisualStyleBackColor = true;
  1896. this.btnAutoContrast.Click += new System.EventHandler(this.btnAutoContrast_Click);
  1897. //
  1898. // btnTiltCorrYGet
  1899. //
  1900. this.btnTiltCorrYGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1901. this.btnTiltCorrYGet.Location = new System.Drawing.Point(640, 455);
  1902. this.btnTiltCorrYGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1903. this.btnTiltCorrYGet.Name = "btnTiltCorrYGet";
  1904. this.btnTiltCorrYGet.Size = new System.Drawing.Size(54, 34);
  1905. this.btnTiltCorrYGet.TabIndex = 51;
  1906. this.btnTiltCorrYGet.Text = "读";
  1907. this.btnTiltCorrYGet.UseVisualStyleBackColor = true;
  1908. this.btnTiltCorrYGet.Click += new System.EventHandler(this.btnTiltCorrYGet_Click);
  1909. //
  1910. // btnAutoBrightness
  1911. //
  1912. this.btnAutoBrightness.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1913. this.btnAutoBrightness.Location = new System.Drawing.Point(353, 114);
  1914. this.btnAutoBrightness.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1915. this.btnAutoBrightness.Name = "btnAutoBrightness";
  1916. this.btnAutoBrightness.Size = new System.Drawing.Size(71, 34);
  1917. this.btnAutoBrightness.TabIndex = 26;
  1918. this.btnAutoBrightness.Text = "自动";
  1919. this.btnAutoBrightness.UseVisualStyleBackColor = true;
  1920. this.btnAutoBrightness.Click += new System.EventHandler(this.btnAutoBrightness_Click);
  1921. //
  1922. // btnTiltCorrXSet
  1923. //
  1924. this.btnTiltCorrXSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1925. this.btnTiltCorrXSet.Location = new System.Drawing.Point(693, 408);
  1926. this.btnTiltCorrXSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1927. this.btnTiltCorrXSet.Name = "btnTiltCorrXSet";
  1928. this.btnTiltCorrXSet.Size = new System.Drawing.Size(54, 34);
  1929. this.btnTiltCorrXSet.TabIndex = 50;
  1930. this.btnTiltCorrXSet.Text = "写";
  1931. this.btnTiltCorrXSet.UseVisualStyleBackColor = true;
  1932. this.btnTiltCorrXSet.Click += new System.EventHandler(this.btnTiltCorrXSet_Click);
  1933. //
  1934. // txtTiltCorrX
  1935. //
  1936. this.txtTiltCorrX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  1937. this.txtTiltCorrX.Location = new System.Drawing.Point(551, 410);
  1938. this.txtTiltCorrX.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1939. this.txtTiltCorrX.Name = "txtTiltCorrX";
  1940. this.txtTiltCorrX.Size = new System.Drawing.Size(85, 30);
  1941. this.txtTiltCorrX.TabIndex = 49;
  1942. this.txtTiltCorrX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1943. //
  1944. // btnAutoFocus2
  1945. //
  1946. this.btnAutoFocus2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1947. this.btnAutoFocus2.Location = new System.Drawing.Point(431, 68);
  1948. this.btnAutoFocus2.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1949. this.btnAutoFocus2.Name = "btnAutoFocus2";
  1950. this.btnAutoFocus2.Size = new System.Drawing.Size(71, 34);
  1951. this.btnAutoFocus2.TabIndex = 25;
  1952. this.btnAutoFocus2.Text = "自动2";
  1953. this.btnAutoFocus2.UseVisualStyleBackColor = true;
  1954. this.btnAutoFocus2.Click += new System.EventHandler(this.btnAutoFocus2_Click);
  1955. //
  1956. // btnAutoFocus1
  1957. //
  1958. this.btnAutoFocus1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1959. this.btnAutoFocus1.Location = new System.Drawing.Point(354, 67);
  1960. this.btnAutoFocus1.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1961. this.btnAutoFocus1.Name = "btnAutoFocus1";
  1962. this.btnAutoFocus1.Size = new System.Drawing.Size(71, 34);
  1963. this.btnAutoFocus1.TabIndex = 24;
  1964. this.btnAutoFocus1.Text = "自动1";
  1965. this.btnAutoFocus1.UseVisualStyleBackColor = true;
  1966. this.btnAutoFocus1.Click += new System.EventHandler(this.btnAutoFocus1_Click);
  1967. //
  1968. // btnTiltCorrXGet
  1969. //
  1970. this.btnTiltCorrXGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1971. this.btnTiltCorrXGet.Location = new System.Drawing.Point(640, 408);
  1972. this.btnTiltCorrXGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1973. this.btnTiltCorrXGet.Name = "btnTiltCorrXGet";
  1974. this.btnTiltCorrXGet.Size = new System.Drawing.Size(54, 34);
  1975. this.btnTiltCorrXGet.TabIndex = 47;
  1976. this.btnTiltCorrXGet.Text = "读";
  1977. this.btnTiltCorrXGet.UseVisualStyleBackColor = true;
  1978. this.btnTiltCorrXGet.Click += new System.EventHandler(this.btnTiltCorrXGet_Click);
  1979. //
  1980. // label12
  1981. //
  1982. this.label12.AutoSize = true;
  1983. this.label12.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1984. this.label12.Location = new System.Drawing.Point(438, 412);
  1985. this.label12.Name = "label12";
  1986. this.label12.Size = new System.Drawing.Size(105, 27);
  1987. this.label12.TabIndex = 48;
  1988. this.label12.Text = "电子束X:";
  1989. //
  1990. // lblPixelSizeGet
  1991. //
  1992. this.lblPixelSizeGet.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1993. this.lblPixelSizeGet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1994. this.lblPixelSizeGet.Location = new System.Drawing.Point(154, 432);
  1995. this.lblPixelSizeGet.Name = "lblPixelSizeGet";
  1996. this.lblPixelSizeGet.Size = new System.Drawing.Size(188, 33);
  1997. this.lblPixelSizeGet.TabIndex = 46;
  1998. this.lblPixelSizeGet.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1999. //
  2000. // btnTiltCorr
  2001. //
  2002. this.btnTiltCorr.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2003. this.btnTiltCorr.Location = new System.Drawing.Point(591, 120);
  2004. this.btnTiltCorr.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2005. this.btnTiltCorr.Name = "btnTiltCorr";
  2006. this.btnTiltCorr.Size = new System.Drawing.Size(144, 76);
  2007. this.btnTiltCorr.TabIndex = 55;
  2008. this.btnTiltCorr.Text = "电子束校正";
  2009. this.btnTiltCorr.UseVisualStyleBackColor = true;
  2010. this.btnTiltCorr.Click += new System.EventHandler(this.btnTiltCorr_Click);
  2011. //
  2012. // btnSEM
  2013. //
  2014. this.btnSEM.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2015. this.btnSEM.Location = new System.Drawing.Point(13, 10);
  2016. this.btnSEM.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2017. this.btnSEM.Name = "btnSEM";
  2018. this.btnSEM.Size = new System.Drawing.Size(144, 41);
  2019. this.btnSEM.TabIndex = 2;
  2020. this.btnSEM.Text = "SEM模式";
  2021. this.btnSEM.UseVisualStyleBackColor = true;
  2022. this.btnSEM.Click += new System.EventHandler(this.btnSEM_Click);
  2023. //
  2024. // panelStage
  2025. //
  2026. this.panelStage.Controls.Add(this.btnDRSet);
  2027. this.panelStage.Controls.Add(this.txtDRSet);
  2028. this.panelStage.Controls.Add(this.label83);
  2029. this.panelStage.Controls.Add(this.pictureBox2);
  2030. this.panelStage.Controls.Add(this.pictureBox1);
  2031. this.panelStage.Controls.Add(this.btnWriteXml);
  2032. this.panelStage.Controls.Add(this.btnAbort);
  2033. this.panelStage.Controls.Add(this.btnReadXml);
  2034. this.panelStage.Controls.Add(this.btnMoveXY);
  2035. this.panelStage.Controls.Add(this.label24);
  2036. this.panelStage.Controls.Add(this.btnGetStagePosition);
  2037. this.panelStage.Controls.Add(this.label21);
  2038. this.panelStage.Controls.Add(this.btnStageSetM);
  2039. this.panelStage.Controls.Add(this.btnStageGetX);
  2040. this.panelStage.Controls.Add(this.txtStageM);
  2041. this.panelStage.Controls.Add(this.lblStageX);
  2042. this.panelStage.Controls.Add(this.lblStageM);
  2043. this.panelStage.Controls.Add(this.txtStageX);
  2044. this.panelStage.Controls.Add(this.label10);
  2045. this.panelStage.Controls.Add(this.btnStageSetX);
  2046. this.panelStage.Controls.Add(this.btnStageGetM);
  2047. this.panelStage.Controls.Add(this.btnStageGetY);
  2048. this.panelStage.Controls.Add(this.btnStageSetR);
  2049. this.panelStage.Controls.Add(this.label19);
  2050. this.panelStage.Controls.Add(this.txtStageR);
  2051. this.panelStage.Controls.Add(this.lblStageY);
  2052. this.panelStage.Controls.Add(this.lblStageR);
  2053. this.panelStage.Controls.Add(this.txtStageY);
  2054. this.panelStage.Controls.Add(this.label13);
  2055. this.panelStage.Controls.Add(this.btnStageSetY);
  2056. this.panelStage.Controls.Add(this.btnStageGetR);
  2057. this.panelStage.Controls.Add(this.btnStageGetZ);
  2058. this.panelStage.Controls.Add(this.btnStageSetT);
  2059. this.panelStage.Controls.Add(this.label17);
  2060. this.panelStage.Controls.Add(this.txtStageT);
  2061. this.panelStage.Controls.Add(this.lblStageZ);
  2062. this.panelStage.Controls.Add(this.lblStageT);
  2063. this.panelStage.Controls.Add(this.txtStageZ);
  2064. this.panelStage.Controls.Add(this.label15);
  2065. this.panelStage.Controls.Add(this.btnStageSetZ);
  2066. this.panelStage.Controls.Add(this.btnStageGetT);
  2067. this.panelStage.Dock = System.Windows.Forms.DockStyle.Right;
  2068. this.panelStage.Location = new System.Drawing.Point(783, 3);
  2069. this.panelStage.Name = "panelStage";
  2070. this.panelStage.Size = new System.Drawing.Size(575, 565);
  2071. this.panelStage.TabIndex = 21;
  2072. //
  2073. // btnDRSet
  2074. //
  2075. this.btnDRSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2076. this.btnDRSet.Location = new System.Drawing.Point(350, 301);
  2077. this.btnDRSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2078. this.btnDRSet.Name = "btnDRSet";
  2079. this.btnDRSet.Size = new System.Drawing.Size(79, 34);
  2080. this.btnDRSet.TabIndex = 93;
  2081. this.btnDRSet.Text = "Set";
  2082. this.btnDRSet.UseVisualStyleBackColor = true;
  2083. this.btnDRSet.Click += new System.EventHandler(this.btnDRSet_Click);
  2084. //
  2085. // txtDRSet
  2086. //
  2087. this.txtDRSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  2088. this.txtDRSet.Location = new System.Drawing.Point(240, 302);
  2089. this.txtDRSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  2090. this.txtDRSet.Name = "txtDRSet";
  2091. this.txtDRSet.Size = new System.Drawing.Size(100, 30);
  2092. this.txtDRSet.TabIndex = 92;
  2093. this.txtDRSet.Text = "0";
  2094. this.txtDRSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  2095. //
  2096. // label83
  2097. //
  2098. this.label83.AutoSize = true;
  2099. this.label83.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2100. this.label83.Location = new System.Drawing.Point(54, 304);
  2101. this.label83.Name = "label83";
  2102. this.label83.Size = new System.Drawing.Size(152, 27);
  2103. this.label83.TabIndex = 91;
  2104. this.label83.Text = "样品台 D R轴:";
  2105. //
  2106. // pictureBox2
  2107. //
  2108. this.pictureBox2.Location = new System.Drawing.Point(309, 381);
  2109. this.pictureBox2.Name = "pictureBox2";
  2110. this.pictureBox2.Size = new System.Drawing.Size(260, 178);
  2111. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2112. this.pictureBox2.TabIndex = 90;
  2113. this.pictureBox2.TabStop = false;
  2114. //
  2115. // pictureBox1
  2116. //
  2117. this.pictureBox1.Location = new System.Drawing.Point(43, 381);
  2118. this.pictureBox1.Name = "pictureBox1";
  2119. this.pictureBox1.Size = new System.Drawing.Size(260, 178);
  2120. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2121. this.pictureBox1.TabIndex = 89;
  2122. this.pictureBox1.TabStop = false;
  2123. //
  2124. // btnAbort
  2125. //
  2126. this.btnAbort.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2127. this.btnAbort.Location = new System.Drawing.Point(407, 337);
  2128. this.btnAbort.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2129. this.btnAbort.Name = "btnAbort";
  2130. this.btnAbort.Size = new System.Drawing.Size(144, 41);
  2131. this.btnAbort.TabIndex = 88;
  2132. this.btnAbort.Text = "急停";
  2133. this.btnAbort.UseVisualStyleBackColor = true;
  2134. this.btnAbort.Click += new System.EventHandler(this.btnAbort_Click);
  2135. //
  2136. // btnMoveXY
  2137. //
  2138. this.btnMoveXY.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2139. this.btnMoveXY.Location = new System.Drawing.Point(257, 337);
  2140. this.btnMoveXY.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2141. this.btnMoveXY.Name = "btnMoveXY";
  2142. this.btnMoveXY.Size = new System.Drawing.Size(144, 41);
  2143. this.btnMoveXY.TabIndex = 83;
  2144. this.btnMoveXY.Text = "移动XY";
  2145. this.btnMoveXY.UseVisualStyleBackColor = true;
  2146. this.btnMoveXY.Click += new System.EventHandler(this.btnMoveXY_Click);
  2147. //
  2148. // label24
  2149. //
  2150. this.label24.AutoSize = true;
  2151. this.label24.Font = new System.Drawing.Font("微软雅黑", 16.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2152. this.label24.Location = new System.Drawing.Point(278, 15);
  2153. this.label24.Name = "label24";
  2154. this.label24.Size = new System.Drawing.Size(101, 37);
  2155. this.label24.TabIndex = 82;
  2156. this.label24.Text = "样品台";
  2157. //
  2158. // tabControl1
  2159. //
  2160. this.tabControl1.Controls.Add(this.tabPage1);
  2161. this.tabControl1.Controls.Add(this.tabPage2);
  2162. this.tabControl1.Controls.Add(this.tabPage3);
  2163. this.tabControl1.Controls.Add(this.tabPage4);
  2164. this.tabControl1.Controls.Add(this.tabPage5);
  2165. this.tabControl1.Controls.Add(this.tabPage6);
  2166. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  2167. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  2168. this.tabControl1.Name = "tabControl1";
  2169. this.tabControl1.SelectedIndex = 0;
  2170. this.tabControl1.Size = new System.Drawing.Size(1369, 600);
  2171. this.tabControl1.TabIndex = 22;
  2172. //
  2173. // tabPage1
  2174. //
  2175. this.tabPage1.Controls.Add(this.panelControl);
  2176. this.tabPage1.Controls.Add(this.panelStage);
  2177. this.tabPage1.Location = new System.Drawing.Point(4, 25);
  2178. this.tabPage1.Name = "tabPage1";
  2179. this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
  2180. this.tabPage1.Size = new System.Drawing.Size(1361, 571);
  2181. this.tabPage1.TabIndex = 0;
  2182. this.tabPage1.Text = "SEM+FIB";
  2183. this.tabPage1.UseVisualStyleBackColor = true;
  2184. //
  2185. // tabPage2
  2186. //
  2187. this.tabPage2.Controls.Add(this.label81);
  2188. this.tabPage2.Controls.Add(this.label79);
  2189. this.tabPage2.Controls.Add(this.lblstate8);
  2190. this.tabPage2.Controls.Add(this.label84);
  2191. this.tabPage2.Controls.Add(this.lblMag2);
  2192. this.tabPage2.Controls.Add(this.label80);
  2193. this.tabPage2.Controls.Add(this.lblMag1);
  2194. this.tabPage2.Controls.Add(this.label82);
  2195. this.tabPage2.Controls.Add(this.btnPost8);
  2196. this.tabPage2.Controls.Add(this.txtfirm);
  2197. this.tabPage2.Controls.Add(this.txtTypee);
  2198. this.tabPage2.Controls.Add(this.btntest);
  2199. this.tabPage2.Controls.Add(this.txtaddr2);
  2200. this.tabPage2.Controls.Add(this.txtaddr);
  2201. this.tabPage2.Controls.Add(this.lbllocationy2);
  2202. this.tabPage2.Controls.Add(this.label71);
  2203. this.tabPage2.Controls.Add(this.lbllocationx2);
  2204. this.tabPage2.Controls.Add(this.label75);
  2205. this.tabPage2.Controls.Add(this.lblstate9);
  2206. this.tabPage2.Controls.Add(this.label47);
  2207. this.tabPage2.Controls.Add(this.lblcenter2);
  2208. this.tabPage2.Controls.Add(this.label49);
  2209. this.tabPage2.Controls.Add(this.lblcenter1);
  2210. this.tabPage2.Controls.Add(this.label51);
  2211. this.tabPage2.Controls.Add(this.lblstate7);
  2212. this.tabPage2.Controls.Add(this.label53);
  2213. this.tabPage2.Controls.Add(this.lbldirection2);
  2214. this.tabPage2.Controls.Add(this.label55);
  2215. this.tabPage2.Controls.Add(this.lbldegree2);
  2216. this.tabPage2.Controls.Add(this.label57);
  2217. this.tabPage2.Controls.Add(this.lblstigpath);
  2218. this.tabPage2.Controls.Add(this.label45);
  2219. this.tabPage2.Controls.Add(this.lblfocuspath);
  2220. this.tabPage2.Controls.Add(this.label43);
  2221. this.tabPage2.Controls.Add(this.lblstate4);
  2222. this.tabPage2.Controls.Add(this.label37);
  2223. this.tabPage2.Controls.Add(this.lbltopcy);
  2224. this.tabPage2.Controls.Add(this.label39);
  2225. this.tabPage2.Controls.Add(this.lbltopcx);
  2226. this.tabPage2.Controls.Add(this.label41);
  2227. this.tabPage2.Controls.Add(this.lblstate3);
  2228. this.tabPage2.Controls.Add(this.label35);
  2229. this.tabPage2.Controls.Add(this.lblstate2);
  2230. this.tabPage2.Controls.Add(this.label27);
  2231. this.tabPage2.Controls.Add(this.lbllocationy1);
  2232. this.tabPage2.Controls.Add(this.label31);
  2233. this.tabPage2.Controls.Add(this.lbllocationx1);
  2234. this.tabPage2.Controls.Add(this.label33);
  2235. this.tabPage2.Controls.Add(this.btnPost9);
  2236. this.tabPage2.Controls.Add(this.btnPost7);
  2237. this.tabPage2.Controls.Add(this.btnPost6);
  2238. this.tabPage2.Controls.Add(this.btnPost5);
  2239. this.tabPage2.Controls.Add(this.btnPost4);
  2240. this.tabPage2.Controls.Add(this.btnPost3);
  2241. this.tabPage2.Controls.Add(this.btnPost2);
  2242. this.tabPage2.Controls.Add(this.lblstate1);
  2243. this.tabPage2.Controls.Add(this.label30);
  2244. this.tabPage2.Controls.Add(this.lbldirection1);
  2245. this.tabPage2.Controls.Add(this.label28);
  2246. this.tabPage2.Controls.Add(this.lbldegree1);
  2247. this.tabPage2.Controls.Add(this.label25);
  2248. this.tabPage2.Controls.Add(this.btnPost1);
  2249. this.tabPage2.Location = new System.Drawing.Point(4, 25);
  2250. this.tabPage2.Name = "tabPage2";
  2251. this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
  2252. this.tabPage2.Size = new System.Drawing.Size(1361, 571);
  2253. this.tabPage2.TabIndex = 1;
  2254. this.tabPage2.Text = "POST";
  2255. this.tabPage2.UseVisualStyleBackColor = true;
  2256. //
  2257. // label81
  2258. //
  2259. this.label81.AutoSize = true;
  2260. this.label81.Location = new System.Drawing.Point(341, 204);
  2261. this.label81.Name = "label81";
  2262. this.label81.Size = new System.Drawing.Size(37, 15);
  2263. this.label81.TabIndex = 112;
  2264. this.label81.Text = "厂商";
  2265. //
  2266. // label79
  2267. //
  2268. this.label79.AutoSize = true;
  2269. this.label79.Location = new System.Drawing.Point(341, 121);
  2270. this.label79.Name = "label79";
  2271. this.label79.Size = new System.Drawing.Size(67, 15);
  2272. this.label79.TabIndex = 111;
  2273. this.label79.Text = "样品类型";
  2274. //
  2275. // lblstate8
  2276. //
  2277. this.lblstate8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2278. this.lblstate8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2279. this.lblstate8.Location = new System.Drawing.Point(1182, 456);
  2280. this.lblstate8.Name = "lblstate8";
  2281. this.lblstate8.Size = new System.Drawing.Size(112, 27);
  2282. this.lblstate8.TabIndex = 110;
  2283. //
  2284. // label84
  2285. //
  2286. this.label84.AutoSize = true;
  2287. this.label84.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2288. this.label84.Location = new System.Drawing.Point(1053, 456);
  2289. this.label84.Name = "label84";
  2290. this.label84.Size = new System.Drawing.Size(92, 27);
  2291. this.label84.TabIndex = 109;
  2292. this.label84.Text = "成功失败";
  2293. //
  2294. // lblMag2
  2295. //
  2296. this.lblMag2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2297. this.lblMag2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2298. this.lblMag2.Location = new System.Drawing.Point(859, 480);
  2299. this.lblMag2.Name = "lblMag2";
  2300. this.lblMag2.Size = new System.Drawing.Size(112, 27);
  2301. this.lblMag2.TabIndex = 108;
  2302. //
  2303. // label80
  2304. //
  2305. this.label80.AutoSize = true;
  2306. this.label80.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2307. this.label80.Location = new System.Drawing.Point(730, 481);
  2308. this.label80.Name = "label80";
  2309. this.label80.Size = new System.Drawing.Size(76, 27);
  2310. this.label80.TabIndex = 107;
  2311. this.label80.Text = "Mag2:";
  2312. //
  2313. // lblMag1
  2314. //
  2315. this.lblMag1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2316. this.lblMag1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2317. this.lblMag1.Location = new System.Drawing.Point(859, 441);
  2318. this.lblMag1.Name = "lblMag1";
  2319. this.lblMag1.Size = new System.Drawing.Size(112, 27);
  2320. this.lblMag1.TabIndex = 106;
  2321. //
  2322. // label82
  2323. //
  2324. this.label82.AutoSize = true;
  2325. this.label82.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2326. this.label82.Location = new System.Drawing.Point(730, 441);
  2327. this.label82.Name = "label82";
  2328. this.label82.Size = new System.Drawing.Size(90, 27);
  2329. this.label82.TabIndex = 105;
  2330. this.label82.Text = "Mag1:";
  2331. //
  2332. // btnPost8
  2333. //
  2334. this.btnPost8.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2335. this.btnPost8.Location = new System.Drawing.Point(40, 435);
  2336. this.btnPost8.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2337. this.btnPost8.Name = "btnPost8";
  2338. this.btnPost8.Size = new System.Drawing.Size(275, 72);
  2339. this.btnPost8.TabIndex = 104;
  2340. this.btnPost8.Text = "计算两个测量区域坐标";
  2341. this.btnPost8.UseVisualStyleBackColor = true;
  2342. this.btnPost8.Click += new System.EventHandler(this.btnPost8_Click);
  2343. //
  2344. // txtfirm
  2345. //
  2346. this.txtfirm.Location = new System.Drawing.Point(344, 222);
  2347. this.txtfirm.Name = "txtfirm";
  2348. this.txtfirm.Size = new System.Drawing.Size(50, 25);
  2349. this.txtfirm.TabIndex = 103;
  2350. this.txtfirm.Text = "LG";
  2351. //
  2352. // txtTypee
  2353. //
  2354. this.txtTypee.Location = new System.Drawing.Point(344, 142);
  2355. this.txtTypee.Name = "txtTypee";
  2356. this.txtTypee.Size = new System.Drawing.Size(50, 25);
  2357. this.txtTypee.TabIndex = 102;
  2358. this.txtTypee.Text = "1";
  2359. //
  2360. // btntest
  2361. //
  2362. this.btntest.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2363. this.btntest.Location = new System.Drawing.Point(321, 26);
  2364. this.btntest.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2365. this.btntest.Name = "btntest";
  2366. this.btntest.Size = new System.Drawing.Size(101, 41);
  2367. this.btntest.TabIndex = 101;
  2368. this.btntest.Text = "复制图片";
  2369. this.btntest.UseVisualStyleBackColor = true;
  2370. this.btntest.Click += new System.EventHandler(this.btntest_Click);
  2371. //
  2372. // txtaddr2
  2373. //
  2374. this.txtaddr2.Location = new System.Drawing.Point(446, 153);
  2375. this.txtaddr2.Multiline = true;
  2376. this.txtaddr2.Name = "txtaddr2";
  2377. this.txtaddr2.Size = new System.Drawing.Size(556, 48);
  2378. this.txtaddr2.TabIndex = 100;
  2379. this.txtaddr2.Text = "img_path2的图像路径";
  2380. //
  2381. // txtaddr
  2382. //
  2383. this.txtaddr.Location = new System.Drawing.Point(446, 6);
  2384. this.txtaddr.Name = "txtaddr";
  2385. this.txtaddr.Size = new System.Drawing.Size(848, 25);
  2386. this.txtaddr.TabIndex = 99;
  2387. this.txtaddr.Text = "img_path的图路径";
  2388. //
  2389. // lbllocationy2
  2390. //
  2391. this.lbllocationy2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2392. this.lbllocationy2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2393. this.lbllocationy2.Location = new System.Drawing.Point(859, 109);
  2394. this.lbllocationy2.Name = "lbllocationy2";
  2395. this.lbllocationy2.Size = new System.Drawing.Size(112, 27);
  2396. this.lbllocationy2.TabIndex = 98;
  2397. //
  2398. // label71
  2399. //
  2400. this.label71.AutoSize = true;
  2401. this.label71.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2402. this.label71.Location = new System.Drawing.Point(730, 109);
  2403. this.label71.Name = "label71";
  2404. this.label71.Size = new System.Drawing.Size(129, 27);
  2405. this.label71.TabIndex = 97;
  2406. this.label71.Text = "LocationY2:";
  2407. //
  2408. // lbllocationx2
  2409. //
  2410. this.lbllocationx2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2411. this.lbllocationx2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2412. this.lbllocationx2.Location = new System.Drawing.Point(570, 109);
  2413. this.lbllocationx2.Name = "lbllocationx2";
  2414. this.lbllocationx2.Size = new System.Drawing.Size(112, 27);
  2415. this.lbllocationx2.TabIndex = 96;
  2416. //
  2417. // label75
  2418. //
  2419. this.label75.AutoSize = true;
  2420. this.label75.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2421. this.label75.Location = new System.Drawing.Point(441, 109);
  2422. this.label75.Name = "label75";
  2423. this.label75.Size = new System.Drawing.Size(144, 27);
  2424. this.label75.TabIndex = 95;
  2425. this.label75.Text = "LocationX2:";
  2426. //
  2427. // lblstate9
  2428. //
  2429. this.lblstate9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2430. this.lblstate9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2431. this.lblstate9.Location = new System.Drawing.Point(1182, 530);
  2432. this.lblstate9.Name = "lblstate9";
  2433. this.lblstate9.Size = new System.Drawing.Size(112, 27);
  2434. this.lblstate9.TabIndex = 94;
  2435. //
  2436. // label47
  2437. //
  2438. this.label47.AutoSize = true;
  2439. this.label47.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2440. this.label47.Location = new System.Drawing.Point(1053, 530);
  2441. this.label47.Name = "label47";
  2442. this.label47.Size = new System.Drawing.Size(92, 27);
  2443. this.label47.TabIndex = 93;
  2444. this.label47.Text = "成功失败";
  2445. //
  2446. // lblcenter2
  2447. //
  2448. this.lblcenter2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2449. this.lblcenter2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2450. this.lblcenter2.Location = new System.Drawing.Point(570, 479);
  2451. this.lblcenter2.Name = "lblcenter2";
  2452. this.lblcenter2.Size = new System.Drawing.Size(112, 27);
  2453. this.lblcenter2.TabIndex = 92;
  2454. //
  2455. // label49
  2456. //
  2457. this.label49.AutoSize = true;
  2458. this.label49.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2459. this.label49.Location = new System.Drawing.Point(441, 480);
  2460. this.label49.Name = "label49";
  2461. this.label49.Size = new System.Drawing.Size(96, 27);
  2462. this.label49.TabIndex = 91;
  2463. this.label49.Text = "Center2:";
  2464. //
  2465. // lblcenter1
  2466. //
  2467. this.lblcenter1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2468. this.lblcenter1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2469. this.lblcenter1.Location = new System.Drawing.Point(570, 440);
  2470. this.lblcenter1.Name = "lblcenter1";
  2471. this.lblcenter1.Size = new System.Drawing.Size(112, 27);
  2472. this.lblcenter1.TabIndex = 90;
  2473. //
  2474. // label51
  2475. //
  2476. this.label51.AutoSize = true;
  2477. this.label51.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2478. this.label51.Location = new System.Drawing.Point(441, 440);
  2479. this.label51.Name = "label51";
  2480. this.label51.Size = new System.Drawing.Size(110, 27);
  2481. this.label51.TabIndex = 89;
  2482. this.label51.Text = "Center1:";
  2483. //
  2484. // lblstate7
  2485. //
  2486. this.lblstate7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2487. this.lblstate7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2488. this.lblstate7.Location = new System.Drawing.Point(1182, 392);
  2489. this.lblstate7.Name = "lblstate7";
  2490. this.lblstate7.Size = new System.Drawing.Size(112, 27);
  2491. this.lblstate7.TabIndex = 88;
  2492. //
  2493. // label53
  2494. //
  2495. this.label53.AutoSize = true;
  2496. this.label53.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2497. this.label53.Location = new System.Drawing.Point(1053, 392);
  2498. this.label53.Name = "label53";
  2499. this.label53.Size = new System.Drawing.Size(92, 27);
  2500. this.label53.TabIndex = 87;
  2501. this.label53.Text = "成功失败";
  2502. //
  2503. // lbldirection2
  2504. //
  2505. this.lbldirection2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2506. this.lbldirection2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2507. this.lbldirection2.Location = new System.Drawing.Point(859, 391);
  2508. this.lbldirection2.Name = "lbldirection2";
  2509. this.lbldirection2.Size = new System.Drawing.Size(112, 27);
  2510. this.lbldirection2.TabIndex = 86;
  2511. //
  2512. // label55
  2513. //
  2514. this.label55.AutoSize = true;
  2515. this.label55.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2516. this.label55.Location = new System.Drawing.Point(730, 391);
  2517. this.label55.Name = "label55";
  2518. this.label55.Size = new System.Drawing.Size(92, 27);
  2519. this.label55.TabIndex = 85;
  2520. this.label55.Text = "顺逆时针";
  2521. //
  2522. // lbldegree2
  2523. //
  2524. this.lbldegree2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2525. this.lbldegree2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2526. this.lbldegree2.Location = new System.Drawing.Point(570, 390);
  2527. this.lbldegree2.Name = "lbldegree2";
  2528. this.lbldegree2.Size = new System.Drawing.Size(112, 27);
  2529. this.lbldegree2.TabIndex = 84;
  2530. //
  2531. // label57
  2532. //
  2533. this.label57.AutoSize = true;
  2534. this.label57.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2535. this.label57.Location = new System.Drawing.Point(441, 390);
  2536. this.label57.Name = "label57";
  2537. this.label57.Size = new System.Drawing.Size(112, 27);
  2538. this.label57.TabIndex = 83;
  2539. this.label57.Text = "偏移角度:";
  2540. //
  2541. // lblstigpath
  2542. //
  2543. this.lblstigpath.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2544. this.lblstigpath.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2545. this.lblstigpath.Location = new System.Drawing.Point(570, 339);
  2546. this.lblstigpath.Name = "lblstigpath";
  2547. this.lblstigpath.Size = new System.Drawing.Size(724, 27);
  2548. this.lblstigpath.TabIndex = 82;
  2549. //
  2550. // label45
  2551. //
  2552. this.label45.AutoSize = true;
  2553. this.label45.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2554. this.label45.Location = new System.Drawing.Point(441, 339);
  2555. this.label45.Name = "label45";
  2556. this.label45.Size = new System.Drawing.Size(112, 27);
  2557. this.label45.TabIndex = 81;
  2558. this.label45.Text = "图像路径:";
  2559. //
  2560. // lblfocuspath
  2561. //
  2562. this.lblfocuspath.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2563. this.lblfocuspath.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2564. this.lblfocuspath.Location = new System.Drawing.Point(570, 282);
  2565. this.lblfocuspath.Name = "lblfocuspath";
  2566. this.lblfocuspath.Size = new System.Drawing.Size(724, 27);
  2567. this.lblfocuspath.TabIndex = 80;
  2568. //
  2569. // label43
  2570. //
  2571. this.label43.AutoSize = true;
  2572. this.label43.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2573. this.label43.Location = new System.Drawing.Point(441, 282);
  2574. this.label43.Name = "label43";
  2575. this.label43.Size = new System.Drawing.Size(112, 27);
  2576. this.label43.TabIndex = 79;
  2577. this.label43.Text = "图像路径:";
  2578. //
  2579. // lblstate4
  2580. //
  2581. this.lblstate4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2582. this.lblstate4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2583. this.lblstate4.Location = new System.Drawing.Point(1182, 220);
  2584. this.lblstate4.Name = "lblstate4";
  2585. this.lblstate4.Size = new System.Drawing.Size(112, 27);
  2586. this.lblstate4.TabIndex = 78;
  2587. //
  2588. // label37
  2589. //
  2590. this.label37.AutoSize = true;
  2591. this.label37.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2592. this.label37.Location = new System.Drawing.Point(1053, 220);
  2593. this.label37.Name = "label37";
  2594. this.label37.Size = new System.Drawing.Size(92, 27);
  2595. this.label37.TabIndex = 77;
  2596. this.label37.Text = "成功失败";
  2597. //
  2598. // lbltopcy
  2599. //
  2600. this.lbltopcy.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2601. this.lbltopcy.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2602. this.lbltopcy.Location = new System.Drawing.Point(859, 220);
  2603. this.lbltopcy.Name = "lbltopcy";
  2604. this.lbltopcy.Size = new System.Drawing.Size(112, 27);
  2605. this.lbltopcy.TabIndex = 76;
  2606. //
  2607. // label39
  2608. //
  2609. this.label39.AutoSize = true;
  2610. this.label39.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2611. this.label39.Location = new System.Drawing.Point(730, 220);
  2612. this.label39.Name = "label39";
  2613. this.label39.Size = new System.Drawing.Size(101, 27);
  2614. this.label39.TabIndex = 75;
  2615. this.label39.Text = "Top_C-Y:";
  2616. //
  2617. // lbltopcx
  2618. //
  2619. this.lbltopcx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2620. this.lbltopcx.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2621. this.lbltopcx.Location = new System.Drawing.Point(570, 220);
  2622. this.lbltopcx.Name = "lbltopcx";
  2623. this.lbltopcx.Size = new System.Drawing.Size(112, 27);
  2624. this.lbltopcx.TabIndex = 74;
  2625. //
  2626. // label41
  2627. //
  2628. this.label41.AutoSize = true;
  2629. this.label41.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2630. this.label41.Location = new System.Drawing.Point(441, 220);
  2631. this.label41.Name = "label41";
  2632. this.label41.Size = new System.Drawing.Size(116, 27);
  2633. this.label41.TabIndex = 73;
  2634. this.label41.Text = "Top_C-X:";
  2635. //
  2636. // lblstate3
  2637. //
  2638. this.lblstate3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2639. this.lblstate3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2640. this.lblstate3.Location = new System.Drawing.Point(1182, 163);
  2641. this.lblstate3.Name = "lblstate3";
  2642. this.lblstate3.Size = new System.Drawing.Size(112, 27);
  2643. this.lblstate3.TabIndex = 72;
  2644. //
  2645. // label35
  2646. //
  2647. this.label35.AutoSize = true;
  2648. this.label35.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2649. this.label35.Location = new System.Drawing.Point(1053, 163);
  2650. this.label35.Name = "label35";
  2651. this.label35.Size = new System.Drawing.Size(92, 27);
  2652. this.label35.TabIndex = 71;
  2653. this.label35.Text = "成功失败";
  2654. //
  2655. // lblstate2
  2656. //
  2657. this.lblstate2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2658. this.lblstate2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2659. this.lblstate2.Location = new System.Drawing.Point(1182, 82);
  2660. this.lblstate2.Name = "lblstate2";
  2661. this.lblstate2.Size = new System.Drawing.Size(112, 27);
  2662. this.lblstate2.TabIndex = 70;
  2663. //
  2664. // label27
  2665. //
  2666. this.label27.AutoSize = true;
  2667. this.label27.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2668. this.label27.Location = new System.Drawing.Point(1053, 82);
  2669. this.label27.Name = "label27";
  2670. this.label27.Size = new System.Drawing.Size(92, 27);
  2671. this.label27.TabIndex = 69;
  2672. this.label27.Text = "成功失败";
  2673. //
  2674. // lbllocationy1
  2675. //
  2676. this.lbllocationy1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2677. this.lbllocationy1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2678. this.lbllocationy1.Location = new System.Drawing.Point(859, 82);
  2679. this.lbllocationy1.Name = "lbllocationy1";
  2680. this.lbllocationy1.Size = new System.Drawing.Size(112, 27);
  2681. this.lbllocationy1.TabIndex = 68;
  2682. //
  2683. // label31
  2684. //
  2685. this.label31.AutoSize = true;
  2686. this.label31.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2687. this.label31.Location = new System.Drawing.Point(730, 82);
  2688. this.label31.Name = "label31";
  2689. this.label31.Size = new System.Drawing.Size(129, 27);
  2690. this.label31.TabIndex = 67;
  2691. this.label31.Text = "LocationY1:";
  2692. //
  2693. // lbllocationx1
  2694. //
  2695. this.lbllocationx1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2696. this.lbllocationx1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2697. this.lbllocationx1.Location = new System.Drawing.Point(570, 82);
  2698. this.lbllocationx1.Name = "lbllocationx1";
  2699. this.lbllocationx1.Size = new System.Drawing.Size(112, 27);
  2700. this.lbllocationx1.TabIndex = 66;
  2701. //
  2702. // label33
  2703. //
  2704. this.label33.AutoSize = true;
  2705. this.label33.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2706. this.label33.Location = new System.Drawing.Point(441, 82);
  2707. this.label33.Name = "label33";
  2708. this.label33.Size = new System.Drawing.Size(144, 27);
  2709. this.label33.TabIndex = 65;
  2710. this.label33.Text = "LocationX1:";
  2711. //
  2712. // btnPost9
  2713. //
  2714. this.btnPost9.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2715. this.btnPost9.Location = new System.Drawing.Point(40, 518);
  2716. this.btnPost9.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2717. this.btnPost9.Name = "btnPost9";
  2718. this.btnPost9.Size = new System.Drawing.Size(275, 50);
  2719. this.btnPost9.TabIndex = 64;
  2720. this.btnPost9.Text = "测量尺寸";
  2721. this.btnPost9.UseVisualStyleBackColor = true;
  2722. this.btnPost9.Click += new System.EventHandler(this.btnPost9_Click);
  2723. //
  2724. // btnPost7
  2725. //
  2726. this.btnPost7.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2727. this.btnPost7.Location = new System.Drawing.Point(40, 386);
  2728. this.btnPost7.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2729. this.btnPost7.Name = "btnPost7";
  2730. this.btnPost7.Size = new System.Drawing.Size(275, 43);
  2731. this.btnPost7.TabIndex = 63;
  2732. this.btnPost7.Text = "计算切割面区域偏移角度及方向";
  2733. this.btnPost7.UseVisualStyleBackColor = true;
  2734. this.btnPost7.Click += new System.EventHandler(this.btnPost7_Click);
  2735. //
  2736. // btnPost6
  2737. //
  2738. this.btnPost6.Enabled = false;
  2739. this.btnPost6.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2740. this.btnPost6.Location = new System.Drawing.Point(40, 328);
  2741. this.btnPost6.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2742. this.btnPost6.Name = "btnPost6";
  2743. this.btnPost6.Size = new System.Drawing.Size(275, 50);
  2744. this.btnPost6.TabIndex = 62;
  2745. this.btnPost6.Text = "自动消像散";
  2746. this.btnPost6.UseVisualStyleBackColor = true;
  2747. this.btnPost6.Click += new System.EventHandler(this.btnPost6_Click);
  2748. //
  2749. // btnPost5
  2750. //
  2751. this.btnPost5.Enabled = false;
  2752. this.btnPost5.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2753. this.btnPost5.Location = new System.Drawing.Point(40, 271);
  2754. this.btnPost5.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2755. this.btnPost5.Name = "btnPost5";
  2756. this.btnPost5.Size = new System.Drawing.Size(275, 50);
  2757. this.btnPost5.TabIndex = 61;
  2758. this.btnPost5.Text = "自动对焦";
  2759. this.btnPost5.UseVisualStyleBackColor = true;
  2760. this.btnPost5.Click += new System.EventHandler(this.btnPost5_Click);
  2761. //
  2762. // btnPost4
  2763. //
  2764. this.btnPost4.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2765. this.btnPost4.Location = new System.Drawing.Point(40, 206);
  2766. this.btnPost4.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2767. this.btnPost4.Name = "btnPost4";
  2768. this.btnPost4.Size = new System.Drawing.Size(275, 57);
  2769. this.btnPost4.TabIndex = 60;
  2770. this.btnPost4.Text = "计算切割后图像梯形区域上边中心点坐标";
  2771. this.btnPost4.UseVisualStyleBackColor = true;
  2772. this.btnPost4.Click += new System.EventHandler(this.btnPost4_Click);
  2773. //
  2774. // btnPost3
  2775. //
  2776. this.btnPost3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2777. this.btnPost3.Location = new System.Drawing.Point(40, 151);
  2778. this.btnPost3.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2779. this.btnPost3.Name = "btnPost3";
  2780. this.btnPost3.Size = new System.Drawing.Size(275, 50);
  2781. this.btnPost3.TabIndex = 59;
  2782. this.btnPost3.Text = "是否切割成功验证";
  2783. this.btnPost3.UseVisualStyleBackColor = true;
  2784. this.btnPost3.Click += new System.EventHandler(this.btnPost3_Click);
  2785. //
  2786. // btnPost2
  2787. //
  2788. this.btnPost2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2789. this.btnPost2.Location = new System.Drawing.Point(40, 86);
  2790. this.btnPost2.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2791. this.btnPost2.Name = "btnPost2";
  2792. this.btnPost2.Size = new System.Drawing.Size(275, 50);
  2793. this.btnPost2.TabIndex = 58;
  2794. this.btnPost2.Text = "计算切割点位置";
  2795. this.btnPost2.UseVisualStyleBackColor = true;
  2796. this.btnPost2.Click += new System.EventHandler(this.btnPost2_Click);
  2797. //
  2798. // lblstate1
  2799. //
  2800. this.lblstate1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2801. this.lblstate1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2802. this.lblstate1.Location = new System.Drawing.Point(1182, 36);
  2803. this.lblstate1.Name = "lblstate1";
  2804. this.lblstate1.Size = new System.Drawing.Size(112, 27);
  2805. this.lblstate1.TabIndex = 57;
  2806. //
  2807. // label30
  2808. //
  2809. this.label30.AutoSize = true;
  2810. this.label30.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2811. this.label30.Location = new System.Drawing.Point(1053, 36);
  2812. this.label30.Name = "label30";
  2813. this.label30.Size = new System.Drawing.Size(92, 27);
  2814. this.label30.TabIndex = 56;
  2815. this.label30.Text = "成功失败";
  2816. //
  2817. // lbldirection1
  2818. //
  2819. this.lbldirection1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2820. this.lbldirection1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2821. this.lbldirection1.Location = new System.Drawing.Point(859, 36);
  2822. this.lbldirection1.Name = "lbldirection1";
  2823. this.lbldirection1.Size = new System.Drawing.Size(112, 27);
  2824. this.lbldirection1.TabIndex = 55;
  2825. //
  2826. // label28
  2827. //
  2828. this.label28.AutoSize = true;
  2829. this.label28.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2830. this.label28.Location = new System.Drawing.Point(730, 36);
  2831. this.label28.Name = "label28";
  2832. this.label28.Size = new System.Drawing.Size(92, 27);
  2833. this.label28.TabIndex = 54;
  2834. this.label28.Text = "顺逆时针";
  2835. //
  2836. // lbldegree1
  2837. //
  2838. this.lbldegree1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2839. this.lbldegree1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2840. this.lbldegree1.Location = new System.Drawing.Point(570, 36);
  2841. this.lbldegree1.Name = "lbldegree1";
  2842. this.lbldegree1.Size = new System.Drawing.Size(112, 27);
  2843. this.lbldegree1.TabIndex = 53;
  2844. //
  2845. // label25
  2846. //
  2847. this.label25.AutoSize = true;
  2848. this.label25.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2849. this.label25.Location = new System.Drawing.Point(441, 36);
  2850. this.label25.Name = "label25";
  2851. this.label25.Size = new System.Drawing.Size(112, 27);
  2852. this.label25.TabIndex = 52;
  2853. this.label25.Text = "偏移角度:";
  2854. //
  2855. // btnPost1
  2856. //
  2857. this.btnPost1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2858. this.btnPost1.Location = new System.Drawing.Point(40, 21);
  2859. this.btnPost1.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  2860. this.btnPost1.Name = "btnPost1";
  2861. this.btnPost1.Size = new System.Drawing.Size(275, 50);
  2862. this.btnPost1.TabIndex = 51;
  2863. this.btnPost1.Text = "计算原始图像偏移角度及方向";
  2864. this.btnPost1.UseVisualStyleBackColor = true;
  2865. this.btnPost1.Click += new System.EventHandler(this.btnPost1_Click);
  2866. //
  2867. // tabPage3
  2868. //
  2869. this.tabPage3.Controls.Add(this.textBox2);
  2870. this.tabPage3.Controls.Add(this.textBox1);
  2871. this.tabPage3.Controls.Add(this.button6);
  2872. this.tabPage3.Controls.Add(this.button5);
  2873. this.tabPage3.Controls.Add(this.button3);
  2874. this.tabPage3.Controls.Add(this.cbbWPZD);
  2875. this.tabPage3.Controls.Add(this.cbbWPZF);
  2876. this.tabPage3.Controls.Add(this.cbbWQGD);
  2877. this.tabPage3.Controls.Add(this.cbbWQGF);
  2878. this.tabPage3.Controls.Add(this.cbbWLZ);
  2879. this.tabPage3.Controls.Add(this.cbbWXZ);
  2880. this.tabPage3.Controls.Add(this.cbbWCS);
  2881. this.tabPage3.Controls.Add(this.cbbWYP);
  2882. this.tabPage3.Controls.Add(this.txtRXZ);
  2883. this.tabPage3.Controls.Add(this.label26);
  2884. this.tabPage3.Controls.Add(this.txtRPZD);
  2885. this.tabPage3.Controls.Add(this.label29);
  2886. this.tabPage3.Controls.Add(this.txtRPZF);
  2887. this.tabPage3.Controls.Add(this.label34);
  2888. this.tabPage3.Controls.Add(this.txtRQGD);
  2889. this.tabPage3.Controls.Add(this.label36);
  2890. this.tabPage3.Controls.Add(this.txtRQGF);
  2891. this.tabPage3.Controls.Add(this.label40);
  2892. this.tabPage3.Controls.Add(this.txtRLZ);
  2893. this.tabPage3.Controls.Add(this.label44);
  2894. this.tabPage3.Controls.Add(this.chkRIsP);
  2895. this.tabPage3.Controls.Add(this.label52);
  2896. this.tabPage3.Controls.Add(this.txtRYP);
  2897. this.tabPage3.Controls.Add(this.txtRCS);
  2898. this.tabPage3.Controls.Add(this.txtRFIBF);
  2899. this.tabPage3.Controls.Add(this.txtRPTF);
  2900. this.tabPage3.Controls.Add(this.label60);
  2901. this.tabPage3.Controls.Add(this.label63);
  2902. this.tabPage3.Controls.Add(this.label64);
  2903. this.tabPage3.Controls.Add(this.label65);
  2904. this.tabPage3.Controls.Add(this.chkRPT);
  2905. this.tabPage3.Controls.Add(this.label66);
  2906. this.tabPage3.Controls.Add(this.label58);
  2907. this.tabPage3.Controls.Add(this.label50);
  2908. this.tabPage3.Controls.Add(this.label54);
  2909. this.tabPage3.Controls.Add(this.label46);
  2910. this.tabPage3.Controls.Add(this.label42);
  2911. this.tabPage3.Controls.Add(this.label38);
  2912. this.tabPage3.Controls.Add(this.chkWIsP);
  2913. this.tabPage3.Controls.Add(this.label32);
  2914. this.tabPage3.Controls.Add(this.txtWFIBF);
  2915. this.tabPage3.Controls.Add(this.txtWPTF);
  2916. this.tabPage3.Controls.Add(this.label48);
  2917. this.tabPage3.Controls.Add(this.label56);
  2918. this.tabPage3.Controls.Add(this.label59);
  2919. this.tabPage3.Controls.Add(this.label61);
  2920. this.tabPage3.Controls.Add(this.chkWPT);
  2921. this.tabPage3.Controls.Add(this.label62);
  2922. this.tabPage3.Controls.Add(this.btnReadConfig);
  2923. this.tabPage3.Controls.Add(this.btnCreateConfig);
  2924. this.tabPage3.Location = new System.Drawing.Point(4, 25);
  2925. this.tabPage3.Name = "tabPage3";
  2926. this.tabPage3.Size = new System.Drawing.Size(1361, 571);
  2927. this.tabPage3.TabIndex = 2;
  2928. this.tabPage3.Text = "参数文件设计";
  2929. this.tabPage3.UseVisualStyleBackColor = true;
  2930. //
  2931. // textBox2
  2932. //
  2933. this.textBox2.Location = new System.Drawing.Point(152, 394);
  2934. this.textBox2.Name = "textBox2";
  2935. this.textBox2.Size = new System.Drawing.Size(57, 25);
  2936. this.textBox2.TabIndex = 80;
  2937. this.textBox2.Text = "34";
  2938. //
  2939. // textBox1
  2940. //
  2941. this.textBox1.Location = new System.Drawing.Point(77, 394);
  2942. this.textBox1.Name = "textBox1";
  2943. this.textBox1.Size = new System.Drawing.Size(57, 25);
  2944. this.textBox1.TabIndex = 79;
  2945. this.textBox1.Text = "12";
  2946. //
  2947. // button6
  2948. //
  2949. this.button6.Location = new System.Drawing.Point(77, 425);
  2950. this.button6.Name = "button6";
  2951. this.button6.Size = new System.Drawing.Size(132, 54);
  2952. this.button6.TabIndex = 78;
  2953. this.button6.Text = "坐标变换";
  2954. this.button6.UseVisualStyleBackColor = true;
  2955. this.button6.Click += new System.EventHandler(this.button6_Click);
  2956. //
  2957. // button5
  2958. //
  2959. this.button5.Location = new System.Drawing.Point(77, 276);
  2960. this.button5.Name = "button5";
  2961. this.button5.Size = new System.Drawing.Size(132, 93);
  2962. this.button5.TabIndex = 77;
  2963. this.button5.Text = "修改XML文件节点";
  2964. this.button5.UseVisualStyleBackColor = true;
  2965. this.button5.Click += new System.EventHandler(this.button5_Click);
  2966. //
  2967. // button3
  2968. //
  2969. this.button3.Location = new System.Drawing.Point(77, 149);
  2970. this.button3.Name = "button3";
  2971. this.button3.Size = new System.Drawing.Size(132, 93);
  2972. this.button3.TabIndex = 76;
  2973. this.button3.Text = "拉直";
  2974. this.button3.UseVisualStyleBackColor = true;
  2975. this.button3.Click += new System.EventHandler(this.button3_Click);
  2976. //
  2977. // cbbWPZD
  2978. //
  2979. this.cbbWPZD.FormattingEnabled = true;
  2980. this.cbbWPZD.Items.AddRange(new object[] {
  2981. "1000",
  2982. "1500",
  2983. "2000",
  2984. "2500",
  2985. "3000"});
  2986. this.cbbWPZD.Location = new System.Drawing.Point(1098, 155);
  2987. this.cbbWPZD.Name = "cbbWPZD";
  2988. this.cbbWPZD.Size = new System.Drawing.Size(121, 23);
  2989. this.cbbWPZD.TabIndex = 75;
  2990. this.cbbWPZD.Text = "2000";
  2991. //
  2992. // cbbWPZF
  2993. //
  2994. this.cbbWPZF.FormattingEnabled = true;
  2995. this.cbbWPZF.Items.AddRange(new object[] {
  2996. "600",
  2997. "1000",
  2998. "2000",
  2999. "10000"});
  3000. this.cbbWPZF.Location = new System.Drawing.Point(780, 155);
  3001. this.cbbWPZF.Name = "cbbWPZF";
  3002. this.cbbWPZF.Size = new System.Drawing.Size(121, 23);
  3003. this.cbbWPZF.TabIndex = 74;
  3004. this.cbbWPZF.Text = "600";
  3005. //
  3006. // cbbWQGD
  3007. //
  3008. this.cbbWQGD.FormattingEnabled = true;
  3009. this.cbbWQGD.Items.AddRange(new object[] {
  3010. "1000",
  3011. "1500",
  3012. "2000",
  3013. "2500",
  3014. "3000"});
  3015. this.cbbWQGD.Location = new System.Drawing.Point(1098, 97);
  3016. this.cbbWQGD.Name = "cbbWQGD";
  3017. this.cbbWQGD.Size = new System.Drawing.Size(121, 23);
  3018. this.cbbWQGD.TabIndex = 73;
  3019. this.cbbWQGD.Text = "2000";
  3020. //
  3021. // cbbWQGF
  3022. //
  3023. this.cbbWQGF.FormattingEnabled = true;
  3024. this.cbbWQGF.Items.AddRange(new object[] {
  3025. "600",
  3026. "1000",
  3027. "2000",
  3028. "10000"});
  3029. this.cbbWQGF.Location = new System.Drawing.Point(780, 97);
  3030. this.cbbWQGF.Name = "cbbWQGF";
  3031. this.cbbWQGF.Size = new System.Drawing.Size(121, 23);
  3032. this.cbbWQGF.TabIndex = 72;
  3033. this.cbbWQGF.Text = "600";
  3034. //
  3035. // cbbWLZ
  3036. //
  3037. this.cbbWLZ.FormattingEnabled = true;
  3038. this.cbbWLZ.Items.AddRange(new object[] {
  3039. "600",
  3040. "1000",
  3041. "2000",
  3042. "10000"});
  3043. this.cbbWLZ.Location = new System.Drawing.Point(419, 97);
  3044. this.cbbWLZ.Name = "cbbWLZ";
  3045. this.cbbWLZ.Size = new System.Drawing.Size(121, 23);
  3046. this.cbbWLZ.TabIndex = 71;
  3047. this.cbbWLZ.Text = "600";
  3048. //
  3049. // cbbWXZ
  3050. //
  3051. this.cbbWXZ.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3052. this.cbbWXZ.FormattingEnabled = true;
  3053. this.cbbWXZ.Items.AddRange(new object[] {
  3054. "截面观测",
  3055. "表面观测"});
  3056. this.cbbWXZ.Location = new System.Drawing.Point(419, 155);
  3057. this.cbbWXZ.Name = "cbbWXZ";
  3058. this.cbbWXZ.Size = new System.Drawing.Size(121, 23);
  3059. this.cbbWXZ.TabIndex = 70;
  3060. //
  3061. // cbbWCS
  3062. //
  3063. this.cbbWCS.FormattingEnabled = true;
  3064. this.cbbWCS.Location = new System.Drawing.Point(721, 224);
  3065. this.cbbWCS.Name = "cbbWCS";
  3066. this.cbbWCS.Size = new System.Drawing.Size(121, 23);
  3067. this.cbbWCS.TabIndex = 69;
  3068. //
  3069. // cbbWYP
  3070. //
  3071. this.cbbWYP.FormattingEnabled = true;
  3072. this.cbbWYP.Location = new System.Drawing.Point(419, 224);
  3073. this.cbbWYP.Name = "cbbWYP";
  3074. this.cbbWYP.Size = new System.Drawing.Size(121, 23);
  3075. this.cbbWYP.TabIndex = 68;
  3076. //
  3077. // txtRXZ
  3078. //
  3079. this.txtRXZ.Location = new System.Drawing.Point(428, 422);
  3080. this.txtRXZ.Name = "txtRXZ";
  3081. this.txtRXZ.Size = new System.Drawing.Size(91, 25);
  3082. this.txtRXZ.TabIndex = 67;
  3083. //
  3084. // label26
  3085. //
  3086. this.label26.AutoSize = true;
  3087. this.label26.Location = new System.Drawing.Point(281, 425);
  3088. this.label26.Name = "label26";
  3089. this.label26.Size = new System.Drawing.Size(82, 15);
  3090. this.label26.TabIndex = 66;
  3091. this.label26.Text = "校正角度:";
  3092. //
  3093. // txtRPZD
  3094. //
  3095. this.txtRPZD.Location = new System.Drawing.Point(1098, 422);
  3096. this.txtRPZD.Name = "txtRPZD";
  3097. this.txtRPZD.Size = new System.Drawing.Size(145, 25);
  3098. this.txtRPZD.TabIndex = 65;
  3099. //
  3100. // label29
  3101. //
  3102. this.label29.AutoSize = true;
  3103. this.label29.Location = new System.Drawing.Point(980, 425);
  3104. this.label29.Name = "label29";
  3105. this.label29.Size = new System.Drawing.Size(82, 15);
  3106. this.label29.TabIndex = 64;
  3107. this.label29.Text = "拍照电压:";
  3108. //
  3109. // txtRPZF
  3110. //
  3111. this.txtRPZF.Location = new System.Drawing.Point(780, 422);
  3112. this.txtRPZF.Name = "txtRPZF";
  3113. this.txtRPZF.Size = new System.Drawing.Size(145, 25);
  3114. this.txtRPZF.TabIndex = 63;
  3115. //
  3116. // label34
  3117. //
  3118. this.label34.AutoSize = true;
  3119. this.label34.Location = new System.Drawing.Point(632, 425);
  3120. this.label34.Name = "label34";
  3121. this.label34.Size = new System.Drawing.Size(112, 15);
  3122. this.label34.TabIndex = 62;
  3123. this.label34.Text = "拍照放大位数:";
  3124. //
  3125. // txtRQGD
  3126. //
  3127. this.txtRQGD.Location = new System.Drawing.Point(1098, 364);
  3128. this.txtRQGD.Name = "txtRQGD";
  3129. this.txtRQGD.Size = new System.Drawing.Size(145, 25);
  3130. this.txtRQGD.TabIndex = 61;
  3131. //
  3132. // label36
  3133. //
  3134. this.label36.AutoSize = true;
  3135. this.label36.Location = new System.Drawing.Point(980, 367);
  3136. this.label36.Name = "label36";
  3137. this.label36.Size = new System.Drawing.Size(112, 15);
  3138. this.label36.TabIndex = 60;
  3139. this.label36.Text = "定位切割电压:";
  3140. //
  3141. // txtRQGF
  3142. //
  3143. this.txtRQGF.Location = new System.Drawing.Point(780, 364);
  3144. this.txtRQGF.Name = "txtRQGF";
  3145. this.txtRQGF.Size = new System.Drawing.Size(145, 25);
  3146. this.txtRQGF.TabIndex = 59;
  3147. //
  3148. // label40
  3149. //
  3150. this.label40.AutoSize = true;
  3151. this.label40.Location = new System.Drawing.Point(632, 367);
  3152. this.label40.Name = "label40";
  3153. this.label40.Size = new System.Drawing.Size(142, 15);
  3154. this.label40.TabIndex = 58;
  3155. this.label40.Text = "定位切割放大位数:";
  3156. //
  3157. // txtRLZ
  3158. //
  3159. this.txtRLZ.Location = new System.Drawing.Point(428, 364);
  3160. this.txtRLZ.Name = "txtRLZ";
  3161. this.txtRLZ.Size = new System.Drawing.Size(145, 25);
  3162. this.txtRLZ.TabIndex = 57;
  3163. //
  3164. // label44
  3165. //
  3166. this.label44.AutoSize = true;
  3167. this.label44.Location = new System.Drawing.Point(280, 367);
  3168. this.label44.Name = "label44";
  3169. this.label44.Size = new System.Drawing.Size(142, 15);
  3170. this.label44.TabIndex = 56;
  3171. this.label44.Text = "拉直操作放大位数:";
  3172. //
  3173. // chkRIsP
  3174. //
  3175. this.chkRIsP.AutoSize = true;
  3176. this.chkRIsP.Location = new System.Drawing.Point(386, 304);
  3177. this.chkRIsP.Name = "chkRIsP";
  3178. this.chkRIsP.Size = new System.Drawing.Size(18, 17);
  3179. this.chkRIsP.TabIndex = 55;
  3180. this.chkRIsP.UseVisualStyleBackColor = true;
  3181. //
  3182. // label52
  3183. //
  3184. this.label52.AutoSize = true;
  3185. this.label52.Location = new System.Drawing.Point(280, 304);
  3186. this.label52.Name = "label52";
  3187. this.label52.Size = new System.Drawing.Size(97, 15);
  3188. this.label52.TabIndex = 54;
  3189. this.label52.Text = "是否仅拍照:";
  3190. //
  3191. // txtRYP
  3192. //
  3193. this.txtRYP.Location = new System.Drawing.Point(428, 491);
  3194. this.txtRYP.Name = "txtRYP";
  3195. this.txtRYP.Size = new System.Drawing.Size(91, 25);
  3196. this.txtRYP.TabIndex = 53;
  3197. //
  3198. // txtRCS
  3199. //
  3200. this.txtRCS.Location = new System.Drawing.Point(721, 491);
  3201. this.txtRCS.Name = "txtRCS";
  3202. this.txtRCS.Size = new System.Drawing.Size(145, 25);
  3203. this.txtRCS.TabIndex = 52;
  3204. //
  3205. // txtRFIBF
  3206. //
  3207. this.txtRFIBF.Location = new System.Drawing.Point(1098, 301);
  3208. this.txtRFIBF.Name = "txtRFIBF";
  3209. this.txtRFIBF.Size = new System.Drawing.Size(145, 25);
  3210. this.txtRFIBF.TabIndex = 51;
  3211. //
  3212. // txtRPTF
  3213. //
  3214. this.txtRPTF.Location = new System.Drawing.Point(800, 301);
  3215. this.txtRPTF.Name = "txtRPTF";
  3216. this.txtRPTF.Size = new System.Drawing.Size(145, 25);
  3217. this.txtRPTF.TabIndex = 50;
  3218. //
  3219. // label60
  3220. //
  3221. this.label60.AutoSize = true;
  3222. this.label60.Location = new System.Drawing.Point(280, 494);
  3223. this.label60.Name = "label60";
  3224. this.label60.Size = new System.Drawing.Size(82, 15);
  3225. this.label60.TabIndex = 49;
  3226. this.label60.Text = "样品类型:";
  3227. //
  3228. // label63
  3229. //
  3230. this.label63.AutoSize = true;
  3231. this.label63.Location = new System.Drawing.Point(633, 494);
  3232. this.label63.Name = "label63";
  3233. this.label63.Size = new System.Drawing.Size(52, 15);
  3234. this.label63.TabIndex = 48;
  3235. this.label63.Text = "厂商:";
  3236. //
  3237. // label64
  3238. //
  3239. this.label64.AutoSize = true;
  3240. this.label64.Location = new System.Drawing.Point(992, 306);
  3241. this.label64.Name = "label64";
  3242. this.label64.Size = new System.Drawing.Size(100, 15);
  3243. this.label64.TabIndex = 47;
  3244. this.label64.Text = "FIBELY名称:";
  3245. //
  3246. // label65
  3247. //
  3248. this.label65.AutoSize = true;
  3249. this.label65.Location = new System.Drawing.Point(688, 306);
  3250. this.label65.Name = "label65";
  3251. this.label65.Size = new System.Drawing.Size(92, 15);
  3252. this.label65.TabIndex = 46;
  3253. this.label65.Text = "PTELY文件:";
  3254. //
  3255. // chkRPT
  3256. //
  3257. this.chkRPT.AutoSize = true;
  3258. this.chkRPT.Location = new System.Drawing.Point(591, 304);
  3259. this.chkRPT.Name = "chkRPT";
  3260. this.chkRPT.Size = new System.Drawing.Size(18, 17);
  3261. this.chkRPT.TabIndex = 45;
  3262. this.chkRPT.UseVisualStyleBackColor = true;
  3263. //
  3264. // label66
  3265. //
  3266. this.label66.AutoSize = true;
  3267. this.label66.Location = new System.Drawing.Point(485, 304);
  3268. this.label66.Name = "label66";
  3269. this.label66.Size = new System.Drawing.Size(68, 15);
  3270. this.label66.TabIndex = 44;
  3271. this.label66.Text = "是否PT:";
  3272. //
  3273. // label58
  3274. //
  3275. this.label58.AutoSize = true;
  3276. this.label58.Location = new System.Drawing.Point(281, 158);
  3277. this.label58.Name = "label58";
  3278. this.label58.Size = new System.Drawing.Size(82, 15);
  3279. this.label58.TabIndex = 42;
  3280. this.label58.Text = "校正角度:";
  3281. //
  3282. // label50
  3283. //
  3284. this.label50.AutoSize = true;
  3285. this.label50.Location = new System.Drawing.Point(980, 158);
  3286. this.label50.Name = "label50";
  3287. this.label50.Size = new System.Drawing.Size(82, 15);
  3288. this.label50.TabIndex = 40;
  3289. this.label50.Text = "拍照电压:";
  3290. //
  3291. // label54
  3292. //
  3293. this.label54.AutoSize = true;
  3294. this.label54.Location = new System.Drawing.Point(632, 158);
  3295. this.label54.Name = "label54";
  3296. this.label54.Size = new System.Drawing.Size(112, 15);
  3297. this.label54.TabIndex = 38;
  3298. this.label54.Text = "拍照放大位数:";
  3299. //
  3300. // label46
  3301. //
  3302. this.label46.AutoSize = true;
  3303. this.label46.Location = new System.Drawing.Point(980, 100);
  3304. this.label46.Name = "label46";
  3305. this.label46.Size = new System.Drawing.Size(112, 15);
  3306. this.label46.TabIndex = 36;
  3307. this.label46.Text = "定位切割电压:";
  3308. //
  3309. // label42
  3310. //
  3311. this.label42.AutoSize = true;
  3312. this.label42.Location = new System.Drawing.Point(632, 100);
  3313. this.label42.Name = "label42";
  3314. this.label42.Size = new System.Drawing.Size(142, 15);
  3315. this.label42.TabIndex = 34;
  3316. this.label42.Text = "定位切割放大位数:";
  3317. //
  3318. // label38
  3319. //
  3320. this.label38.AutoSize = true;
  3321. this.label38.Location = new System.Drawing.Point(280, 100);
  3322. this.label38.Name = "label38";
  3323. this.label38.Size = new System.Drawing.Size(142, 15);
  3324. this.label38.TabIndex = 32;
  3325. this.label38.Text = "拉直操作放大位数:";
  3326. //
  3327. // chkWIsP
  3328. //
  3329. this.chkWIsP.AutoSize = true;
  3330. this.chkWIsP.Location = new System.Drawing.Point(386, 37);
  3331. this.chkWIsP.Name = "chkWIsP";
  3332. this.chkWIsP.Size = new System.Drawing.Size(18, 17);
  3333. this.chkWIsP.TabIndex = 31;
  3334. this.chkWIsP.UseVisualStyleBackColor = true;
  3335. //
  3336. // label32
  3337. //
  3338. this.label32.AutoSize = true;
  3339. this.label32.Location = new System.Drawing.Point(280, 37);
  3340. this.label32.Name = "label32";
  3341. this.label32.Size = new System.Drawing.Size(97, 15);
  3342. this.label32.TabIndex = 30;
  3343. this.label32.Text = "是否仅拍照:";
  3344. //
  3345. // txtWFIBF
  3346. //
  3347. this.txtWFIBF.Location = new System.Drawing.Point(1098, 34);
  3348. this.txtWFIBF.Name = "txtWFIBF";
  3349. this.txtWFIBF.Size = new System.Drawing.Size(145, 25);
  3350. this.txtWFIBF.TabIndex = 26;
  3351. this.txtWFIBF.Text = "Sample001";
  3352. //
  3353. // txtWPTF
  3354. //
  3355. this.txtWPTF.Location = new System.Drawing.Point(800, 34);
  3356. this.txtWPTF.Name = "txtWPTF";
  3357. this.txtWPTF.Size = new System.Drawing.Size(145, 25);
  3358. this.txtWPTF.TabIndex = 25;
  3359. this.txtWPTF.Text = "HOZ001";
  3360. //
  3361. // label48
  3362. //
  3363. this.label48.AutoSize = true;
  3364. this.label48.Location = new System.Drawing.Point(280, 227);
  3365. this.label48.Name = "label48";
  3366. this.label48.Size = new System.Drawing.Size(82, 15);
  3367. this.label48.TabIndex = 24;
  3368. this.label48.Text = "样品类型:";
  3369. //
  3370. // label56
  3371. //
  3372. this.label56.AutoSize = true;
  3373. this.label56.Location = new System.Drawing.Point(633, 227);
  3374. this.label56.Name = "label56";
  3375. this.label56.Size = new System.Drawing.Size(52, 15);
  3376. this.label56.TabIndex = 20;
  3377. this.label56.Text = "厂商:";
  3378. //
  3379. // label59
  3380. //
  3381. this.label59.AutoSize = true;
  3382. this.label59.Location = new System.Drawing.Point(992, 39);
  3383. this.label59.Name = "label59";
  3384. this.label59.Size = new System.Drawing.Size(100, 15);
  3385. this.label59.TabIndex = 18;
  3386. this.label59.Text = "FIBELY名称:";
  3387. //
  3388. // label61
  3389. //
  3390. this.label61.AutoSize = true;
  3391. this.label61.Location = new System.Drawing.Point(688, 39);
  3392. this.label61.Name = "label61";
  3393. this.label61.Size = new System.Drawing.Size(92, 15);
  3394. this.label61.TabIndex = 16;
  3395. this.label61.Text = "PTELY文件:";
  3396. //
  3397. // chkWPT
  3398. //
  3399. this.chkWPT.AutoSize = true;
  3400. this.chkWPT.Location = new System.Drawing.Point(591, 37);
  3401. this.chkWPT.Name = "chkWPT";
  3402. this.chkWPT.Size = new System.Drawing.Size(18, 17);
  3403. this.chkWPT.TabIndex = 15;
  3404. this.chkWPT.UseVisualStyleBackColor = true;
  3405. //
  3406. // label62
  3407. //
  3408. this.label62.AutoSize = true;
  3409. this.label62.Location = new System.Drawing.Point(485, 37);
  3410. this.label62.Name = "label62";
  3411. this.label62.Size = new System.Drawing.Size(68, 15);
  3412. this.label62.TabIndex = 14;
  3413. this.label62.Text = "是否PT:";
  3414. //
  3415. // btnReadConfig
  3416. //
  3417. this.btnReadConfig.Location = new System.Drawing.Point(77, 84);
  3418. this.btnReadConfig.Name = "btnReadConfig";
  3419. this.btnReadConfig.Size = new System.Drawing.Size(155, 47);
  3420. this.btnReadConfig.TabIndex = 2;
  3421. this.btnReadConfig.Text = "读取配置文件";
  3422. this.btnReadConfig.UseVisualStyleBackColor = true;
  3423. this.btnReadConfig.Click += new System.EventHandler(this.btnReadConfig_Click);
  3424. //
  3425. // btnCreateConfig
  3426. //
  3427. this.btnCreateConfig.Location = new System.Drawing.Point(77, 21);
  3428. this.btnCreateConfig.Name = "btnCreateConfig";
  3429. this.btnCreateConfig.Size = new System.Drawing.Size(155, 47);
  3430. this.btnCreateConfig.TabIndex = 0;
  3431. this.btnCreateConfig.Text = "创建配置文件";
  3432. this.btnCreateConfig.UseVisualStyleBackColor = true;
  3433. this.btnCreateConfig.Click += new System.EventHandler(this.btnCreateConfig_Click);
  3434. //
  3435. // tabPage4
  3436. //
  3437. this.tabPage4.Controls.Add(this.txtstageny);
  3438. this.tabPage4.Controls.Add(this.txtstagenx);
  3439. this.tabPage4.Controls.Add(this.txtps);
  3440. this.tabPage4.Controls.Add(this.label77);
  3441. this.tabPage4.Controls.Add(this.btnimgv);
  3442. this.tabPage4.Controls.Add(this.txtstagevy);
  3443. this.tabPage4.Controls.Add(this.txtstagevx);
  3444. this.tabPage4.Controls.Add(this.txtimgy);
  3445. this.tabPage4.Controls.Add(this.txtimgx);
  3446. this.tabPage4.Controls.Add(this.label69);
  3447. this.tabPage4.Controls.Add(this.label73);
  3448. this.tabPage4.Controls.Add(this.btn60);
  3449. this.tabPage4.Controls.Add(this.btn45);
  3450. this.tabPage4.Controls.Add(this.btn30);
  3451. this.tabPage4.Controls.Add(this.btnrect);
  3452. this.tabPage4.Controls.Add(this.txtdistance);
  3453. this.tabPage4.Controls.Add(this.txtarray);
  3454. this.tabPage4.Controls.Add(this.txty);
  3455. this.tabPage4.Controls.Add(this.txtx);
  3456. this.tabPage4.Controls.Add(this.txtsample1y);
  3457. this.tabPage4.Controls.Add(this.txtsample1x);
  3458. this.tabPage4.Controls.Add(this.label76);
  3459. this.tabPage4.Controls.Add(this.label78);
  3460. this.tabPage4.Controls.Add(this.label74);
  3461. this.tabPage4.Controls.Add(this.label72);
  3462. this.tabPage4.Controls.Add(this.label70);
  3463. this.tabPage4.Controls.Add(this.label68);
  3464. this.tabPage4.Controls.Add(this.chart1);
  3465. this.tabPage4.Controls.Add(this.lblPs1);
  3466. this.tabPage4.Controls.Add(this.btnPsFile);
  3467. this.tabPage4.Location = new System.Drawing.Point(4, 25);
  3468. this.tabPage4.Name = "tabPage4";
  3469. this.tabPage4.Size = new System.Drawing.Size(1361, 571);
  3470. this.tabPage4.TabIndex = 3;
  3471. this.tabPage4.Text = "自动计算坐标";
  3472. this.tabPage4.UseVisualStyleBackColor = true;
  3473. //
  3474. // txtstageny
  3475. //
  3476. this.txtstageny.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3477. this.txtstageny.Location = new System.Drawing.Point(92, 534);
  3478. this.txtstageny.Name = "txtstageny";
  3479. this.txtstageny.Size = new System.Drawing.Size(100, 28);
  3480. this.txtstageny.TabIndex = 87;
  3481. this.txtstageny.Text = "69354";
  3482. this.txtstageny.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3483. //
  3484. // txtstagenx
  3485. //
  3486. this.txtstagenx.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3487. this.txtstagenx.Location = new System.Drawing.Point(92, 480);
  3488. this.txtstagenx.Name = "txtstagenx";
  3489. this.txtstagenx.Size = new System.Drawing.Size(100, 28);
  3490. this.txtstagenx.TabIndex = 86;
  3491. this.txtstagenx.Text = "46994";
  3492. this.txtstagenx.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3493. //
  3494. // txtps
  3495. //
  3496. this.txtps.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3497. this.txtps.Location = new System.Drawing.Point(363, 523);
  3498. this.txtps.Name = "txtps";
  3499. this.txtps.Size = new System.Drawing.Size(100, 28);
  3500. this.txtps.TabIndex = 85;
  3501. this.txtps.Text = "0.07366";
  3502. this.txtps.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3503. //
  3504. // label77
  3505. //
  3506. this.label77.AutoSize = true;
  3507. this.label77.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3508. this.label77.Location = new System.Drawing.Point(225, 520);
  3509. this.label77.Name = "label77";
  3510. this.label77.Size = new System.Drawing.Size(99, 27);
  3511. this.label77.TabIndex = 84;
  3512. this.label77.Text = "piexlsize";
  3513. //
  3514. // btnimgv
  3515. //
  3516. this.btnimgv.Location = new System.Drawing.Point(524, 513);
  3517. this.btnimgv.Name = "btnimgv";
  3518. this.btnimgv.Size = new System.Drawing.Size(127, 38);
  3519. this.btnimgv.TabIndex = 83;
  3520. this.btnimgv.Text = "计算";
  3521. this.btnimgv.UseVisualStyleBackColor = true;
  3522. this.btnimgv.Click += new System.EventHandler(this.btnimgv_Click);
  3523. //
  3524. // txtstagevy
  3525. //
  3526. this.txtstagevy.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3527. this.txtstagevy.Location = new System.Drawing.Point(424, 480);
  3528. this.txtstagevy.Name = "txtstagevy";
  3529. this.txtstagevy.Size = new System.Drawing.Size(183, 28);
  3530. this.txtstagevy.TabIndex = 82;
  3531. this.txtstagevy.Text = "130";
  3532. this.txtstagevy.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3533. //
  3534. // txtstagevx
  3535. //
  3536. this.txtstagevx.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3537. this.txtstagevx.Location = new System.Drawing.Point(424, 426);
  3538. this.txtstagevx.Name = "txtstagevx";
  3539. this.txtstagevx.Size = new System.Drawing.Size(183, 28);
  3540. this.txtstagevx.TabIndex = 81;
  3541. this.txtstagevx.Text = "0";
  3542. this.txtstagevx.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3543. //
  3544. // txtimgy
  3545. //
  3546. this.txtimgy.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3547. this.txtimgy.Location = new System.Drawing.Point(318, 479);
  3548. this.txtimgy.Name = "txtimgy";
  3549. this.txtimgy.Size = new System.Drawing.Size(100, 28);
  3550. this.txtimgy.TabIndex = 80;
  3551. this.txtimgy.Text = "91";
  3552. this.txtimgy.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3553. //
  3554. // txtimgx
  3555. //
  3556. this.txtimgx.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3557. this.txtimgx.Location = new System.Drawing.Point(318, 425);
  3558. this.txtimgx.Name = "txtimgx";
  3559. this.txtimgx.Size = new System.Drawing.Size(100, 28);
  3560. this.txtimgx.TabIndex = 79;
  3561. this.txtimgx.Text = "261";
  3562. this.txtimgx.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3563. //
  3564. // label69
  3565. //
  3566. this.label69.AutoSize = true;
  3567. this.label69.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3568. this.label69.Location = new System.Drawing.Point(224, 477);
  3569. this.label69.Name = "label69";
  3570. this.label69.Size = new System.Drawing.Size(85, 27);
  3571. this.label69.TabIndex = 78;
  3572. this.label69.Text = "图像Y值";
  3573. //
  3574. // label73
  3575. //
  3576. this.label73.AutoSize = true;
  3577. this.label73.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3578. this.label73.Location = new System.Drawing.Point(224, 426);
  3579. this.label73.Name = "label73";
  3580. this.label73.Size = new System.Drawing.Size(86, 27);
  3581. this.label73.TabIndex = 77;
  3582. this.label73.Text = "图像X值";
  3583. //
  3584. // btn60
  3585. //
  3586. this.btn60.Location = new System.Drawing.Point(476, 201);
  3587. this.btn60.Name = "btn60";
  3588. this.btn60.Size = new System.Drawing.Size(81, 38);
  3589. this.btn60.TabIndex = 76;
  3590. this.btn60.Text = "60度";
  3591. this.btn60.UseVisualStyleBackColor = true;
  3592. this.btn60.Click += new System.EventHandler(this.btn60_Click);
  3593. //
  3594. // btn45
  3595. //
  3596. this.btn45.Location = new System.Drawing.Point(476, 148);
  3597. this.btn45.Name = "btn45";
  3598. this.btn45.Size = new System.Drawing.Size(81, 38);
  3599. this.btn45.TabIndex = 75;
  3600. this.btn45.Text = "45度";
  3601. this.btn45.UseVisualStyleBackColor = true;
  3602. this.btn45.Click += new System.EventHandler(this.btn45_Click);
  3603. //
  3604. // btn30
  3605. //
  3606. this.btn30.Location = new System.Drawing.Point(476, 96);
  3607. this.btn30.Name = "btn30";
  3608. this.btn30.Size = new System.Drawing.Size(81, 38);
  3609. this.btn30.TabIndex = 74;
  3610. this.btn30.Text = "30度";
  3611. this.btn30.UseVisualStyleBackColor = true;
  3612. this.btn30.Click += new System.EventHandler(this.btn30_Click);
  3613. //
  3614. // btnrect
  3615. //
  3616. this.btnrect.Location = new System.Drawing.Point(32, 435);
  3617. this.btnrect.Name = "btnrect";
  3618. this.btnrect.Size = new System.Drawing.Size(127, 38);
  3619. this.btnrect.TabIndex = 73;
  3620. this.btnrect.Text = "计算";
  3621. this.btnrect.UseVisualStyleBackColor = true;
  3622. this.btnrect.Click += new System.EventHandler(this.btnrect_Click);
  3623. //
  3624. // txtdistance
  3625. //
  3626. this.txtdistance.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3627. this.txtdistance.Location = new System.Drawing.Point(307, 367);
  3628. this.txtdistance.Name = "txtdistance";
  3629. this.txtdistance.Size = new System.Drawing.Size(100, 28);
  3630. this.txtdistance.TabIndex = 72;
  3631. this.txtdistance.Text = "30";
  3632. this.txtdistance.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3633. //
  3634. // txtarray
  3635. //
  3636. this.txtarray.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3637. this.txtarray.Location = new System.Drawing.Point(307, 316);
  3638. this.txtarray.Name = "txtarray";
  3639. this.txtarray.Size = new System.Drawing.Size(100, 28);
  3640. this.txtarray.TabIndex = 71;
  3641. this.txtarray.Text = "4";
  3642. this.txtarray.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3643. //
  3644. // txty
  3645. //
  3646. this.txty.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3647. this.txty.Location = new System.Drawing.Point(307, 262);
  3648. this.txty.Name = "txty";
  3649. this.txty.Size = new System.Drawing.Size(100, 28);
  3650. this.txty.TabIndex = 70;
  3651. this.txty.Text = "65";
  3652. this.txty.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3653. //
  3654. // txtx
  3655. //
  3656. this.txtx.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3657. this.txtx.Location = new System.Drawing.Point(307, 211);
  3658. this.txtx.Name = "txtx";
  3659. this.txtx.Size = new System.Drawing.Size(100, 28);
  3660. this.txtx.TabIndex = 69;
  3661. this.txtx.Text = "65";
  3662. this.txtx.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3663. //
  3664. // txtsample1y
  3665. //
  3666. this.txtsample1y.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3667. this.txtsample1y.Location = new System.Drawing.Point(307, 154);
  3668. this.txtsample1y.Name = "txtsample1y";
  3669. this.txtsample1y.Size = new System.Drawing.Size(100, 28);
  3670. this.txtsample1y.TabIndex = 68;
  3671. this.txtsample1y.Text = "130";
  3672. this.txtsample1y.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3673. //
  3674. // txtsample1x
  3675. //
  3676. this.txtsample1x.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3677. this.txtsample1x.Location = new System.Drawing.Point(307, 103);
  3678. this.txtsample1x.Name = "txtsample1x";
  3679. this.txtsample1x.Size = new System.Drawing.Size(100, 28);
  3680. this.txtsample1x.TabIndex = 67;
  3681. this.txtsample1x.Text = "0";
  3682. this.txtsample1x.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3683. //
  3684. // label76
  3685. //
  3686. this.label76.AutoSize = true;
  3687. this.label76.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3688. this.label76.Location = new System.Drawing.Point(46, 152);
  3689. this.label76.Name = "label76";
  3690. this.label76.Size = new System.Drawing.Size(146, 27);
  3691. this.label76.TabIndex = 65;
  3692. this.label76.Text = "样品1-Y轴坐标";
  3693. //
  3694. // label78
  3695. //
  3696. this.label78.AutoSize = true;
  3697. this.label78.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3698. this.label78.Location = new System.Drawing.Point(46, 101);
  3699. this.label78.Name = "label78";
  3700. this.label78.Size = new System.Drawing.Size(147, 27);
  3701. this.label78.TabIndex = 63;
  3702. this.label78.Text = "样品1-X轴坐标";
  3703. //
  3704. // label74
  3705. //
  3706. this.label74.AutoSize = true;
  3707. this.label74.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3708. this.label74.Location = new System.Drawing.Point(47, 367);
  3709. this.label74.Name = "label74";
  3710. this.label74.Size = new System.Drawing.Size(112, 27);
  3711. this.label74.TabIndex = 60;
  3712. this.label74.Text = "样品间距离";
  3713. //
  3714. // label72
  3715. //
  3716. this.label72.AutoSize = true;
  3717. this.label72.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3718. this.label72.Location = new System.Drawing.Point(47, 314);
  3719. this.label72.Name = "label72";
  3720. this.label72.Size = new System.Drawing.Size(152, 27);
  3721. this.label72.TabIndex = 58;
  3722. this.label72.Text = "默认样品排列数";
  3723. //
  3724. // label70
  3725. //
  3726. this.label70.AutoSize = true;
  3727. this.label70.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3728. this.label70.Location = new System.Drawing.Point(47, 260);
  3729. this.label70.Name = "label70";
  3730. this.label70.Size = new System.Drawing.Size(145, 27);
  3731. this.label70.TabIndex = 56;
  3732. this.label70.Text = "中心点Y轴坐标";
  3733. //
  3734. // label68
  3735. //
  3736. this.label68.AutoSize = true;
  3737. this.label68.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3738. this.label68.Location = new System.Drawing.Point(47, 209);
  3739. this.label68.Name = "label68";
  3740. this.label68.Size = new System.Drawing.Size(146, 27);
  3741. this.label68.TabIndex = 54;
  3742. this.label68.Text = "中心点X轴坐标";
  3743. //
  3744. // chart1
  3745. //
  3746. chartArea1.AxisX.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
  3747. chartArea1.AxisX.MajorGrid.Enabled = false;
  3748. chartArea1.AxisX.Maximum = 130D;
  3749. chartArea1.AxisX.Minimum = 0D;
  3750. chartArea1.AxisY.MajorGrid.Enabled = false;
  3751. chartArea1.AxisY.Maximum = 130D;
  3752. chartArea1.AxisY.Minimum = 0D;
  3753. chartArea1.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
  3754. chartArea1.Name = "ChartArea1";
  3755. chartArea1.Position.Auto = false;
  3756. chartArea1.Position.Height = 94F;
  3757. chartArea1.Position.Width = 94F;
  3758. this.chart1.ChartAreas.Add(chartArea1);
  3759. legend1.Enabled = false;
  3760. legend1.Name = "Legend1";
  3761. this.chart1.Legends.Add(legend1);
  3762. this.chart1.Location = new System.Drawing.Point(667, 6);
  3763. this.chart1.Name = "chart1";
  3764. series1.ChartArea = "ChartArea1";
  3765. series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
  3766. series1.IsValueShownAsLabel = true;
  3767. series1.Legend = "Legend1";
  3768. series1.MarkerBorderColor = System.Drawing.Color.Red;
  3769. series1.MarkerColor = System.Drawing.Color.White;
  3770. series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
  3771. series1.Name = "Series1";
  3772. series2.ChartArea = "ChartArea1";
  3773. series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
  3774. series2.Legend = "Legend1";
  3775. series2.MarkerBorderColor = System.Drawing.Color.Black;
  3776. series2.MarkerColor = System.Drawing.Color.Black;
  3777. series2.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Square;
  3778. series2.Name = "Series2";
  3779. dataPoint1.MarkerBorderWidth = 3;
  3780. dataPoint1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Star4;
  3781. series2.Points.Add(dataPoint1);
  3782. this.chart1.Series.Add(series1);
  3783. this.chart1.Series.Add(series2);
  3784. this.chart1.Size = new System.Drawing.Size(590, 557);
  3785. this.chart1.TabIndex = 2;
  3786. this.chart1.Text = "chart1";
  3787. //
  3788. // lblPs1
  3789. //
  3790. this.lblPs1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3791. this.lblPs1.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3792. this.lblPs1.ForeColor = System.Drawing.Color.Blue;
  3793. this.lblPs1.Location = new System.Drawing.Point(229, 22);
  3794. this.lblPs1.Name = "lblPs1";
  3795. this.lblPs1.Size = new System.Drawing.Size(107, 38);
  3796. this.lblPs1.TabIndex = 0;
  3797. this.lblPs1.Text = "0,0";
  3798. this.lblPs1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3799. //
  3800. // btnPsFile
  3801. //
  3802. this.btnPsFile.Location = new System.Drawing.Point(32, 22);
  3803. this.btnPsFile.Name = "btnPsFile";
  3804. this.btnPsFile.Size = new System.Drawing.Size(127, 38);
  3805. this.btnPsFile.TabIndex = 1;
  3806. this.btnPsFile.Text = "打开位置文件";
  3807. this.btnPsFile.UseVisualStyleBackColor = true;
  3808. this.btnPsFile.Click += new System.EventHandler(this.btnPsFile_Click);
  3809. //
  3810. // tabPage5
  3811. //
  3812. this.tabPage5.Controls.Add(this.textBox4);
  3813. this.tabPage5.Controls.Add(this.textBox3);
  3814. this.tabPage5.Controls.Add(this.button15);
  3815. this.tabPage5.Controls.Add(this.label93);
  3816. this.tabPage5.Controls.Add(this.txtFocus);
  3817. this.tabPage5.Controls.Add(this.button11);
  3818. this.tabPage5.Controls.Add(this.button10);
  3819. this.tabPage5.Controls.Add(this.label91);
  3820. this.tabPage5.Controls.Add(this.txtTy);
  3821. this.tabPage5.Controls.Add(this.label92);
  3822. this.tabPage5.Controls.Add(this.txtTx);
  3823. this.tabPage5.Controls.Add(this.label90);
  3824. this.tabPage5.Controls.Add(this.button7);
  3825. this.tabPage5.Controls.Add(this.button8);
  3826. this.tabPage5.Controls.Add(this.button9);
  3827. this.tabPage5.Controls.Add(this.label89);
  3828. this.tabPage5.Controls.Add(this.txtelyy);
  3829. this.tabPage5.Controls.Add(this.label88);
  3830. this.tabPage5.Controls.Add(this.txtelyx);
  3831. this.tabPage5.Controls.Add(this.label87);
  3832. this.tabPage5.Controls.Add(this.label86);
  3833. this.tabPage5.Controls.Add(this.btnDeltaR);
  3834. this.tabPage5.Controls.Add(this.txtDeltaR);
  3835. this.tabPage5.Controls.Add(this.label85);
  3836. this.tabPage5.Location = new System.Drawing.Point(4, 25);
  3837. this.tabPage5.Name = "tabPage5";
  3838. this.tabPage5.Size = new System.Drawing.Size(1361, 571);
  3839. this.tabPage5.TabIndex = 4;
  3840. this.tabPage5.Text = "问题测试";
  3841. this.tabPage5.UseVisualStyleBackColor = true;
  3842. //
  3843. // label93
  3844. //
  3845. this.label93.AutoSize = true;
  3846. this.label93.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3847. this.label93.Location = new System.Drawing.Point(79, 266);
  3848. this.label93.Name = "label93";
  3849. this.label93.Size = new System.Drawing.Size(117, 27);
  3850. this.label93.TabIndex = 114;
  3851. this.label93.Text = "对焦文件夹:";
  3852. //
  3853. // txtFocus
  3854. //
  3855. this.txtFocus.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  3856. this.txtFocus.Location = new System.Drawing.Point(202, 266);
  3857. this.txtFocus.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  3858. this.txtFocus.Name = "txtFocus";
  3859. this.txtFocus.Size = new System.Drawing.Size(433, 30);
  3860. this.txtFocus.TabIndex = 113;
  3861. this.txtFocus.Text = "D:\\Test\\";
  3862. this.txtFocus.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3863. //
  3864. // button11
  3865. //
  3866. this.button11.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3867. this.button11.Location = new System.Drawing.Point(947, 217);
  3868. this.button11.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  3869. this.button11.Name = "button11";
  3870. this.button11.Size = new System.Drawing.Size(144, 41);
  3871. this.button11.TabIndex = 112;
  3872. this.button11.Text = "对焦";
  3873. this.button11.UseVisualStyleBackColor = true;
  3874. this.button11.Click += new System.EventHandler(this.button11_Click);
  3875. //
  3876. // button10
  3877. //
  3878. this.button10.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3879. this.button10.Location = new System.Drawing.Point(772, 217);
  3880. this.button10.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  3881. this.button10.Name = "button10";
  3882. this.button10.Size = new System.Drawing.Size(144, 41);
  3883. this.button10.TabIndex = 111;
  3884. this.button10.Text = "移动";
  3885. this.button10.UseVisualStyleBackColor = true;
  3886. this.button10.Click += new System.EventHandler(this.button10_Click);
  3887. //
  3888. // label91
  3889. //
  3890. this.label91.AutoSize = true;
  3891. this.label91.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3892. this.label91.Location = new System.Drawing.Point(591, 223);
  3893. this.label91.Name = "label91";
  3894. this.label91.Size = new System.Drawing.Size(29, 27);
  3895. this.label91.TabIndex = 110;
  3896. this.label91.Text = "Y:";
  3897. //
  3898. // txtTy
  3899. //
  3900. this.txtTy.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  3901. this.txtTy.Location = new System.Drawing.Point(627, 223);
  3902. this.txtTy.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  3903. this.txtTy.Name = "txtTy";
  3904. this.txtTy.Size = new System.Drawing.Size(100, 30);
  3905. this.txtTy.TabIndex = 109;
  3906. this.txtTy.Text = "0";
  3907. this.txtTy.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3908. //
  3909. // label92
  3910. //
  3911. this.label92.AutoSize = true;
  3912. this.label92.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3913. this.label92.Location = new System.Drawing.Point(415, 223);
  3914. this.label92.Name = "label92";
  3915. this.label92.Size = new System.Drawing.Size(30, 27);
  3916. this.label92.TabIndex = 108;
  3917. this.label92.Text = "X:";
  3918. //
  3919. // txtTx
  3920. //
  3921. this.txtTx.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  3922. this.txtTx.Location = new System.Drawing.Point(451, 223);
  3923. this.txtTx.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  3924. this.txtTx.Name = "txtTx";
  3925. this.txtTx.Size = new System.Drawing.Size(100, 30);
  3926. this.txtTx.TabIndex = 107;
  3927. this.txtTx.Text = "0";
  3928. this.txtTx.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3929. //
  3930. // label90
  3931. //
  3932. this.label90.AutoSize = true;
  3933. this.label90.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3934. this.label90.Location = new System.Drawing.Point(18, 223);
  3935. this.label90.Name = "label90";
  3936. this.label90.Size = new System.Drawing.Size(373, 27);
  3937. this.label90.TabIndex = 106;
  3938. this.label90.Text = "3、移动光束-图像返回梯形左上角点位置";
  3939. //
  3940. // button7
  3941. //
  3942. this.button7.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3943. this.button7.Location = new System.Drawing.Point(356, 144);
  3944. this.button7.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  3945. this.button7.Name = "button7";
  3946. this.button7.Size = new System.Drawing.Size(144, 41);
  3947. this.button7.TabIndex = 105;
  3948. this.button7.Text = "执行ELY文件";
  3949. this.button7.UseVisualStyleBackColor = true;
  3950. this.button7.Click += new System.EventHandler(this.btnExeEly3_Click);
  3951. //
  3952. // button8
  3953. //
  3954. this.button8.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3955. this.button8.Location = new System.Drawing.Point(205, 144);
  3956. this.button8.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  3957. this.button8.Name = "button8";
  3958. this.button8.Size = new System.Drawing.Size(144, 41);
  3959. this.button8.TabIndex = 104;
  3960. this.button8.Text = "确认ELY文件";
  3961. this.button8.UseVisualStyleBackColor = true;
  3962. this.button8.Click += new System.EventHandler(this.btnExeEly2_Click);
  3963. //
  3964. // button9
  3965. //
  3966. this.button9.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3967. this.button9.Location = new System.Drawing.Point(55, 144);
  3968. this.button9.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  3969. this.button9.Name = "button9";
  3970. this.button9.Size = new System.Drawing.Size(144, 41);
  3971. this.button9.TabIndex = 103;
  3972. this.button9.Text = "选择ELY文件";
  3973. this.button9.UseVisualStyleBackColor = true;
  3974. this.button9.Click += new System.EventHandler(this.button9_Click);
  3975. //
  3976. // label89
  3977. //
  3978. this.label89.AutoSize = true;
  3979. this.label89.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3980. this.label89.Location = new System.Drawing.Point(575, 88);
  3981. this.label89.Name = "label89";
  3982. this.label89.Size = new System.Drawing.Size(29, 27);
  3983. this.label89.TabIndex = 102;
  3984. this.label89.Text = "Y:";
  3985. //
  3986. // txtelyy
  3987. //
  3988. this.txtelyy.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  3989. this.txtelyy.Location = new System.Drawing.Point(611, 88);
  3990. this.txtelyy.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  3991. this.txtelyy.Name = "txtelyy";
  3992. this.txtelyy.Size = new System.Drawing.Size(100, 30);
  3993. this.txtelyy.TabIndex = 101;
  3994. this.txtelyy.Text = "0";
  3995. this.txtelyy.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  3996. //
  3997. // label88
  3998. //
  3999. this.label88.AutoSize = true;
  4000. this.label88.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4001. this.label88.Location = new System.Drawing.Point(399, 88);
  4002. this.label88.Name = "label88";
  4003. this.label88.Size = new System.Drawing.Size(30, 27);
  4004. this.label88.TabIndex = 100;
  4005. this.label88.Text = "X:";
  4006. //
  4007. // txtelyx
  4008. //
  4009. this.txtelyx.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  4010. this.txtelyx.Location = new System.Drawing.Point(435, 88);
  4011. this.txtelyx.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  4012. this.txtelyx.Name = "txtelyx";
  4013. this.txtelyx.Size = new System.Drawing.Size(100, 30);
  4014. this.txtelyx.TabIndex = 99;
  4015. this.txtelyx.Text = "0";
  4016. this.txtelyx.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4017. //
  4018. // label87
  4019. //
  4020. this.label87.AutoSize = true;
  4021. this.label87.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4022. this.label87.Location = new System.Drawing.Point(18, 88);
  4023. this.label87.Name = "label87";
  4024. this.label87.Size = new System.Drawing.Size(355, 27);
  4025. this.label87.TabIndex = 98;
  4026. this.label87.Text = "2、修改选择ELY文件--图像返回坐标值";
  4027. //
  4028. // label86
  4029. //
  4030. this.label86.AutoSize = true;
  4031. this.label86.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4032. this.label86.Location = new System.Drawing.Point(18, 32);
  4033. this.label86.Name = "label86";
  4034. this.label86.Size = new System.Drawing.Size(504, 27);
  4035. this.label86.TabIndex = 97;
  4036. this.label86.Text = "1、测试拉直操作图像接口返回角度进行旋转拉直测试:";
  4037. //
  4038. // btnDeltaR
  4039. //
  4040. this.btnDeltaR.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4041. this.btnDeltaR.Location = new System.Drawing.Point(837, 29);
  4042. this.btnDeltaR.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  4043. this.btnDeltaR.Name = "btnDeltaR";
  4044. this.btnDeltaR.Size = new System.Drawing.Size(79, 34);
  4045. this.btnDeltaR.TabIndex = 96;
  4046. this.btnDeltaR.Text = "Set";
  4047. this.btnDeltaR.UseVisualStyleBackColor = true;
  4048. this.btnDeltaR.Click += new System.EventHandler(this.btnDeltaR_Click);
  4049. //
  4050. // txtDeltaR
  4051. //
  4052. this.txtDeltaR.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  4053. this.txtDeltaR.Location = new System.Drawing.Point(727, 30);
  4054. this.txtDeltaR.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  4055. this.txtDeltaR.Name = "txtDeltaR";
  4056. this.txtDeltaR.Size = new System.Drawing.Size(100, 30);
  4057. this.txtDeltaR.TabIndex = 95;
  4058. this.txtDeltaR.Text = "0";
  4059. this.txtDeltaR.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4060. //
  4061. // label85
  4062. //
  4063. this.label85.AutoSize = true;
  4064. this.label85.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4065. this.label85.Location = new System.Drawing.Point(541, 32);
  4066. this.label85.Name = "label85";
  4067. this.label85.Size = new System.Drawing.Size(186, 27);
  4068. this.label85.TabIndex = 94;
  4069. this.label85.Text = "样品台 Delta R轴:";
  4070. //
  4071. // tabPage6
  4072. //
  4073. this.tabPage6.Controls.Add(this.label101);
  4074. this.tabPage6.Controls.Add(this.lblEDSH);
  4075. this.tabPage6.Controls.Add(this.label99);
  4076. this.tabPage6.Controls.Add(this.lblEDSW);
  4077. this.tabPage6.Controls.Add(this.label97);
  4078. this.tabPage6.Controls.Add(this.lblEDSY);
  4079. this.tabPage6.Controls.Add(this.label96);
  4080. this.tabPage6.Controls.Add(this.lblEDSX);
  4081. this.tabPage6.Controls.Add(this.button14);
  4082. this.tabPage6.Controls.Add(this.ltLines);
  4083. this.tabPage6.Controls.Add(this.button13);
  4084. this.tabPage6.Controls.Add(this.label94);
  4085. this.tabPage6.Controls.Add(this.txtPicPath);
  4086. this.tabPage6.Controls.Add(this.ltPoints);
  4087. this.tabPage6.Controls.Add(this.button12);
  4088. this.tabPage6.Location = new System.Drawing.Point(4, 25);
  4089. this.tabPage6.Name = "tabPage6";
  4090. this.tabPage6.Size = new System.Drawing.Size(1361, 571);
  4091. this.tabPage6.TabIndex = 5;
  4092. this.tabPage6.Text = "POST_EDS";
  4093. this.tabPage6.UseVisualStyleBackColor = true;
  4094. //
  4095. // label101
  4096. //
  4097. this.label101.AutoSize = true;
  4098. this.label101.Location = new System.Drawing.Point(558, 276);
  4099. this.label101.Name = "label101";
  4100. this.label101.Size = new System.Drawing.Size(23, 15);
  4101. this.label101.TabIndex = 66;
  4102. this.label101.Text = "H:";
  4103. //
  4104. // lblEDSH
  4105. //
  4106. this.lblEDSH.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4107. this.lblEDSH.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4108. this.lblEDSH.Location = new System.Drawing.Point(605, 267);
  4109. this.lblEDSH.Name = "lblEDSH";
  4110. this.lblEDSH.Size = new System.Drawing.Size(112, 27);
  4111. this.lblEDSH.TabIndex = 65;
  4112. //
  4113. // label99
  4114. //
  4115. this.label99.AutoSize = true;
  4116. this.label99.Location = new System.Drawing.Point(558, 233);
  4117. this.label99.Name = "label99";
  4118. this.label99.Size = new System.Drawing.Size(23, 15);
  4119. this.label99.TabIndex = 64;
  4120. this.label99.Text = "W:";
  4121. //
  4122. // lblEDSW
  4123. //
  4124. this.lblEDSW.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4125. this.lblEDSW.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4126. this.lblEDSW.Location = new System.Drawing.Point(605, 224);
  4127. this.lblEDSW.Name = "lblEDSW";
  4128. this.lblEDSW.Size = new System.Drawing.Size(112, 27);
  4129. this.lblEDSW.TabIndex = 63;
  4130. //
  4131. // label97
  4132. //
  4133. this.label97.AutoSize = true;
  4134. this.label97.Location = new System.Drawing.Point(558, 190);
  4135. this.label97.Name = "label97";
  4136. this.label97.Size = new System.Drawing.Size(23, 15);
  4137. this.label97.TabIndex = 62;
  4138. this.label97.Text = "Y:";
  4139. //
  4140. // lblEDSY
  4141. //
  4142. this.lblEDSY.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4143. this.lblEDSY.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4144. this.lblEDSY.Location = new System.Drawing.Point(605, 181);
  4145. this.lblEDSY.Name = "lblEDSY";
  4146. this.lblEDSY.Size = new System.Drawing.Size(112, 27);
  4147. this.lblEDSY.TabIndex = 61;
  4148. //
  4149. // label96
  4150. //
  4151. this.label96.AutoSize = true;
  4152. this.label96.Location = new System.Drawing.Point(558, 147);
  4153. this.label96.Name = "label96";
  4154. this.label96.Size = new System.Drawing.Size(23, 15);
  4155. this.label96.TabIndex = 60;
  4156. this.label96.Text = "X:";
  4157. //
  4158. // lblEDSX
  4159. //
  4160. this.lblEDSX.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4161. this.lblEDSX.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4162. this.lblEDSX.Location = new System.Drawing.Point(605, 138);
  4163. this.lblEDSX.Name = "lblEDSX";
  4164. this.lblEDSX.Size = new System.Drawing.Size(112, 27);
  4165. this.lblEDSX.TabIndex = 59;
  4166. //
  4167. // button14
  4168. //
  4169. this.button14.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4170. this.button14.Location = new System.Drawing.Point(549, 62);
  4171. this.button14.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  4172. this.button14.Name = "button14";
  4173. this.button14.Size = new System.Drawing.Size(223, 50);
  4174. this.button14.TabIndex = 58;
  4175. this.button14.Text = "获取EDS面数据";
  4176. this.button14.UseVisualStyleBackColor = true;
  4177. this.button14.Click += new System.EventHandler(this.button14_Click);
  4178. //
  4179. // ltLines
  4180. //
  4181. this.ltLines.FormattingEnabled = true;
  4182. this.ltLines.ItemHeight = 15;
  4183. this.ltLines.Location = new System.Drawing.Point(285, 147);
  4184. this.ltLines.Name = "ltLines";
  4185. this.ltLines.Size = new System.Drawing.Size(223, 379);
  4186. this.ltLines.TabIndex = 57;
  4187. //
  4188. // button13
  4189. //
  4190. this.button13.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4191. this.button13.Location = new System.Drawing.Point(285, 62);
  4192. this.button13.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  4193. this.button13.Name = "button13";
  4194. this.button13.Size = new System.Drawing.Size(223, 50);
  4195. this.button13.TabIndex = 56;
  4196. this.button13.Text = "获取EDS线数据";
  4197. this.button13.UseVisualStyleBackColor = true;
  4198. this.button13.Click += new System.EventHandler(this.button13_Click);
  4199. //
  4200. // label94
  4201. //
  4202. this.label94.AutoSize = true;
  4203. this.label94.Location = new System.Drawing.Point(28, 26);
  4204. this.label94.Name = "label94";
  4205. this.label94.Size = new System.Drawing.Size(82, 15);
  4206. this.label94.TabIndex = 55;
  4207. this.label94.Text = "图片路径:";
  4208. //
  4209. // txtPicPath
  4210. //
  4211. this.txtPicPath.Location = new System.Drawing.Point(116, 17);
  4212. this.txtPicPath.Name = "txtPicPath";
  4213. this.txtPicPath.Size = new System.Drawing.Size(1196, 25);
  4214. this.txtPicPath.TabIndex = 54;
  4215. this.txtPicPath.Text = "/home/tcz/FIB_Flask/img/1-49.tif";
  4216. //
  4217. // ltPoints
  4218. //
  4219. this.ltPoints.FormattingEnabled = true;
  4220. this.ltPoints.ItemHeight = 15;
  4221. this.ltPoints.Location = new System.Drawing.Point(37, 147);
  4222. this.ltPoints.Name = "ltPoints";
  4223. this.ltPoints.Size = new System.Drawing.Size(223, 379);
  4224. this.ltPoints.TabIndex = 53;
  4225. //
  4226. // button12
  4227. //
  4228. this.button12.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4229. this.button12.Location = new System.Drawing.Point(37, 62);
  4230. this.button12.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  4231. this.button12.Name = "button12";
  4232. this.button12.Size = new System.Drawing.Size(223, 50);
  4233. this.button12.TabIndex = 52;
  4234. this.button12.Text = "获取EDS点数据";
  4235. this.button12.UseVisualStyleBackColor = true;
  4236. this.button12.Click += new System.EventHandler(this.button12_Click);
  4237. //
  4238. // button15
  4239. //
  4240. this.button15.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4241. this.button15.Location = new System.Drawing.Point(772, 315);
  4242. this.button15.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  4243. this.button15.Name = "button15";
  4244. this.button15.Size = new System.Drawing.Size(144, 41);
  4245. this.button15.TabIndex = 115;
  4246. this.button15.Text = "矩形框";
  4247. this.button15.UseVisualStyleBackColor = true;
  4248. this.button15.Click += new System.EventHandler(this.button15_Click);
  4249. //
  4250. // textBox3
  4251. //
  4252. this.textBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  4253. this.textBox3.Location = new System.Drawing.Point(947, 319);
  4254. this.textBox3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  4255. this.textBox3.Name = "textBox3";
  4256. this.textBox3.Size = new System.Drawing.Size(100, 30);
  4257. this.textBox3.TabIndex = 116;
  4258. this.textBox3.Text = "500";
  4259. this.textBox3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4260. //
  4261. // textBox4
  4262. //
  4263. this.textBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  4264. this.textBox4.Location = new System.Drawing.Point(1102, 319);
  4265. this.textBox4.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  4266. this.textBox4.Name = "textBox4";
  4267. this.textBox4.Size = new System.Drawing.Size(100, 30);
  4268. this.textBox4.TabIndex = 117;
  4269. this.textBox4.Text = "200";
  4270. this.textBox4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4271. //
  4272. // FormUnitControl
  4273. //
  4274. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  4275. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  4276. this.ClientSize = new System.Drawing.Size(1369, 600);
  4277. this.Controls.Add(this.tabControl1);
  4278. this.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  4279. this.Name = "FormUnitControl";
  4280. this.Text = "UnitControl";
  4281. this.Load += new System.EventHandler(this.FormUnitControl_Load);
  4282. this.panelControl.ResumeLayout(false);
  4283. this.panelSEM.ResumeLayout(false);
  4284. this.panelSEM.PerformLayout();
  4285. this.panelFIB.ResumeLayout(false);
  4286. this.panelFIB.PerformLayout();
  4287. this.panelStage.ResumeLayout(false);
  4288. this.panelStage.PerformLayout();
  4289. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  4290. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  4291. this.tabControl1.ResumeLayout(false);
  4292. this.tabPage1.ResumeLayout(false);
  4293. this.tabPage2.ResumeLayout(false);
  4294. this.tabPage2.PerformLayout();
  4295. this.tabPage3.ResumeLayout(false);
  4296. this.tabPage3.PerformLayout();
  4297. this.tabPage4.ResumeLayout(false);
  4298. this.tabPage4.PerformLayout();
  4299. ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
  4300. this.tabPage5.ResumeLayout(false);
  4301. this.tabPage5.PerformLayout();
  4302. this.tabPage6.ResumeLayout(false);
  4303. this.tabPage6.PerformLayout();
  4304. this.ResumeLayout(false);
  4305. }
  4306. #endregion
  4307. private System.Windows.Forms.Button btnGrabImage;
  4308. private System.Windows.Forms.Button btnenlargeGet;
  4309. private System.Windows.Forms.Button btnenlargeSet;
  4310. private System.Windows.Forms.TextBox txtenlargeSet;
  4311. private System.Windows.Forms.Label label1;
  4312. private System.Windows.Forms.Button btnWDSet;
  4313. private System.Windows.Forms.TextBox txtWDSet;
  4314. private System.Windows.Forms.Label label3;
  4315. private System.Windows.Forms.Button btnWDGet;
  4316. private System.Windows.Forms.Button btnContrastSet;
  4317. private System.Windows.Forms.TextBox txtContrastSet;
  4318. private System.Windows.Forms.Label label4;
  4319. private System.Windows.Forms.Button btnContrastGet;
  4320. private System.Windows.Forms.Button btnBrightnessSet;
  4321. private System.Windows.Forms.TextBox txtBrightnessSet;
  4322. private System.Windows.Forms.Label label6;
  4323. private System.Windows.Forms.Button btnBrightnessGet;
  4324. private System.Windows.Forms.Button btnAstigmatismYSet;
  4325. private System.Windows.Forms.TextBox txtAstigmatismYSet;
  4326. private System.Windows.Forms.Label label5;
  4327. private System.Windows.Forms.Button btnAstigmatismYGet;
  4328. private System.Windows.Forms.Button btnAstigmatismXSet;
  4329. private System.Windows.Forms.TextBox txtAstigmatismXSet;
  4330. private System.Windows.Forms.Label label8;
  4331. private System.Windows.Forms.Button btnAstigmatismXGet;
  4332. private System.Windows.Forms.Button btnTiltAngleSet;
  4333. private System.Windows.Forms.TextBox txtTiltAngleSet;
  4334. private System.Windows.Forms.Label label7;
  4335. private System.Windows.Forms.Button btnTiltAngleGet;
  4336. private System.Windows.Forms.Label label9;
  4337. private System.Windows.Forms.Button btnPixelSizeGet;
  4338. private System.Windows.Forms.Button btnScanRotationSet;
  4339. private System.Windows.Forms.TextBox txtScanRotationSet;
  4340. private System.Windows.Forms.Label label11;
  4341. private System.Windows.Forms.Button btnScanRotationGet;
  4342. private System.Windows.Forms.Button btnCloseVoltage;
  4343. private System.Windows.Forms.Button btnOpenVoltage;
  4344. private System.Windows.Forms.Button btnStageSetM;
  4345. private System.Windows.Forms.TextBox txtStageM;
  4346. private System.Windows.Forms.Label lblStageM;
  4347. private System.Windows.Forms.Label label10;
  4348. private System.Windows.Forms.Button btnStageGetM;
  4349. private System.Windows.Forms.Button btnStageSetR;
  4350. private System.Windows.Forms.TextBox txtStageR;
  4351. private System.Windows.Forms.Label lblStageR;
  4352. private System.Windows.Forms.Label label13;
  4353. private System.Windows.Forms.Button btnStageGetR;
  4354. private System.Windows.Forms.Button btnStageSetT;
  4355. private System.Windows.Forms.TextBox txtStageT;
  4356. private System.Windows.Forms.Label lblStageT;
  4357. private System.Windows.Forms.Label label15;
  4358. private System.Windows.Forms.Button btnStageGetT;
  4359. private System.Windows.Forms.Button btnStageSetZ;
  4360. private System.Windows.Forms.TextBox txtStageZ;
  4361. private System.Windows.Forms.Label lblStageZ;
  4362. private System.Windows.Forms.Label label17;
  4363. private System.Windows.Forms.Button btnStageGetZ;
  4364. private System.Windows.Forms.Button btnStageSetY;
  4365. private System.Windows.Forms.TextBox txtStageY;
  4366. private System.Windows.Forms.Label lblStageY;
  4367. private System.Windows.Forms.Label label19;
  4368. private System.Windows.Forms.Button btnStageGetY;
  4369. private System.Windows.Forms.Button btnStageSetX;
  4370. private System.Windows.Forms.TextBox txtStageX;
  4371. private System.Windows.Forms.Label lblStageX;
  4372. private System.Windows.Forms.Label label21;
  4373. private System.Windows.Forms.Button btnStageGetX;
  4374. private System.Windows.Forms.Button btnGetStagePosition;
  4375. private System.Windows.Forms.Button btnReadXml;
  4376. private System.Windows.Forms.Button btnWriteXml;
  4377. private System.Windows.Forms.Panel panelControl;
  4378. private System.Windows.Forms.Button btnSEM;
  4379. private System.Windows.Forms.Button btnAutoFocus1;
  4380. private System.Windows.Forms.Button btnAutoFocus2;
  4381. private System.Windows.Forms.Button btnAutoBrightness;
  4382. private System.Windows.Forms.Button btnAutoContrast;
  4383. private System.Windows.Forms.Button btnAutoBCCancle;
  4384. private System.Windows.Forms.Button btnAutoBC;
  4385. private System.Windows.Forms.Button btnAutoStig;
  4386. private System.Windows.Forms.Panel panelSEM;
  4387. private System.Windows.Forms.Panel panelFIB;
  4388. private System.Windows.Forms.Button btnMILL;
  4389. private System.Windows.Forms.Button btnFIB;
  4390. private System.Windows.Forms.Label lblPixelSizeGet;
  4391. private System.Windows.Forms.Button btnTiltCorrYSet;
  4392. private System.Windows.Forms.TextBox txtTiltCorrY;
  4393. private System.Windows.Forms.Label label2;
  4394. private System.Windows.Forms.Button btnTiltCorrYGet;
  4395. private System.Windows.Forms.Button btnTiltCorrXSet;
  4396. private System.Windows.Forms.TextBox txtTiltCorrX;
  4397. private System.Windows.Forms.Button btnTiltCorrXGet;
  4398. private System.Windows.Forms.Label label12;
  4399. private System.Windows.Forms.Button btnTiltCorr;
  4400. private System.Windows.Forms.Button btnFIBBeamShiftYSet;
  4401. private System.Windows.Forms.TextBox txtFIBBeamShiftY;
  4402. private System.Windows.Forms.Label label18;
  4403. private System.Windows.Forms.Button btnFIBBeamShiftYGet;
  4404. private System.Windows.Forms.Button btnFIBBeamShiftXSet;
  4405. private System.Windows.Forms.TextBox txtFIBBeamShiftX;
  4406. private System.Windows.Forms.Button btnFIBBeamShiftXGet;
  4407. private System.Windows.Forms.Label label20;
  4408. private System.Windows.Forms.Button btnMCF;
  4409. private System.Windows.Forms.Label label14;
  4410. private System.Windows.Forms.Button btnFIBMagSet;
  4411. private System.Windows.Forms.Button btnFIBMagGet;
  4412. private System.Windows.Forms.TextBox txtFIBMag;
  4413. private System.Windows.Forms.Button btnFIBWDSet;
  4414. private System.Windows.Forms.Button btnFIBWDGet;
  4415. private System.Windows.Forms.Label label16;
  4416. private System.Windows.Forms.TextBox txtFIBWD;
  4417. private System.Windows.Forms.Button btnFIBAstigmatismYSet;
  4418. private System.Windows.Forms.TextBox txtFIBAstigmatismY;
  4419. private System.Windows.Forms.Label label22;
  4420. private System.Windows.Forms.Button btnFIBAstigmatismYGet;
  4421. private System.Windows.Forms.Button btnFIBAstigmatismXSet;
  4422. private System.Windows.Forms.TextBox txtFIBAstigmatismX;
  4423. private System.Windows.Forms.Button btnFIBAstigmatismXGet;
  4424. private System.Windows.Forms.Label label23;
  4425. private System.Windows.Forms.Panel panelStage;
  4426. private System.Windows.Forms.Label label24;
  4427. private System.Windows.Forms.Button btnMoveXY;
  4428. private System.Windows.Forms.Button btnImageStoreGet;
  4429. private System.Windows.Forms.Button btnImageStoreSet;
  4430. private System.Windows.Forms.ComboBox cmbImageStore;
  4431. private System.Windows.Forms.Label lblImageStore;
  4432. private System.Windows.Forms.Button btnAbort;
  4433. private System.Windows.Forms.PictureBox pictureBox2;
  4434. private System.Windows.Forms.PictureBox pictureBox1;
  4435. private System.Windows.Forms.Button btnFrozen;
  4436. private System.Windows.Forms.Button btnLive;
  4437. private System.Windows.Forms.Button btnExeEly;
  4438. private System.Windows.Forms.Button btnExeEly2;
  4439. private System.Windows.Forms.Button btnFIBStatus;
  4440. private System.Windows.Forms.TabControl tabControl1;
  4441. private System.Windows.Forms.TabPage tabPage1;
  4442. private System.Windows.Forms.TabPage tabPage2;
  4443. private System.Windows.Forms.Button btnPost1;
  4444. private System.Windows.Forms.Label lblstate9;
  4445. private System.Windows.Forms.Label label47;
  4446. private System.Windows.Forms.Label lblcenter2;
  4447. private System.Windows.Forms.Label label49;
  4448. private System.Windows.Forms.Label lblcenter1;
  4449. private System.Windows.Forms.Label label51;
  4450. private System.Windows.Forms.Label lblstate7;
  4451. private System.Windows.Forms.Label label53;
  4452. private System.Windows.Forms.Label lbldirection2;
  4453. private System.Windows.Forms.Label label55;
  4454. private System.Windows.Forms.Label lbldegree2;
  4455. private System.Windows.Forms.Label label57;
  4456. private System.Windows.Forms.Label lblstigpath;
  4457. private System.Windows.Forms.Label label45;
  4458. private System.Windows.Forms.Label lblfocuspath;
  4459. private System.Windows.Forms.Label label43;
  4460. private System.Windows.Forms.Label lblstate4;
  4461. private System.Windows.Forms.Label label37;
  4462. private System.Windows.Forms.Label lbltopcy;
  4463. private System.Windows.Forms.Label label39;
  4464. private System.Windows.Forms.Label lbltopcx;
  4465. private System.Windows.Forms.Label label41;
  4466. private System.Windows.Forms.Label lblstate3;
  4467. private System.Windows.Forms.Label label35;
  4468. private System.Windows.Forms.Label lblstate2;
  4469. private System.Windows.Forms.Label label27;
  4470. private System.Windows.Forms.Label lbllocationy1;
  4471. private System.Windows.Forms.Label label31;
  4472. private System.Windows.Forms.Label lbllocationx1;
  4473. private System.Windows.Forms.Label label33;
  4474. private System.Windows.Forms.Button btnPost9;
  4475. private System.Windows.Forms.Button btnPost7;
  4476. private System.Windows.Forms.Button btnPost6;
  4477. private System.Windows.Forms.Button btnPost5;
  4478. private System.Windows.Forms.Button btnPost4;
  4479. private System.Windows.Forms.Button btnPost3;
  4480. private System.Windows.Forms.Button btnPost2;
  4481. private System.Windows.Forms.Label lblstate1;
  4482. private System.Windows.Forms.Label label30;
  4483. private System.Windows.Forms.Label lbldirection1;
  4484. private System.Windows.Forms.Label label28;
  4485. private System.Windows.Forms.Label lbldegree1;
  4486. private System.Windows.Forms.Label label25;
  4487. private System.Windows.Forms.Button btnScanRotationSetLock;
  4488. private System.Windows.Forms.Button btnTiltAngleSetOff;
  4489. private System.Windows.Forms.Button btnTiltAngleSetOn;
  4490. private System.Windows.Forms.Button btnScanRotationSetOn;
  4491. private System.Windows.Forms.Button btnExeEly3;
  4492. private System.Windows.Forms.TabPage tabPage3;
  4493. private System.Windows.Forms.Button btnCreateConfig;
  4494. private System.Windows.Forms.Button btnReadConfig;
  4495. private System.Windows.Forms.TextBox txtWFIBF;
  4496. private System.Windows.Forms.TextBox txtWPTF;
  4497. private System.Windows.Forms.Label label48;
  4498. private System.Windows.Forms.Label label56;
  4499. private System.Windows.Forms.Label label59;
  4500. private System.Windows.Forms.Label label61;
  4501. private System.Windows.Forms.CheckBox chkWPT;
  4502. private System.Windows.Forms.Label label62;
  4503. private System.Windows.Forms.TextBox txtRXZ;
  4504. private System.Windows.Forms.Label label26;
  4505. private System.Windows.Forms.TextBox txtRPZD;
  4506. private System.Windows.Forms.Label label29;
  4507. private System.Windows.Forms.TextBox txtRPZF;
  4508. private System.Windows.Forms.Label label34;
  4509. private System.Windows.Forms.TextBox txtRQGD;
  4510. private System.Windows.Forms.Label label36;
  4511. private System.Windows.Forms.TextBox txtRQGF;
  4512. private System.Windows.Forms.Label label40;
  4513. private System.Windows.Forms.TextBox txtRLZ;
  4514. private System.Windows.Forms.Label label44;
  4515. private System.Windows.Forms.CheckBox chkRIsP;
  4516. private System.Windows.Forms.Label label52;
  4517. private System.Windows.Forms.TextBox txtRYP;
  4518. private System.Windows.Forms.TextBox txtRCS;
  4519. private System.Windows.Forms.TextBox txtRFIBF;
  4520. private System.Windows.Forms.TextBox txtRPTF;
  4521. private System.Windows.Forms.Label label60;
  4522. private System.Windows.Forms.Label label63;
  4523. private System.Windows.Forms.Label label64;
  4524. private System.Windows.Forms.Label label65;
  4525. private System.Windows.Forms.CheckBox chkRPT;
  4526. private System.Windows.Forms.Label label66;
  4527. private System.Windows.Forms.Label label58;
  4528. private System.Windows.Forms.Label label50;
  4529. private System.Windows.Forms.Label label54;
  4530. private System.Windows.Forms.Label label46;
  4531. private System.Windows.Forms.Label label42;
  4532. private System.Windows.Forms.Label label38;
  4533. private System.Windows.Forms.CheckBox chkWIsP;
  4534. private System.Windows.Forms.Label label32;
  4535. private System.Windows.Forms.ComboBox cbbWCS;
  4536. private System.Windows.Forms.ComboBox cbbWYP;
  4537. private System.Windows.Forms.ComboBox cbbWXZ;
  4538. private System.Windows.Forms.ComboBox cbbWPZD;
  4539. private System.Windows.Forms.ComboBox cbbWPZF;
  4540. private System.Windows.Forms.ComboBox cbbWQGD;
  4541. private System.Windows.Forms.ComboBox cbbWQGF;
  4542. private System.Windows.Forms.ComboBox cbbWLZ;
  4543. private System.Windows.Forms.TabPage tabPage4;
  4544. private System.Windows.Forms.Button btnPsFile;
  4545. private System.Windows.Forms.Label lblPs1;
  4546. private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
  4547. private System.Windows.Forms.Label label76;
  4548. private System.Windows.Forms.Label label78;
  4549. private System.Windows.Forms.Label label74;
  4550. private System.Windows.Forms.Label label72;
  4551. private System.Windows.Forms.Label label70;
  4552. private System.Windows.Forms.Label label68;
  4553. private System.Windows.Forms.TextBox txtdistance;
  4554. private System.Windows.Forms.TextBox txtarray;
  4555. private System.Windows.Forms.TextBox txty;
  4556. private System.Windows.Forms.TextBox txtx;
  4557. private System.Windows.Forms.TextBox txtsample1y;
  4558. private System.Windows.Forms.TextBox txtsample1x;
  4559. private System.Windows.Forms.Button btnrect;
  4560. private System.Windows.Forms.Button btn60;
  4561. private System.Windows.Forms.Button btn45;
  4562. private System.Windows.Forms.Button btn30;
  4563. private System.Windows.Forms.Button button1;
  4564. private System.Windows.Forms.TextBox txtVoltage;
  4565. private System.Windows.Forms.Button button2;
  4566. private System.Windows.Forms.Label label67;
  4567. private System.Windows.Forms.Button button3;
  4568. private System.Windows.Forms.Label lbllocationy2;
  4569. private System.Windows.Forms.Label label71;
  4570. private System.Windows.Forms.Label lbllocationx2;
  4571. private System.Windows.Forms.Label label75;
  4572. private System.Windows.Forms.TextBox txtaddr;
  4573. private System.Windows.Forms.TextBox txtaddr2;
  4574. private System.Windows.Forms.Button btntest;
  4575. private System.Windows.Forms.TextBox txtfirm;
  4576. private System.Windows.Forms.TextBox txtTypee;
  4577. private System.Windows.Forms.Button button4;
  4578. private System.Windows.Forms.Button btnimgv;
  4579. private System.Windows.Forms.TextBox txtstagevy;
  4580. private System.Windows.Forms.TextBox txtstagevx;
  4581. private System.Windows.Forms.TextBox txtimgy;
  4582. private System.Windows.Forms.TextBox txtimgx;
  4583. private System.Windows.Forms.Label label69;
  4584. private System.Windows.Forms.Label label73;
  4585. private System.Windows.Forms.TextBox txtps;
  4586. private System.Windows.Forms.Label label77;
  4587. private System.Windows.Forms.TextBox txtstageny;
  4588. private System.Windows.Forms.TextBox txtstagenx;
  4589. private System.Windows.Forms.Button btnPost8;
  4590. private System.Windows.Forms.Label lblstate8;
  4591. private System.Windows.Forms.Label label84;
  4592. private System.Windows.Forms.Label lblMag2;
  4593. private System.Windows.Forms.Label label80;
  4594. private System.Windows.Forms.Label lblMag1;
  4595. private System.Windows.Forms.Label label82;
  4596. private System.Windows.Forms.Label label81;
  4597. private System.Windows.Forms.Label label79;
  4598. private System.Windows.Forms.Button button5;
  4599. private System.Windows.Forms.TextBox textBox2;
  4600. private System.Windows.Forms.TextBox textBox1;
  4601. private System.Windows.Forms.Button button6;
  4602. private System.Windows.Forms.Label label83;
  4603. private System.Windows.Forms.Button btnDRSet;
  4604. private System.Windows.Forms.TextBox txtDRSet;
  4605. private System.Windows.Forms.TabPage tabPage5;
  4606. private System.Windows.Forms.Button btnDeltaR;
  4607. private System.Windows.Forms.TextBox txtDeltaR;
  4608. private System.Windows.Forms.Label label85;
  4609. private System.Windows.Forms.Label label86;
  4610. private System.Windows.Forms.TextBox txtelyx;
  4611. private System.Windows.Forms.Label label87;
  4612. private System.Windows.Forms.Button button7;
  4613. private System.Windows.Forms.Button button8;
  4614. private System.Windows.Forms.Button button9;
  4615. private System.Windows.Forms.Label label89;
  4616. private System.Windows.Forms.TextBox txtelyy;
  4617. private System.Windows.Forms.Label label88;
  4618. private System.Windows.Forms.Label label90;
  4619. private System.Windows.Forms.Button button10;
  4620. private System.Windows.Forms.Label label91;
  4621. private System.Windows.Forms.TextBox txtTy;
  4622. private System.Windows.Forms.Label label92;
  4623. private System.Windows.Forms.TextBox txtTx;
  4624. private System.Windows.Forms.Button button11;
  4625. private System.Windows.Forms.Label label93;
  4626. private System.Windows.Forms.TextBox txtFocus;
  4627. private System.Windows.Forms.TabPage tabPage6;
  4628. private System.Windows.Forms.ListBox ltPoints;
  4629. private System.Windows.Forms.Button button12;
  4630. private System.Windows.Forms.Label label94;
  4631. private System.Windows.Forms.TextBox txtPicPath;
  4632. private System.Windows.Forms.ListBox ltLines;
  4633. private System.Windows.Forms.Button button13;
  4634. private System.Windows.Forms.Label label101;
  4635. private System.Windows.Forms.Label lblEDSH;
  4636. private System.Windows.Forms.Label label99;
  4637. private System.Windows.Forms.Label lblEDSW;
  4638. private System.Windows.Forms.Label label97;
  4639. private System.Windows.Forms.Label lblEDSY;
  4640. private System.Windows.Forms.Label label96;
  4641. private System.Windows.Forms.Label lblEDSX;
  4642. private System.Windows.Forms.Button button14;
  4643. private System.Windows.Forms.TextBox textBox4;
  4644. private System.Windows.Forms.TextBox textBox3;
  4645. private System.Windows.Forms.Button button15;
  4646. }
  4647. }