123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653 |
- namespace HOZProject
- {
- partial class FormUnitControl
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
- System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
- System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
- System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
- System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(65D, 65D);
- this.btnGrabImage = new System.Windows.Forms.Button();
- this.btnenlargeGet = new System.Windows.Forms.Button();
- this.btnWriteXml = new System.Windows.Forms.Button();
- this.btnReadXml = new System.Windows.Forms.Button();
- this.btnGetStagePosition = new System.Windows.Forms.Button();
- this.btnStageSetM = new System.Windows.Forms.Button();
- this.txtStageM = new System.Windows.Forms.TextBox();
- this.lblStageM = new System.Windows.Forms.Label();
- this.label10 = new System.Windows.Forms.Label();
- this.btnStageGetM = new System.Windows.Forms.Button();
- this.btnStageSetR = new System.Windows.Forms.Button();
- this.txtStageR = new System.Windows.Forms.TextBox();
- this.lblStageR = new System.Windows.Forms.Label();
- this.label13 = new System.Windows.Forms.Label();
- this.btnStageGetR = new System.Windows.Forms.Button();
- this.btnStageSetT = new System.Windows.Forms.Button();
- this.txtStageT = new System.Windows.Forms.TextBox();
- this.lblStageT = new System.Windows.Forms.Label();
- this.label15 = new System.Windows.Forms.Label();
- this.btnStageGetT = new System.Windows.Forms.Button();
- this.btnStageSetZ = new System.Windows.Forms.Button();
- this.txtStageZ = new System.Windows.Forms.TextBox();
- this.lblStageZ = new System.Windows.Forms.Label();
- this.label17 = new System.Windows.Forms.Label();
- this.btnStageGetZ = new System.Windows.Forms.Button();
- this.btnStageSetY = new System.Windows.Forms.Button();
- this.txtStageY = new System.Windows.Forms.TextBox();
- this.lblStageY = new System.Windows.Forms.Label();
- this.label19 = new System.Windows.Forms.Label();
- this.btnStageGetY = new System.Windows.Forms.Button();
- this.btnStageSetX = new System.Windows.Forms.Button();
- this.txtStageX = new System.Windows.Forms.TextBox();
- this.lblStageX = new System.Windows.Forms.Label();
- this.label21 = new System.Windows.Forms.Label();
- this.btnStageGetX = new System.Windows.Forms.Button();
- this.btnCloseVoltage = new System.Windows.Forms.Button();
- this.btnOpenVoltage = new System.Windows.Forms.Button();
- this.label9 = new System.Windows.Forms.Label();
- this.btnPixelSizeGet = new System.Windows.Forms.Button();
- this.btnScanRotationSet = new System.Windows.Forms.Button();
- this.txtScanRotationSet = new System.Windows.Forms.TextBox();
- this.label11 = new System.Windows.Forms.Label();
- this.btnScanRotationGet = new System.Windows.Forms.Button();
- this.btnTiltAngleSet = new System.Windows.Forms.Button();
- this.txtTiltAngleSet = new System.Windows.Forms.TextBox();
- this.label7 = new System.Windows.Forms.Label();
- this.btnTiltAngleGet = new System.Windows.Forms.Button();
- this.btnAstigmatismYSet = new System.Windows.Forms.Button();
- this.txtAstigmatismYSet = new System.Windows.Forms.TextBox();
- this.label5 = new System.Windows.Forms.Label();
- this.btnAstigmatismYGet = new System.Windows.Forms.Button();
- this.btnAstigmatismXSet = new System.Windows.Forms.Button();
- this.txtAstigmatismXSet = new System.Windows.Forms.TextBox();
- this.label8 = new System.Windows.Forms.Label();
- this.btnAstigmatismXGet = new System.Windows.Forms.Button();
- this.btnContrastSet = new System.Windows.Forms.Button();
- this.txtContrastSet = new System.Windows.Forms.TextBox();
- this.label4 = new System.Windows.Forms.Label();
- this.btnContrastGet = new System.Windows.Forms.Button();
- this.btnBrightnessSet = new System.Windows.Forms.Button();
- this.txtBrightnessSet = new System.Windows.Forms.TextBox();
- this.label6 = new System.Windows.Forms.Label();
- this.btnBrightnessGet = new System.Windows.Forms.Button();
- this.btnWDSet = new System.Windows.Forms.Button();
- this.txtWDSet = new System.Windows.Forms.TextBox();
- this.label3 = new System.Windows.Forms.Label();
- this.btnWDGet = new System.Windows.Forms.Button();
- this.btnenlargeSet = new System.Windows.Forms.Button();
- this.txtenlargeSet = new System.Windows.Forms.TextBox();
- this.label1 = new System.Windows.Forms.Label();
- this.panelControl = new System.Windows.Forms.Panel();
- this.button4 = new System.Windows.Forms.Button();
- this.btnMILL = new System.Windows.Forms.Button();
- this.btnFIB = new System.Windows.Forms.Button();
- this.panelSEM = new System.Windows.Forms.Panel();
- this.panelFIB = new System.Windows.Forms.Panel();
- this.btnExeEly3 = new System.Windows.Forms.Button();
- this.btnFIBStatus = new System.Windows.Forms.Button();
- this.btnExeEly2 = new System.Windows.Forms.Button();
- this.btnExeEly = new System.Windows.Forms.Button();
- this.btnFIBAstigmatismYSet = new System.Windows.Forms.Button();
- this.txtFIBAstigmatismY = new System.Windows.Forms.TextBox();
- this.label22 = new System.Windows.Forms.Label();
- this.btnFIBAstigmatismYGet = new System.Windows.Forms.Button();
- this.btnFIBAstigmatismXSet = new System.Windows.Forms.Button();
- this.txtFIBAstigmatismX = new System.Windows.Forms.TextBox();
- this.btnFIBAstigmatismXGet = new System.Windows.Forms.Button();
- this.label23 = new System.Windows.Forms.Label();
- this.btnFIBBeamShiftYSet = new System.Windows.Forms.Button();
- this.txtFIBBeamShiftY = new System.Windows.Forms.TextBox();
- this.label18 = new System.Windows.Forms.Label();
- this.btnFIBBeamShiftYGet = new System.Windows.Forms.Button();
- this.btnFIBBeamShiftXSet = new System.Windows.Forms.Button();
- this.txtFIBBeamShiftX = new System.Windows.Forms.TextBox();
- this.btnFIBBeamShiftXGet = new System.Windows.Forms.Button();
- this.label20 = new System.Windows.Forms.Label();
- this.btnMCF = new System.Windows.Forms.Button();
- this.label14 = new System.Windows.Forms.Label();
- this.btnFIBMagSet = new System.Windows.Forms.Button();
- this.btnFIBMagGet = new System.Windows.Forms.Button();
- this.txtFIBMag = new System.Windows.Forms.TextBox();
- this.btnFIBWDSet = new System.Windows.Forms.Button();
- this.btnFIBWDGet = new System.Windows.Forms.Button();
- this.label16 = new System.Windows.Forms.Label();
- this.txtFIBWD = new System.Windows.Forms.TextBox();
- this.button1 = new System.Windows.Forms.Button();
- this.txtVoltage = new System.Windows.Forms.TextBox();
- this.button2 = new System.Windows.Forms.Button();
- this.label67 = new System.Windows.Forms.Label();
- this.btnScanRotationSetOn = new System.Windows.Forms.Button();
- this.btnTiltAngleSetOn = new System.Windows.Forms.Button();
- this.btnTiltAngleSetOff = new System.Windows.Forms.Button();
- this.btnScanRotationSetLock = new System.Windows.Forms.Button();
- this.btnFrozen = new System.Windows.Forms.Button();
- this.btnLive = new System.Windows.Forms.Button();
- this.btnAutoStig = new System.Windows.Forms.Button();
- this.btnTiltCorrYSet = new System.Windows.Forms.Button();
- this.cmbImageStore = new System.Windows.Forms.ComboBox();
- this.btnAutoBCCancle = new System.Windows.Forms.Button();
- this.lblImageStore = new System.Windows.Forms.Label();
- this.txtTiltCorrY = new System.Windows.Forms.TextBox();
- this.btnImageStoreSet = new System.Windows.Forms.Button();
- this.btnImageStoreGet = new System.Windows.Forms.Button();
- this.btnAutoBC = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.btnAutoContrast = new System.Windows.Forms.Button();
- this.btnTiltCorrYGet = new System.Windows.Forms.Button();
- this.btnAutoBrightness = new System.Windows.Forms.Button();
- this.btnTiltCorrXSet = new System.Windows.Forms.Button();
- this.txtTiltCorrX = new System.Windows.Forms.TextBox();
- this.btnAutoFocus2 = new System.Windows.Forms.Button();
- this.btnAutoFocus1 = new System.Windows.Forms.Button();
- this.btnTiltCorrXGet = new System.Windows.Forms.Button();
- this.label12 = new System.Windows.Forms.Label();
- this.lblPixelSizeGet = new System.Windows.Forms.Label();
- this.btnTiltCorr = new System.Windows.Forms.Button();
- this.btnSEM = new System.Windows.Forms.Button();
- this.panelStage = new System.Windows.Forms.Panel();
- this.btnDRSet = new System.Windows.Forms.Button();
- this.txtDRSet = new System.Windows.Forms.TextBox();
- this.label83 = new System.Windows.Forms.Label();
- this.pictureBox2 = new System.Windows.Forms.PictureBox();
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.btnAbort = new System.Windows.Forms.Button();
- this.btnMoveXY = new System.Windows.Forms.Button();
- this.label24 = new System.Windows.Forms.Label();
- this.tabControl1 = new System.Windows.Forms.TabControl();
- this.tabPage1 = new System.Windows.Forms.TabPage();
- this.tabPage2 = new System.Windows.Forms.TabPage();
- this.label81 = new System.Windows.Forms.Label();
- this.label79 = new System.Windows.Forms.Label();
- this.lblstate8 = new System.Windows.Forms.Label();
- this.label84 = new System.Windows.Forms.Label();
- this.lblMag2 = new System.Windows.Forms.Label();
- this.label80 = new System.Windows.Forms.Label();
- this.lblMag1 = new System.Windows.Forms.Label();
- this.label82 = new System.Windows.Forms.Label();
- this.btnPost8 = new System.Windows.Forms.Button();
- this.txtfirm = new System.Windows.Forms.TextBox();
- this.txtTypee = new System.Windows.Forms.TextBox();
- this.btntest = new System.Windows.Forms.Button();
- this.txtaddr2 = new System.Windows.Forms.TextBox();
- this.txtaddr = new System.Windows.Forms.TextBox();
- this.lbllocationy2 = new System.Windows.Forms.Label();
- this.label71 = new System.Windows.Forms.Label();
- this.lbllocationx2 = new System.Windows.Forms.Label();
- this.label75 = new System.Windows.Forms.Label();
- this.lblstate9 = new System.Windows.Forms.Label();
- this.label47 = new System.Windows.Forms.Label();
- this.lblcenter2 = new System.Windows.Forms.Label();
- this.label49 = new System.Windows.Forms.Label();
- this.lblcenter1 = new System.Windows.Forms.Label();
- this.label51 = new System.Windows.Forms.Label();
- this.lblstate7 = new System.Windows.Forms.Label();
- this.label53 = new System.Windows.Forms.Label();
- this.lbldirection2 = new System.Windows.Forms.Label();
- this.label55 = new System.Windows.Forms.Label();
- this.lbldegree2 = new System.Windows.Forms.Label();
- this.label57 = new System.Windows.Forms.Label();
- this.lblstigpath = new System.Windows.Forms.Label();
- this.label45 = new System.Windows.Forms.Label();
- this.lblfocuspath = new System.Windows.Forms.Label();
- this.label43 = new System.Windows.Forms.Label();
- this.lblstate4 = new System.Windows.Forms.Label();
- this.label37 = new System.Windows.Forms.Label();
- this.lbltopcy = new System.Windows.Forms.Label();
- this.label39 = new System.Windows.Forms.Label();
- this.lbltopcx = new System.Windows.Forms.Label();
- this.label41 = new System.Windows.Forms.Label();
- this.lblstate3 = new System.Windows.Forms.Label();
- this.label35 = new System.Windows.Forms.Label();
- this.lblstate2 = new System.Windows.Forms.Label();
- this.label27 = new System.Windows.Forms.Label();
- this.lbllocationy1 = new System.Windows.Forms.Label();
- this.label31 = new System.Windows.Forms.Label();
- this.lbllocationx1 = new System.Windows.Forms.Label();
- this.label33 = new System.Windows.Forms.Label();
- this.btnPost9 = new System.Windows.Forms.Button();
- this.btnPost7 = new System.Windows.Forms.Button();
- this.btnPost6 = new System.Windows.Forms.Button();
- this.btnPost5 = new System.Windows.Forms.Button();
- this.btnPost4 = new System.Windows.Forms.Button();
- this.btnPost3 = new System.Windows.Forms.Button();
- this.btnPost2 = new System.Windows.Forms.Button();
- this.lblstate1 = new System.Windows.Forms.Label();
- this.label30 = new System.Windows.Forms.Label();
- this.lbldirection1 = new System.Windows.Forms.Label();
- this.label28 = new System.Windows.Forms.Label();
- this.lbldegree1 = new System.Windows.Forms.Label();
- this.label25 = new System.Windows.Forms.Label();
- this.btnPost1 = new System.Windows.Forms.Button();
- this.tabPage3 = new System.Windows.Forms.TabPage();
- this.textBox2 = new System.Windows.Forms.TextBox();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.button6 = new System.Windows.Forms.Button();
- this.button5 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.cbbWPZD = new System.Windows.Forms.ComboBox();
- this.cbbWPZF = new System.Windows.Forms.ComboBox();
- this.cbbWQGD = new System.Windows.Forms.ComboBox();
- this.cbbWQGF = new System.Windows.Forms.ComboBox();
- this.cbbWLZ = new System.Windows.Forms.ComboBox();
- this.cbbWXZ = new System.Windows.Forms.ComboBox();
- this.cbbWCS = new System.Windows.Forms.ComboBox();
- this.cbbWYP = new System.Windows.Forms.ComboBox();
- this.txtRXZ = new System.Windows.Forms.TextBox();
- this.label26 = new System.Windows.Forms.Label();
- this.txtRPZD = new System.Windows.Forms.TextBox();
- this.label29 = new System.Windows.Forms.Label();
- this.txtRPZF = new System.Windows.Forms.TextBox();
- this.label34 = new System.Windows.Forms.Label();
- this.txtRQGD = new System.Windows.Forms.TextBox();
- this.label36 = new System.Windows.Forms.Label();
- this.txtRQGF = new System.Windows.Forms.TextBox();
- this.label40 = new System.Windows.Forms.Label();
- this.txtRLZ = new System.Windows.Forms.TextBox();
- this.label44 = new System.Windows.Forms.Label();
- this.chkRIsP = new System.Windows.Forms.CheckBox();
- this.label52 = new System.Windows.Forms.Label();
- this.txtRYP = new System.Windows.Forms.TextBox();
- this.txtRCS = new System.Windows.Forms.TextBox();
- this.txtRFIBF = new System.Windows.Forms.TextBox();
- this.txtRPTF = new System.Windows.Forms.TextBox();
- this.label60 = new System.Windows.Forms.Label();
- this.label63 = new System.Windows.Forms.Label();
- this.label64 = new System.Windows.Forms.Label();
- this.label65 = new System.Windows.Forms.Label();
- this.chkRPT = new System.Windows.Forms.CheckBox();
- this.label66 = new System.Windows.Forms.Label();
- this.label58 = new System.Windows.Forms.Label();
- this.label50 = new System.Windows.Forms.Label();
- this.label54 = new System.Windows.Forms.Label();
- this.label46 = new System.Windows.Forms.Label();
- this.label42 = new System.Windows.Forms.Label();
- this.label38 = new System.Windows.Forms.Label();
- this.chkWIsP = new System.Windows.Forms.CheckBox();
- this.label32 = new System.Windows.Forms.Label();
- this.txtWFIBF = new System.Windows.Forms.TextBox();
- this.txtWPTF = new System.Windows.Forms.TextBox();
- this.label48 = new System.Windows.Forms.Label();
- this.label56 = new System.Windows.Forms.Label();
- this.label59 = new System.Windows.Forms.Label();
- this.label61 = new System.Windows.Forms.Label();
- this.chkWPT = new System.Windows.Forms.CheckBox();
- this.label62 = new System.Windows.Forms.Label();
- this.btnReadConfig = new System.Windows.Forms.Button();
- this.btnCreateConfig = new System.Windows.Forms.Button();
- this.tabPage4 = new System.Windows.Forms.TabPage();
- this.txtstageny = new System.Windows.Forms.TextBox();
- this.txtstagenx = new System.Windows.Forms.TextBox();
- this.txtps = new System.Windows.Forms.TextBox();
- this.label77 = new System.Windows.Forms.Label();
- this.btnimgv = new System.Windows.Forms.Button();
- this.txtstagevy = new System.Windows.Forms.TextBox();
- this.txtstagevx = new System.Windows.Forms.TextBox();
- this.txtimgy = new System.Windows.Forms.TextBox();
- this.txtimgx = new System.Windows.Forms.TextBox();
- this.label69 = new System.Windows.Forms.Label();
- this.label73 = new System.Windows.Forms.Label();
- this.btn60 = new System.Windows.Forms.Button();
- this.btn45 = new System.Windows.Forms.Button();
- this.btn30 = new System.Windows.Forms.Button();
- this.btnrect = new System.Windows.Forms.Button();
- this.txtdistance = new System.Windows.Forms.TextBox();
- this.txtarray = new System.Windows.Forms.TextBox();
- this.txty = new System.Windows.Forms.TextBox();
- this.txtx = new System.Windows.Forms.TextBox();
- this.txtsample1y = new System.Windows.Forms.TextBox();
- this.txtsample1x = new System.Windows.Forms.TextBox();
- this.label76 = new System.Windows.Forms.Label();
- this.label78 = new System.Windows.Forms.Label();
- this.label74 = new System.Windows.Forms.Label();
- this.label72 = new System.Windows.Forms.Label();
- this.label70 = new System.Windows.Forms.Label();
- this.label68 = new System.Windows.Forms.Label();
- this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
- this.lblPs1 = new System.Windows.Forms.Label();
- this.btnPsFile = new System.Windows.Forms.Button();
- this.tabPage5 = new System.Windows.Forms.TabPage();
- this.label93 = new System.Windows.Forms.Label();
- this.txtFocus = new System.Windows.Forms.TextBox();
- this.button11 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label91 = new System.Windows.Forms.Label();
- this.txtTy = new System.Windows.Forms.TextBox();
- this.label92 = new System.Windows.Forms.Label();
- this.txtTx = new System.Windows.Forms.TextBox();
- this.label90 = new System.Windows.Forms.Label();
- this.button7 = new System.Windows.Forms.Button();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.label89 = new System.Windows.Forms.Label();
- this.txtelyy = new System.Windows.Forms.TextBox();
- this.label88 = new System.Windows.Forms.Label();
- this.txtelyx = new System.Windows.Forms.TextBox();
- this.label87 = new System.Windows.Forms.Label();
- this.label86 = new System.Windows.Forms.Label();
- this.btnDeltaR = new System.Windows.Forms.Button();
- this.txtDeltaR = new System.Windows.Forms.TextBox();
- this.label85 = new System.Windows.Forms.Label();
- this.tabPage6 = new System.Windows.Forms.TabPage();
- this.label101 = new System.Windows.Forms.Label();
- this.lblEDSH = new System.Windows.Forms.Label();
- this.label99 = new System.Windows.Forms.Label();
- this.lblEDSW = new System.Windows.Forms.Label();
- this.label97 = new System.Windows.Forms.Label();
- this.lblEDSY = new System.Windows.Forms.Label();
- this.label96 = new System.Windows.Forms.Label();
- this.lblEDSX = new System.Windows.Forms.Label();
- this.button14 = new System.Windows.Forms.Button();
- this.ltLines = new System.Windows.Forms.ListBox();
- this.button13 = new System.Windows.Forms.Button();
- this.label94 = new System.Windows.Forms.Label();
- this.txtPicPath = new System.Windows.Forms.TextBox();
- this.ltPoints = new System.Windows.Forms.ListBox();
- this.button12 = new System.Windows.Forms.Button();
- this.button15 = new System.Windows.Forms.Button();
- this.textBox3 = new System.Windows.Forms.TextBox();
- this.textBox4 = new System.Windows.Forms.TextBox();
- this.panelControl.SuspendLayout();
- this.panelSEM.SuspendLayout();
- this.panelFIB.SuspendLayout();
- this.panelStage.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.tabControl1.SuspendLayout();
- this.tabPage1.SuspendLayout();
- this.tabPage2.SuspendLayout();
- this.tabPage3.SuspendLayout();
- this.tabPage4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
- this.tabPage5.SuspendLayout();
- this.tabPage6.SuspendLayout();
- this.SuspendLayout();
- //
- // btnGrabImage
- //
- this.btnGrabImage.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnGrabImage.Location = new System.Drawing.Point(605, 11);
- this.btnGrabImage.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnGrabImage.Name = "btnGrabImage";
- this.btnGrabImage.Size = new System.Drawing.Size(144, 41);
- this.btnGrabImage.TabIndex = 1;
- this.btnGrabImage.Text = "抓取图像";
- this.btnGrabImage.UseVisualStyleBackColor = true;
- this.btnGrabImage.Click += new System.EventHandler(this.btnGrabImage_Click);
- //
- // btnenlargeGet
- //
- this.btnenlargeGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnenlargeGet.Location = new System.Drawing.Point(243, 20);
- this.btnenlargeGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnenlargeGet.Name = "btnenlargeGet";
- this.btnenlargeGet.Size = new System.Drawing.Size(54, 34);
- this.btnenlargeGet.TabIndex = 2;
- this.btnenlargeGet.Text = "读";
- this.btnenlargeGet.UseVisualStyleBackColor = true;
- this.btnenlargeGet.Click += new System.EventHandler(this.btnenlargeGet_Click);
- //
- // btnWriteXml
- //
- this.btnWriteXml.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnWriteXml.Location = new System.Drawing.Point(450, 15);
- this.btnWriteXml.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnWriteXml.Name = "btnWriteXml";
- this.btnWriteXml.Size = new System.Drawing.Size(144, 41);
- this.btnWriteXml.TabIndex = 83;
- this.btnWriteXml.Text = "写Xml文件";
- this.btnWriteXml.UseVisualStyleBackColor = true;
- this.btnWriteXml.Click += new System.EventHandler(this.btnWriteXml_Click);
- //
- // btnReadXml
- //
- this.btnReadXml.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnReadXml.Location = new System.Drawing.Point(24, 11);
- this.btnReadXml.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnReadXml.Name = "btnReadXml";
- this.btnReadXml.Size = new System.Drawing.Size(144, 41);
- this.btnReadXml.TabIndex = 82;
- this.btnReadXml.Text = "读Xml文件";
- this.btnReadXml.UseVisualStyleBackColor = true;
- this.btnReadXml.Click += new System.EventHandler(this.btnReadXml_Click);
- //
- // btnGetStagePosition
- //
- this.btnGetStagePosition.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnGetStagePosition.Location = new System.Drawing.Point(107, 337);
- this.btnGetStagePosition.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnGetStagePosition.Name = "btnGetStagePosition";
- this.btnGetStagePosition.Size = new System.Drawing.Size(144, 41);
- this.btnGetStagePosition.TabIndex = 81;
- this.btnGetStagePosition.Text = "获取位置数组";
- this.btnGetStagePosition.UseVisualStyleBackColor = true;
- this.btnGetStagePosition.Click += new System.EventHandler(this.btnGetStagePosition_Click);
- //
- // btnStageSetM
- //
- this.btnStageSetM.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnStageSetM.Location = new System.Drawing.Point(480, 258);
- this.btnStageSetM.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnStageSetM.Name = "btnStageSetM";
- this.btnStageSetM.Size = new System.Drawing.Size(79, 34);
- this.btnStageSetM.TabIndex = 80;
- this.btnStageSetM.Text = "Set";
- this.btnStageSetM.UseVisualStyleBackColor = true;
- this.btnStageSetM.Click += new System.EventHandler(this.btnStageSetM_Click);
- //
- // txtStageM
- //
- this.txtStageM.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtStageM.Location = new System.Drawing.Point(370, 259);
- this.txtStageM.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtStageM.Name = "txtStageM";
- this.txtStageM.Size = new System.Drawing.Size(100, 30);
- this.txtStageM.TabIndex = 79;
- this.txtStageM.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // lblStageM
- //
- this.lblStageM.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblStageM.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.lblStageM.Location = new System.Drawing.Point(194, 258);
- this.lblStageM.Name = "lblStageM";
- this.lblStageM.Size = new System.Drawing.Size(83, 33);
- this.lblStageM.TabIndex = 78;
- this.lblStageM.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label10.Location = new System.Drawing.Point(54, 264);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(138, 27);
- this.label10.TabIndex = 77;
- this.label10.Text = "样品台 M轴:";
- //
- // btnStageGetM
- //
- this.btnStageGetM.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnStageGetM.Location = new System.Drawing.Point(285, 258);
- this.btnStageGetM.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnStageGetM.Name = "btnStageGetM";
- this.btnStageGetM.Size = new System.Drawing.Size(79, 34);
- this.btnStageGetM.TabIndex = 76;
- this.btnStageGetM.Text = "Get";
- this.btnStageGetM.UseVisualStyleBackColor = true;
- this.btnStageGetM.Click += new System.EventHandler(this.btnStageGetM_Click);
- //
- // btnStageSetR
- //
- this.btnStageSetR.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnStageSetR.Location = new System.Drawing.Point(480, 220);
- this.btnStageSetR.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnStageSetR.Name = "btnStageSetR";
- this.btnStageSetR.Size = new System.Drawing.Size(79, 34);
- this.btnStageSetR.TabIndex = 75;
- this.btnStageSetR.Text = "Set";
- this.btnStageSetR.UseVisualStyleBackColor = true;
- this.btnStageSetR.Click += new System.EventHandler(this.btnStageSetR_Click);
- //
- // txtStageR
- //
- this.txtStageR.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtStageR.Location = new System.Drawing.Point(370, 223);
- this.txtStageR.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtStageR.Name = "txtStageR";
- this.txtStageR.Size = new System.Drawing.Size(100, 30);
- this.txtStageR.TabIndex = 74;
- this.txtStageR.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // lblStageR
- //
- this.lblStageR.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblStageR.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.lblStageR.Location = new System.Drawing.Point(194, 220);
- this.lblStageR.Name = "lblStageR";
- this.lblStageR.Size = new System.Drawing.Size(83, 33);
- this.lblStageR.TabIndex = 73;
- this.lblStageR.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label13.Location = new System.Drawing.Point(54, 228);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(131, 27);
- this.label13.TabIndex = 72;
- this.label13.Text = "样品台 R轴:";
- //
- // btnStageGetR
- //
- this.btnStageGetR.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnStageGetR.Location = new System.Drawing.Point(285, 220);
- this.btnStageGetR.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnStageGetR.Name = "btnStageGetR";
- this.btnStageGetR.Size = new System.Drawing.Size(79, 34);
- this.btnStageGetR.TabIndex = 71;
- this.btnStageGetR.Text = "Get";
- this.btnStageGetR.UseVisualStyleBackColor = true;
- this.btnStageGetR.Click += new System.EventHandler(this.btnStageGetR_Click);
- //
- // btnStageSetT
- //
- this.btnStageSetT.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnStageSetT.Location = new System.Drawing.Point(480, 184);
- this.btnStageSetT.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnStageSetT.Name = "btnStageSetT";
- this.btnStageSetT.Size = new System.Drawing.Size(79, 34);
- this.btnStageSetT.TabIndex = 70;
- this.btnStageSetT.Text = "Set";
- this.btnStageSetT.UseVisualStyleBackColor = true;
- this.btnStageSetT.Click += new System.EventHandler(this.btnStageSetT_Click);
- //
- // txtStageT
- //
- this.txtStageT.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtStageT.Location = new System.Drawing.Point(370, 185);
- this.txtStageT.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtStageT.Name = "txtStageT";
- this.txtStageT.Size = new System.Drawing.Size(100, 30);
- this.txtStageT.TabIndex = 69;
- this.txtStageT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // lblStageT
- //
- this.lblStageT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblStageT.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.lblStageT.Location = new System.Drawing.Point(194, 184);
- this.lblStageT.Name = "lblStageT";
- this.lblStageT.Size = new System.Drawing.Size(83, 33);
- this.lblStageT.TabIndex = 68;
- this.lblStageT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label15.Location = new System.Drawing.Point(54, 190);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(129, 27);
- this.label15.TabIndex = 67;
- this.label15.Text = "样品台 T轴:";
- //
- // btnStageGetT
- //
- this.btnStageGetT.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnStageGetT.Location = new System.Drawing.Point(285, 184);
- this.btnStageGetT.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnStageGetT.Name = "btnStageGetT";
- this.btnStageGetT.Size = new System.Drawing.Size(79, 34);
- this.btnStageGetT.TabIndex = 66;
- this.btnStageGetT.Text = "Get";
- this.btnStageGetT.UseVisualStyleBackColor = true;
- this.btnStageGetT.Click += new System.EventHandler(this.btnStageGetT_Click);
- //
- // btnStageSetZ
- //
- this.btnStageSetZ.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnStageSetZ.Location = new System.Drawing.Point(480, 148);
- this.btnStageSetZ.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnStageSetZ.Name = "btnStageSetZ";
- this.btnStageSetZ.Size = new System.Drawing.Size(79, 34);
- this.btnStageSetZ.TabIndex = 65;
- this.btnStageSetZ.Text = "Set";
- this.btnStageSetZ.UseVisualStyleBackColor = true;
- this.btnStageSetZ.Click += new System.EventHandler(this.btnStageSetZ_Click);
- //
- // txtStageZ
- //
- this.txtStageZ.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtStageZ.Location = new System.Drawing.Point(370, 148);
- this.txtStageZ.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtStageZ.Name = "txtStageZ";
- this.txtStageZ.Size = new System.Drawing.Size(100, 30);
- this.txtStageZ.TabIndex = 64;
- this.txtStageZ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // lblStageZ
- //
- this.lblStageZ.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblStageZ.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.lblStageZ.Location = new System.Drawing.Point(194, 148);
- this.lblStageZ.Name = "lblStageZ";
- this.lblStageZ.Size = new System.Drawing.Size(83, 33);
- this.lblStageZ.TabIndex = 63;
- this.lblStageZ.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label17.Location = new System.Drawing.Point(54, 153);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(130, 27);
- this.label17.TabIndex = 62;
- this.label17.Text = "样品台 Z轴:";
- //
- // btnStageGetZ
- //
- this.btnStageGetZ.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnStageGetZ.Location = new System.Drawing.Point(285, 148);
- this.btnStageGetZ.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnStageGetZ.Name = "btnStageGetZ";
- this.btnStageGetZ.Size = new System.Drawing.Size(79, 34);
- this.btnStageGetZ.TabIndex = 61;
- this.btnStageGetZ.Text = "Get";
- this.btnStageGetZ.UseVisualStyleBackColor = true;
- this.btnStageGetZ.Click += new System.EventHandler(this.btnStageGetZ_Click);
- //
- // btnStageSetY
- //
- this.btnStageSetY.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnStageSetY.Location = new System.Drawing.Point(480, 110);
- this.btnStageSetY.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnStageSetY.Name = "btnStageSetY";
- this.btnStageSetY.Size = new System.Drawing.Size(79, 34);
- this.btnStageSetY.TabIndex = 60;
- this.btnStageSetY.Text = "Set";
- this.btnStageSetY.UseVisualStyleBackColor = true;
- this.btnStageSetY.Click += new System.EventHandler(this.btnStageSetY_Click);
- //
- // txtStageY
- //
- this.txtStageY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtStageY.Location = new System.Drawing.Point(370, 110);
- this.txtStageY.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtStageY.Name = "txtStageY";
- this.txtStageY.Size = new System.Drawing.Size(100, 30);
- this.txtStageY.TabIndex = 59;
- this.txtStageY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // lblStageY
- //
- this.lblStageY.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblStageY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.lblStageY.Location = new System.Drawing.Point(194, 110);
- this.lblStageY.Name = "lblStageY";
- this.lblStageY.Size = new System.Drawing.Size(83, 33);
- this.lblStageY.TabIndex = 58;
- this.lblStageY.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // label19
- //
- this.label19.AutoSize = true;
- this.label19.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label19.Location = new System.Drawing.Point(54, 115);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(130, 27);
- this.label19.TabIndex = 57;
- this.label19.Text = "样品台 Y轴:";
- //
- // btnStageGetY
- //
- this.btnStageGetY.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnStageGetY.Location = new System.Drawing.Point(285, 110);
- this.btnStageGetY.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnStageGetY.Name = "btnStageGetY";
- this.btnStageGetY.Size = new System.Drawing.Size(79, 34);
- this.btnStageGetY.TabIndex = 56;
- this.btnStageGetY.Text = "Get";
- this.btnStageGetY.UseVisualStyleBackColor = true;
- this.btnStageGetY.Click += new System.EventHandler(this.btnStageGetY_Click);
- //
- // btnStageSetX
- //
- this.btnStageSetX.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnStageSetX.Location = new System.Drawing.Point(480, 73);
- this.btnStageSetX.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnStageSetX.Name = "btnStageSetX";
- this.btnStageSetX.Size = new System.Drawing.Size(79, 34);
- this.btnStageSetX.TabIndex = 55;
- this.btnStageSetX.Text = "Set";
- this.btnStageSetX.UseVisualStyleBackColor = true;
- this.btnStageSetX.Click += new System.EventHandler(this.btnStageSetX_Click);
- //
- // txtStageX
- //
- this.txtStageX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtStageX.Location = new System.Drawing.Point(370, 74);
- this.txtStageX.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtStageX.Name = "txtStageX";
- this.txtStageX.Size = new System.Drawing.Size(100, 30);
- this.txtStageX.TabIndex = 54;
- this.txtStageX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // lblStageX
- //
- this.lblStageX.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblStageX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.lblStageX.Location = new System.Drawing.Point(194, 73);
- this.lblStageX.Name = "lblStageX";
- this.lblStageX.Size = new System.Drawing.Size(83, 33);
- this.lblStageX.TabIndex = 53;
- this.lblStageX.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label21.Location = new System.Drawing.Point(54, 79);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(131, 27);
- this.label21.TabIndex = 52;
- this.label21.Text = "样品台 X轴:";
- //
- // btnStageGetX
- //
- this.btnStageGetX.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnStageGetX.Location = new System.Drawing.Point(285, 73);
- this.btnStageGetX.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnStageGetX.Name = "btnStageGetX";
- this.btnStageGetX.Size = new System.Drawing.Size(79, 34);
- this.btnStageGetX.TabIndex = 51;
- this.btnStageGetX.Text = "Get";
- this.btnStageGetX.UseVisualStyleBackColor = true;
- this.btnStageGetX.Click += new System.EventHandler(this.btnStageGetX_Click);
- //
- // btnCloseVoltage
- //
- this.btnCloseVoltage.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnCloseVoltage.Location = new System.Drawing.Point(591, 69);
- this.btnCloseVoltage.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnCloseVoltage.Name = "btnCloseVoltage";
- this.btnCloseVoltage.Size = new System.Drawing.Size(144, 41);
- this.btnCloseVoltage.TabIndex = 50;
- this.btnCloseVoltage.Text = "关闭电压";
- this.btnCloseVoltage.UseVisualStyleBackColor = true;
- this.btnCloseVoltage.Click += new System.EventHandler(this.btnCloseVoltage_Click);
- //
- // btnOpenVoltage
- //
- this.btnOpenVoltage.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnOpenVoltage.Location = new System.Drawing.Point(591, 18);
- this.btnOpenVoltage.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnOpenVoltage.Name = "btnOpenVoltage";
- this.btnOpenVoltage.Size = new System.Drawing.Size(144, 41);
- this.btnOpenVoltage.TabIndex = 49;
- this.btnOpenVoltage.Text = "开启电压";
- this.btnOpenVoltage.UseVisualStyleBackColor = true;
- this.btnOpenVoltage.Click += new System.EventHandler(this.btnOpenVoltage_Click);
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label9.Location = new System.Drawing.Point(12, 435);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(104, 27);
- this.label9.TabIndex = 45;
- this.label9.Text = "Pixel Size:";
- //
- // btnPixelSizeGet
- //
- this.btnPixelSizeGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPixelSizeGet.ForeColor = System.Drawing.Color.Black;
- this.btnPixelSizeGet.Location = new System.Drawing.Point(348, 431);
- this.btnPixelSizeGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnPixelSizeGet.Name = "btnPixelSizeGet";
- this.btnPixelSizeGet.Size = new System.Drawing.Size(54, 34);
- this.btnPixelSizeGet.TabIndex = 44;
- this.btnPixelSizeGet.Text = "读";
- this.btnPixelSizeGet.UseVisualStyleBackColor = true;
- this.btnPixelSizeGet.Click += new System.EventHandler(this.btnPixelSizeGet_Click);
- //
- // btnScanRotationSet
- //
- this.btnScanRotationSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnScanRotationSet.Location = new System.Drawing.Point(296, 367);
- this.btnScanRotationSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnScanRotationSet.Name = "btnScanRotationSet";
- this.btnScanRotationSet.Size = new System.Drawing.Size(54, 34);
- this.btnScanRotationSet.TabIndex = 43;
- this.btnScanRotationSet.Text = "写";
- this.btnScanRotationSet.UseVisualStyleBackColor = true;
- this.btnScanRotationSet.Click += new System.EventHandler(this.btnScanRotationSet_Click);
- //
- // txtScanRotationSet
- //
- this.txtScanRotationSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtScanRotationSet.Location = new System.Drawing.Point(154, 369);
- this.txtScanRotationSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtScanRotationSet.Name = "txtScanRotationSet";
- this.txtScanRotationSet.Size = new System.Drawing.Size(85, 30);
- this.txtScanRotationSet.TabIndex = 42;
- this.txtScanRotationSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label11
- //
- this.label11.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label11.Location = new System.Drawing.Point(12, 353);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(125, 62);
- this.label11.TabIndex = 40;
- this.label11.Text = "Scan Rotate角度:";
- //
- // btnScanRotationGet
- //
- this.btnScanRotationGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnScanRotationGet.Location = new System.Drawing.Point(243, 367);
- this.btnScanRotationGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnScanRotationGet.Name = "btnScanRotationGet";
- this.btnScanRotationGet.Size = new System.Drawing.Size(54, 34);
- this.btnScanRotationGet.TabIndex = 39;
- this.btnScanRotationGet.Text = "读";
- this.btnScanRotationGet.UseVisualStyleBackColor = true;
- this.btnScanRotationGet.Click += new System.EventHandler(this.btnScanRotationGet_Click);
- //
- // btnTiltAngleSet
- //
- this.btnTiltAngleSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnTiltAngleSet.Location = new System.Drawing.Point(296, 302);
- this.btnTiltAngleSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnTiltAngleSet.Name = "btnTiltAngleSet";
- this.btnTiltAngleSet.Size = new System.Drawing.Size(54, 34);
- this.btnTiltAngleSet.TabIndex = 38;
- this.btnTiltAngleSet.Text = "写";
- this.btnTiltAngleSet.UseVisualStyleBackColor = true;
- this.btnTiltAngleSet.Click += new System.EventHandler(this.btnTiltAngleSet_Click);
- //
- // txtTiltAngleSet
- //
- this.txtTiltAngleSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtTiltAngleSet.Location = new System.Drawing.Point(154, 304);
- this.txtTiltAngleSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtTiltAngleSet.Name = "txtTiltAngleSet";
- this.txtTiltAngleSet.Size = new System.Drawing.Size(85, 30);
- this.txtTiltAngleSet.TabIndex = 37;
- this.txtTiltAngleSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label7.Location = new System.Drawing.Point(14, 306);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(112, 27);
- this.label7.TabIndex = 35;
- this.label7.Text = "角度补偿:";
- //
- // btnTiltAngleGet
- //
- this.btnTiltAngleGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnTiltAngleGet.Location = new System.Drawing.Point(243, 302);
- this.btnTiltAngleGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnTiltAngleGet.Name = "btnTiltAngleGet";
- this.btnTiltAngleGet.Size = new System.Drawing.Size(54, 34);
- this.btnTiltAngleGet.TabIndex = 34;
- this.btnTiltAngleGet.Text = "读";
- this.btnTiltAngleGet.UseVisualStyleBackColor = true;
- this.btnTiltAngleGet.Click += new System.EventHandler(this.btnTiltAngleGet_Click);
- //
- // btnAstigmatismYSet
- //
- this.btnAstigmatismYSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAstigmatismYSet.Location = new System.Drawing.Point(296, 255);
- this.btnAstigmatismYSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnAstigmatismYSet.Name = "btnAstigmatismYSet";
- this.btnAstigmatismYSet.Size = new System.Drawing.Size(54, 34);
- this.btnAstigmatismYSet.TabIndex = 33;
- this.btnAstigmatismYSet.Text = "写";
- this.btnAstigmatismYSet.UseVisualStyleBackColor = true;
- this.btnAstigmatismYSet.Click += new System.EventHandler(this.btnAstigmatismYSet_Click);
- //
- // txtAstigmatismYSet
- //
- this.txtAstigmatismYSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtAstigmatismYSet.Location = new System.Drawing.Point(154, 257);
- this.txtAstigmatismYSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtAstigmatismYSet.Name = "txtAstigmatismYSet";
- this.txtAstigmatismYSet.Size = new System.Drawing.Size(85, 30);
- this.txtAstigmatismYSet.TabIndex = 32;
- this.txtAstigmatismYSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label5.Location = new System.Drawing.Point(12, 259);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(104, 27);
- this.label5.TabIndex = 30;
- this.label5.Text = "消像散Y:";
- //
- // btnAstigmatismYGet
- //
- this.btnAstigmatismYGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAstigmatismYGet.Location = new System.Drawing.Point(243, 255);
- this.btnAstigmatismYGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnAstigmatismYGet.Name = "btnAstigmatismYGet";
- this.btnAstigmatismYGet.Size = new System.Drawing.Size(54, 34);
- this.btnAstigmatismYGet.TabIndex = 29;
- this.btnAstigmatismYGet.Text = "读";
- this.btnAstigmatismYGet.UseVisualStyleBackColor = true;
- this.btnAstigmatismYGet.Click += new System.EventHandler(this.btnAstigmatismYGet_Click);
- //
- // btnAstigmatismXSet
- //
- this.btnAstigmatismXSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAstigmatismXSet.Location = new System.Drawing.Point(296, 208);
- this.btnAstigmatismXSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnAstigmatismXSet.Name = "btnAstigmatismXSet";
- this.btnAstigmatismXSet.Size = new System.Drawing.Size(54, 34);
- this.btnAstigmatismXSet.TabIndex = 28;
- this.btnAstigmatismXSet.Text = "写";
- this.btnAstigmatismXSet.UseVisualStyleBackColor = true;
- this.btnAstigmatismXSet.Click += new System.EventHandler(this.btnAstigmatismXSet_Click);
- //
- // txtAstigmatismXSet
- //
- this.txtAstigmatismXSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtAstigmatismXSet.Location = new System.Drawing.Point(154, 210);
- this.txtAstigmatismXSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtAstigmatismXSet.Name = "txtAstigmatismXSet";
- this.txtAstigmatismXSet.Size = new System.Drawing.Size(85, 30);
- this.txtAstigmatismXSet.TabIndex = 27;
- this.txtAstigmatismXSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label8.Location = new System.Drawing.Point(12, 212);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(105, 27);
- this.label8.TabIndex = 25;
- this.label8.Text = "消像散X:";
- //
- // btnAstigmatismXGet
- //
- this.btnAstigmatismXGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAstigmatismXGet.Location = new System.Drawing.Point(243, 208);
- this.btnAstigmatismXGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnAstigmatismXGet.Name = "btnAstigmatismXGet";
- this.btnAstigmatismXGet.Size = new System.Drawing.Size(54, 34);
- this.btnAstigmatismXGet.TabIndex = 24;
- this.btnAstigmatismXGet.Text = "读";
- this.btnAstigmatismXGet.UseVisualStyleBackColor = true;
- this.btnAstigmatismXGet.Click += new System.EventHandler(this.btnAstigmatismXGet_Click);
- //
- // btnContrastSet
- //
- this.btnContrastSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnContrastSet.Location = new System.Drawing.Point(296, 161);
- this.btnContrastSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnContrastSet.Name = "btnContrastSet";
- this.btnContrastSet.Size = new System.Drawing.Size(54, 34);
- this.btnContrastSet.TabIndex = 23;
- this.btnContrastSet.Text = "写";
- this.btnContrastSet.UseVisualStyleBackColor = true;
- this.btnContrastSet.Click += new System.EventHandler(this.btnContrastSet_Click);
- //
- // txtContrastSet
- //
- this.txtContrastSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtContrastSet.Location = new System.Drawing.Point(154, 163);
- this.txtContrastSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtContrastSet.Name = "txtContrastSet";
- this.txtContrastSet.Size = new System.Drawing.Size(85, 30);
- this.txtContrastSet.TabIndex = 22;
- this.txtContrastSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label4.Location = new System.Drawing.Point(12, 165);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(92, 27);
- this.label4.TabIndex = 20;
- this.label4.Text = "对比度:";
- //
- // btnContrastGet
- //
- this.btnContrastGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnContrastGet.Location = new System.Drawing.Point(243, 161);
- this.btnContrastGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnContrastGet.Name = "btnContrastGet";
- this.btnContrastGet.Size = new System.Drawing.Size(54, 34);
- this.btnContrastGet.TabIndex = 19;
- this.btnContrastGet.Text = "读";
- this.btnContrastGet.UseVisualStyleBackColor = true;
- this.btnContrastGet.Click += new System.EventHandler(this.btnContrastGet_Click);
- //
- // btnBrightnessSet
- //
- this.btnBrightnessSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnBrightnessSet.Location = new System.Drawing.Point(296, 114);
- this.btnBrightnessSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnBrightnessSet.Name = "btnBrightnessSet";
- this.btnBrightnessSet.Size = new System.Drawing.Size(54, 34);
- this.btnBrightnessSet.TabIndex = 18;
- this.btnBrightnessSet.Text = "写";
- this.btnBrightnessSet.UseVisualStyleBackColor = true;
- this.btnBrightnessSet.Click += new System.EventHandler(this.btnBrightnessSet_Click);
- //
- // txtBrightnessSet
- //
- this.txtBrightnessSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtBrightnessSet.Location = new System.Drawing.Point(154, 116);
- this.txtBrightnessSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtBrightnessSet.Name = "txtBrightnessSet";
- this.txtBrightnessSet.Size = new System.Drawing.Size(85, 30);
- this.txtBrightnessSet.TabIndex = 17;
- this.txtBrightnessSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label6.Location = new System.Drawing.Point(12, 118);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(72, 27);
- this.label6.TabIndex = 15;
- this.label6.Text = "亮度:";
- //
- // btnBrightnessGet
- //
- this.btnBrightnessGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnBrightnessGet.Location = new System.Drawing.Point(243, 114);
- this.btnBrightnessGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnBrightnessGet.Name = "btnBrightnessGet";
- this.btnBrightnessGet.Size = new System.Drawing.Size(54, 34);
- this.btnBrightnessGet.TabIndex = 14;
- this.btnBrightnessGet.Text = "读";
- this.btnBrightnessGet.UseVisualStyleBackColor = true;
- this.btnBrightnessGet.Click += new System.EventHandler(this.btnBrightnessGet_Click);
- //
- // btnWDSet
- //
- this.btnWDSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnWDSet.Location = new System.Drawing.Point(296, 67);
- this.btnWDSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnWDSet.Name = "btnWDSet";
- this.btnWDSet.Size = new System.Drawing.Size(54, 34);
- this.btnWDSet.TabIndex = 13;
- this.btnWDSet.Text = "写";
- this.btnWDSet.UseVisualStyleBackColor = true;
- this.btnWDSet.Click += new System.EventHandler(this.btnWDSet_Click);
- //
- // txtWDSet
- //
- this.txtWDSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtWDSet.Location = new System.Drawing.Point(154, 69);
- this.txtWDSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtWDSet.Name = "txtWDSet";
- this.txtWDSet.Size = new System.Drawing.Size(85, 30);
- this.txtWDSet.TabIndex = 12;
- this.txtWDSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label3.Location = new System.Drawing.Point(12, 71);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(72, 27);
- this.label3.TabIndex = 10;
- this.label3.Text = "焦距:";
- //
- // btnWDGet
- //
- this.btnWDGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnWDGet.Location = new System.Drawing.Point(243, 67);
- this.btnWDGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnWDGet.Name = "btnWDGet";
- this.btnWDGet.Size = new System.Drawing.Size(54, 34);
- this.btnWDGet.TabIndex = 9;
- this.btnWDGet.Text = "读";
- this.btnWDGet.UseVisualStyleBackColor = true;
- this.btnWDGet.Click += new System.EventHandler(this.btnWDGet_Click);
- //
- // btnenlargeSet
- //
- this.btnenlargeSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnenlargeSet.Location = new System.Drawing.Point(296, 20);
- this.btnenlargeSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnenlargeSet.Name = "btnenlargeSet";
- this.btnenlargeSet.Size = new System.Drawing.Size(54, 34);
- this.btnenlargeSet.TabIndex = 8;
- this.btnenlargeSet.Text = "写";
- this.btnenlargeSet.UseVisualStyleBackColor = true;
- this.btnenlargeSet.Click += new System.EventHandler(this.btnenlargeSet_Click);
- //
- // txtenlargeSet
- //
- this.txtenlargeSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtenlargeSet.Location = new System.Drawing.Point(154, 22);
- this.txtenlargeSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtenlargeSet.Name = "txtenlargeSet";
- this.txtenlargeSet.Size = new System.Drawing.Size(85, 30);
- this.txtenlargeSet.TabIndex = 7;
- this.txtenlargeSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label1.Location = new System.Drawing.Point(12, 24);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(72, 27);
- this.label1.TabIndex = 5;
- this.label1.Text = "缩放:";
- //
- // panelControl
- //
- this.panelControl.Controls.Add(this.button4);
- this.panelControl.Controls.Add(this.btnMILL);
- this.panelControl.Controls.Add(this.btnGrabImage);
- this.panelControl.Controls.Add(this.btnFIB);
- this.panelControl.Controls.Add(this.panelSEM);
- this.panelControl.Controls.Add(this.btnSEM);
- this.panelControl.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panelControl.Location = new System.Drawing.Point(3, 3);
- this.panelControl.Name = "panelControl";
- this.panelControl.Size = new System.Drawing.Size(780, 565);
- this.panelControl.TabIndex = 20;
- //
- // button4
- //
- this.button4.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button4.Location = new System.Drawing.Point(464, 10);
- this.button4.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(144, 41);
- this.button4.TabIndex = 50;
- this.button4.Text = "连续拍照";
- this.button4.UseVisualStyleBackColor = true;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // btnMILL
- //
- this.btnMILL.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnMILL.Location = new System.Drawing.Point(313, 10);
- this.btnMILL.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnMILL.Name = "btnMILL";
- this.btnMILL.Size = new System.Drawing.Size(144, 41);
- this.btnMILL.TabIndex = 49;
- this.btnMILL.Text = "MILL模式";
- this.btnMILL.UseVisualStyleBackColor = true;
- this.btnMILL.Click += new System.EventHandler(this.btnMILL_Click);
- //
- // btnFIB
- //
- this.btnFIB.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnFIB.Location = new System.Drawing.Point(163, 11);
- this.btnFIB.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnFIB.Name = "btnFIB";
- this.btnFIB.Size = new System.Drawing.Size(144, 41);
- this.btnFIB.TabIndex = 48;
- this.btnFIB.Text = "FIB模式";
- this.btnFIB.UseVisualStyleBackColor = true;
- this.btnFIB.Click += new System.EventHandler(this.btnFIB_Click);
- //
- // panelSEM
- //
- this.panelSEM.Controls.Add(this.panelFIB);
- this.panelSEM.Controls.Add(this.button1);
- this.panelSEM.Controls.Add(this.txtVoltage);
- this.panelSEM.Controls.Add(this.button2);
- this.panelSEM.Controls.Add(this.label67);
- this.panelSEM.Controls.Add(this.btnScanRotationSetOn);
- this.panelSEM.Controls.Add(this.btnTiltAngleSetOn);
- this.panelSEM.Controls.Add(this.btnTiltAngleSetOff);
- this.panelSEM.Controls.Add(this.btnScanRotationSetLock);
- this.panelSEM.Controls.Add(this.btnFrozen);
- this.panelSEM.Controls.Add(this.btnLive);
- this.panelSEM.Controls.Add(this.btnAutoStig);
- this.panelSEM.Controls.Add(this.btnTiltCorrYSet);
- this.panelSEM.Controls.Add(this.cmbImageStore);
- this.panelSEM.Controls.Add(this.label1);
- this.panelSEM.Controls.Add(this.btnAutoBCCancle);
- this.panelSEM.Controls.Add(this.lblImageStore);
- this.panelSEM.Controls.Add(this.txtTiltCorrY);
- this.panelSEM.Controls.Add(this.btnImageStoreSet);
- this.panelSEM.Controls.Add(this.btnTiltAngleSet);
- this.panelSEM.Controls.Add(this.btnImageStoreGet);
- this.panelSEM.Controls.Add(this.btnAutoBC);
- this.panelSEM.Controls.Add(this.label2);
- this.panelSEM.Controls.Add(this.txtTiltAngleSet);
- this.panelSEM.Controls.Add(this.btnAutoContrast);
- this.panelSEM.Controls.Add(this.btnTiltCorrYGet);
- this.panelSEM.Controls.Add(this.btnScanRotationGet);
- this.panelSEM.Controls.Add(this.btnAutoBrightness);
- this.panelSEM.Controls.Add(this.btnTiltCorrXSet);
- this.panelSEM.Controls.Add(this.label11);
- this.panelSEM.Controls.Add(this.txtTiltCorrX);
- this.panelSEM.Controls.Add(this.btnAutoFocus2);
- this.panelSEM.Controls.Add(this.btnAutoFocus1);
- this.panelSEM.Controls.Add(this.btnTiltCorrXGet);
- this.panelSEM.Controls.Add(this.label7);
- this.panelSEM.Controls.Add(this.btnenlargeSet);
- this.panelSEM.Controls.Add(this.label12);
- this.panelSEM.Controls.Add(this.txtScanRotationSet);
- this.panelSEM.Controls.Add(this.btnenlargeGet);
- this.panelSEM.Controls.Add(this.btnTiltAngleGet);
- this.panelSEM.Controls.Add(this.btnScanRotationSet);
- this.panelSEM.Controls.Add(this.btnAstigmatismYSet);
- this.panelSEM.Controls.Add(this.txtenlargeSet);
- this.panelSEM.Controls.Add(this.txtAstigmatismYSet);
- this.panelSEM.Controls.Add(this.btnWDSet);
- this.panelSEM.Controls.Add(this.btnPixelSizeGet);
- this.panelSEM.Controls.Add(this.btnWDGet);
- this.panelSEM.Controls.Add(this.label9);
- this.panelSEM.Controls.Add(this.label3);
- this.panelSEM.Controls.Add(this.btnCloseVoltage);
- this.panelSEM.Controls.Add(this.btnOpenVoltage);
- this.panelSEM.Controls.Add(this.lblPixelSizeGet);
- this.panelSEM.Controls.Add(this.txtWDSet);
- this.panelSEM.Controls.Add(this.label5);
- this.panelSEM.Controls.Add(this.btnBrightnessSet);
- this.panelSEM.Controls.Add(this.btnAstigmatismYGet);
- this.panelSEM.Controls.Add(this.btnBrightnessGet);
- this.panelSEM.Controls.Add(this.btnAstigmatismXSet);
- this.panelSEM.Controls.Add(this.label6);
- this.panelSEM.Controls.Add(this.txtAstigmatismXSet);
- this.panelSEM.Controls.Add(this.txtBrightnessSet);
- this.panelSEM.Controls.Add(this.btnAstigmatismXGet);
- this.panelSEM.Controls.Add(this.label4);
- this.panelSEM.Controls.Add(this.label8);
- this.panelSEM.Controls.Add(this.btnContrastGet);
- this.panelSEM.Controls.Add(this.btnContrastSet);
- this.panelSEM.Controls.Add(this.txtContrastSet);
- this.panelSEM.Controls.Add(this.btnTiltCorr);
- this.panelSEM.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.panelSEM.Location = new System.Drawing.Point(0, 56);
- this.panelSEM.Name = "panelSEM";
- this.panelSEM.Size = new System.Drawing.Size(780, 509);
- this.panelSEM.TabIndex = 47;
- //
- // panelFIB
- //
- this.panelFIB.Controls.Add(this.btnExeEly3);
- this.panelFIB.Controls.Add(this.btnFIBStatus);
- this.panelFIB.Controls.Add(this.btnExeEly2);
- this.panelFIB.Controls.Add(this.btnExeEly);
- this.panelFIB.Controls.Add(this.btnFIBAstigmatismYSet);
- this.panelFIB.Controls.Add(this.txtFIBAstigmatismY);
- this.panelFIB.Controls.Add(this.label22);
- this.panelFIB.Controls.Add(this.btnFIBAstigmatismYGet);
- this.panelFIB.Controls.Add(this.btnFIBAstigmatismXSet);
- this.panelFIB.Controls.Add(this.txtFIBAstigmatismX);
- this.panelFIB.Controls.Add(this.btnFIBAstigmatismXGet);
- this.panelFIB.Controls.Add(this.label23);
- this.panelFIB.Controls.Add(this.btnFIBBeamShiftYSet);
- this.panelFIB.Controls.Add(this.txtFIBBeamShiftY);
- this.panelFIB.Controls.Add(this.label18);
- this.panelFIB.Controls.Add(this.btnFIBBeamShiftYGet);
- this.panelFIB.Controls.Add(this.btnFIBBeamShiftXSet);
- this.panelFIB.Controls.Add(this.txtFIBBeamShiftX);
- this.panelFIB.Controls.Add(this.btnFIBBeamShiftXGet);
- this.panelFIB.Controls.Add(this.label20);
- this.panelFIB.Controls.Add(this.btnMCF);
- this.panelFIB.Controls.Add(this.label14);
- this.panelFIB.Controls.Add(this.btnFIBMagSet);
- this.panelFIB.Controls.Add(this.btnFIBMagGet);
- this.panelFIB.Controls.Add(this.txtFIBMag);
- this.panelFIB.Controls.Add(this.btnFIBWDSet);
- this.panelFIB.Controls.Add(this.btnFIBWDGet);
- this.panelFIB.Controls.Add(this.label16);
- this.panelFIB.Controls.Add(this.txtFIBWD);
- this.panelFIB.Dock = System.Windows.Forms.DockStyle.Top;
- this.panelFIB.Location = new System.Drawing.Point(0, 0);
- this.panelFIB.Name = "panelFIB";
- this.panelFIB.Size = new System.Drawing.Size(780, 289);
- this.panelFIB.TabIndex = 50;
- this.panelFIB.Visible = false;
- //
- // btnExeEly3
- //
- this.btnExeEly3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnExeEly3.Location = new System.Drawing.Point(530, 229);
- this.btnExeEly3.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnExeEly3.Name = "btnExeEly3";
- this.btnExeEly3.Size = new System.Drawing.Size(144, 41);
- this.btnExeEly3.TabIndex = 75;
- this.btnExeEly3.Text = "执行ELY文件";
- this.btnExeEly3.UseVisualStyleBackColor = true;
- this.btnExeEly3.Click += new System.EventHandler(this.btnExeEly3_Click);
- //
- // btnFIBStatus
- //
- this.btnFIBStatus.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnFIBStatus.Location = new System.Drawing.Point(406, 120);
- this.btnFIBStatus.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnFIBStatus.Name = "btnFIBStatus";
- this.btnFIBStatus.Size = new System.Drawing.Size(144, 41);
- this.btnFIBStatus.TabIndex = 74;
- this.btnFIBStatus.Text = "FIB状态";
- this.btnFIBStatus.UseVisualStyleBackColor = true;
- this.btnFIBStatus.Click += new System.EventHandler(this.btnFIBStatus_Click);
- //
- // btnExeEly2
- //
- this.btnExeEly2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnExeEly2.Location = new System.Drawing.Point(379, 229);
- this.btnExeEly2.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnExeEly2.Name = "btnExeEly2";
- this.btnExeEly2.Size = new System.Drawing.Size(144, 41);
- this.btnExeEly2.TabIndex = 73;
- this.btnExeEly2.Text = "确认ELY文件";
- this.btnExeEly2.UseVisualStyleBackColor = true;
- this.btnExeEly2.Click += new System.EventHandler(this.btnExeEly2_Click);
- //
- // btnExeEly
- //
- this.btnExeEly.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnExeEly.Location = new System.Drawing.Point(229, 229);
- this.btnExeEly.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnExeEly.Name = "btnExeEly";
- this.btnExeEly.Size = new System.Drawing.Size(144, 41);
- this.btnExeEly.TabIndex = 72;
- this.btnExeEly.Text = "选择ELY文件";
- this.btnExeEly.UseVisualStyleBackColor = true;
- this.btnExeEly.Click += new System.EventHandler(this.btnExeEly_Click);
- //
- // btnFIBAstigmatismYSet
- //
- this.btnFIBAstigmatismYSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnFIBAstigmatismYSet.Location = new System.Drawing.Point(304, 172);
- this.btnFIBAstigmatismYSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnFIBAstigmatismYSet.Name = "btnFIBAstigmatismYSet";
- this.btnFIBAstigmatismYSet.Size = new System.Drawing.Size(54, 34);
- this.btnFIBAstigmatismYSet.TabIndex = 71;
- this.btnFIBAstigmatismYSet.Text = "写";
- this.btnFIBAstigmatismYSet.UseVisualStyleBackColor = true;
- this.btnFIBAstigmatismYSet.Click += new System.EventHandler(this.btnFIBAstigmatismYSet_Click);
- //
- // txtFIBAstigmatismY
- //
- this.txtFIBAstigmatismY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtFIBAstigmatismY.Location = new System.Drawing.Point(162, 174);
- this.txtFIBAstigmatismY.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtFIBAstigmatismY.Name = "txtFIBAstigmatismY";
- this.txtFIBAstigmatismY.Size = new System.Drawing.Size(85, 30);
- this.txtFIBAstigmatismY.TabIndex = 70;
- this.txtFIBAstigmatismY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label22.Location = new System.Drawing.Point(20, 176);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(104, 27);
- this.label22.TabIndex = 69;
- this.label22.Text = "消像散Y:";
- //
- // btnFIBAstigmatismYGet
- //
- this.btnFIBAstigmatismYGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnFIBAstigmatismYGet.Location = new System.Drawing.Point(251, 172);
- this.btnFIBAstigmatismYGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnFIBAstigmatismYGet.Name = "btnFIBAstigmatismYGet";
- this.btnFIBAstigmatismYGet.Size = new System.Drawing.Size(54, 34);
- this.btnFIBAstigmatismYGet.TabIndex = 68;
- this.btnFIBAstigmatismYGet.Text = "读";
- this.btnFIBAstigmatismYGet.UseVisualStyleBackColor = true;
- this.btnFIBAstigmatismYGet.Click += new System.EventHandler(this.btnFIBAstigmatismYGet_Click);
- //
- // btnFIBAstigmatismXSet
- //
- this.btnFIBAstigmatismXSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnFIBAstigmatismXSet.Location = new System.Drawing.Point(304, 125);
- this.btnFIBAstigmatismXSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnFIBAstigmatismXSet.Name = "btnFIBAstigmatismXSet";
- this.btnFIBAstigmatismXSet.Size = new System.Drawing.Size(54, 34);
- this.btnFIBAstigmatismXSet.TabIndex = 67;
- this.btnFIBAstigmatismXSet.Text = "写";
- this.btnFIBAstigmatismXSet.UseVisualStyleBackColor = true;
- this.btnFIBAstigmatismXSet.Click += new System.EventHandler(this.btnFIBAstigmatismXSet_Click);
- //
- // txtFIBAstigmatismX
- //
- this.txtFIBAstigmatismX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtFIBAstigmatismX.Location = new System.Drawing.Point(162, 127);
- this.txtFIBAstigmatismX.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtFIBAstigmatismX.Name = "txtFIBAstigmatismX";
- this.txtFIBAstigmatismX.Size = new System.Drawing.Size(85, 30);
- this.txtFIBAstigmatismX.TabIndex = 66;
- this.txtFIBAstigmatismX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // btnFIBAstigmatismXGet
- //
- this.btnFIBAstigmatismXGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnFIBAstigmatismXGet.Location = new System.Drawing.Point(251, 125);
- this.btnFIBAstigmatismXGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnFIBAstigmatismXGet.Name = "btnFIBAstigmatismXGet";
- this.btnFIBAstigmatismXGet.Size = new System.Drawing.Size(54, 34);
- this.btnFIBAstigmatismXGet.TabIndex = 64;
- this.btnFIBAstigmatismXGet.Text = "读";
- this.btnFIBAstigmatismXGet.UseVisualStyleBackColor = true;
- this.btnFIBAstigmatismXGet.Click += new System.EventHandler(this.btnFIBAstigmatismXGet_Click);
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label23.Location = new System.Drawing.Point(20, 129);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(105, 27);
- this.label23.TabIndex = 65;
- this.label23.Text = "消像散X:";
- //
- // btnFIBBeamShiftYSet
- //
- this.btnFIBBeamShiftYSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnFIBBeamShiftYSet.Location = new System.Drawing.Point(672, 74);
- this.btnFIBBeamShiftYSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnFIBBeamShiftYSet.Name = "btnFIBBeamShiftYSet";
- this.btnFIBBeamShiftYSet.Size = new System.Drawing.Size(54, 34);
- this.btnFIBBeamShiftYSet.TabIndex = 63;
- this.btnFIBBeamShiftYSet.Text = "写";
- this.btnFIBBeamShiftYSet.UseVisualStyleBackColor = true;
- this.btnFIBBeamShiftYSet.Click += new System.EventHandler(this.btnFIBBeamShiftYSet_Click);
- //
- // txtFIBBeamShiftY
- //
- this.txtFIBBeamShiftY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtFIBBeamShiftY.Location = new System.Drawing.Point(514, 76);
- this.txtFIBBeamShiftY.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtFIBBeamShiftY.Name = "txtFIBBeamShiftY";
- this.txtFIBBeamShiftY.Size = new System.Drawing.Size(101, 30);
- this.txtFIBBeamShiftY.TabIndex = 62;
- this.txtFIBBeamShiftY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label18.Location = new System.Drawing.Point(417, 78);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(104, 27);
- this.label18.TabIndex = 61;
- this.label18.Text = "电子束Y:";
- //
- // btnFIBBeamShiftYGet
- //
- this.btnFIBBeamShiftYGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnFIBBeamShiftYGet.Location = new System.Drawing.Point(619, 74);
- this.btnFIBBeamShiftYGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnFIBBeamShiftYGet.Name = "btnFIBBeamShiftYGet";
- this.btnFIBBeamShiftYGet.Size = new System.Drawing.Size(54, 34);
- this.btnFIBBeamShiftYGet.TabIndex = 60;
- this.btnFIBBeamShiftYGet.Text = "读";
- this.btnFIBBeamShiftYGet.UseVisualStyleBackColor = true;
- this.btnFIBBeamShiftYGet.Click += new System.EventHandler(this.btnFIBBeamShiftYGet_Click);
- //
- // btnFIBBeamShiftXSet
- //
- this.btnFIBBeamShiftXSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnFIBBeamShiftXSet.Location = new System.Drawing.Point(672, 27);
- this.btnFIBBeamShiftXSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnFIBBeamShiftXSet.Name = "btnFIBBeamShiftXSet";
- this.btnFIBBeamShiftXSet.Size = new System.Drawing.Size(54, 34);
- this.btnFIBBeamShiftXSet.TabIndex = 59;
- this.btnFIBBeamShiftXSet.Text = "写";
- this.btnFIBBeamShiftXSet.UseVisualStyleBackColor = true;
- this.btnFIBBeamShiftXSet.Click += new System.EventHandler(this.btnFIBBeamShiftXSet_Click);
- //
- // txtFIBBeamShiftX
- //
- this.txtFIBBeamShiftX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtFIBBeamShiftX.Location = new System.Drawing.Point(514, 29);
- this.txtFIBBeamShiftX.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtFIBBeamShiftX.Name = "txtFIBBeamShiftX";
- this.txtFIBBeamShiftX.Size = new System.Drawing.Size(101, 30);
- this.txtFIBBeamShiftX.TabIndex = 58;
- this.txtFIBBeamShiftX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // btnFIBBeamShiftXGet
- //
- this.btnFIBBeamShiftXGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnFIBBeamShiftXGet.Location = new System.Drawing.Point(619, 27);
- this.btnFIBBeamShiftXGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnFIBBeamShiftXGet.Name = "btnFIBBeamShiftXGet";
- this.btnFIBBeamShiftXGet.Size = new System.Drawing.Size(54, 34);
- this.btnFIBBeamShiftXGet.TabIndex = 56;
- this.btnFIBBeamShiftXGet.Text = "读";
- this.btnFIBBeamShiftXGet.UseVisualStyleBackColor = true;
- this.btnFIBBeamShiftXGet.Click += new System.EventHandler(this.btnFIBBeamShiftXGet_Click);
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label20.Location = new System.Drawing.Point(417, 31);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(105, 27);
- this.label20.TabIndex = 57;
- this.label20.Text = "电子束X:";
- //
- // btnMCF
- //
- this.btnMCF.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnMCF.Location = new System.Drawing.Point(582, 122);
- this.btnMCF.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnMCF.Name = "btnMCF";
- this.btnMCF.Size = new System.Drawing.Size(144, 41);
- this.btnMCF.TabIndex = 55;
- this.btnMCF.Text = "执行宏文件";
- this.btnMCF.UseVisualStyleBackColor = true;
- this.btnMCF.Click += new System.EventHandler(this.btnMCF_Click);
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label14.Location = new System.Drawing.Point(20, 30);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(72, 27);
- this.label14.TabIndex = 15;
- this.label14.Text = "缩放:";
- //
- // btnFIBMagSet
- //
- this.btnFIBMagSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnFIBMagSet.Location = new System.Drawing.Point(304, 26);
- this.btnFIBMagSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnFIBMagSet.Name = "btnFIBMagSet";
- this.btnFIBMagSet.Size = new System.Drawing.Size(54, 34);
- this.btnFIBMagSet.TabIndex = 17;
- this.btnFIBMagSet.Text = "写";
- this.btnFIBMagSet.UseVisualStyleBackColor = true;
- this.btnFIBMagSet.Click += new System.EventHandler(this.btnFIBMagSet_Click);
- //
- // btnFIBMagGet
- //
- this.btnFIBMagGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnFIBMagGet.Location = new System.Drawing.Point(251, 26);
- this.btnFIBMagGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnFIBMagGet.Name = "btnFIBMagGet";
- this.btnFIBMagGet.Size = new System.Drawing.Size(54, 34);
- this.btnFIBMagGet.TabIndex = 14;
- this.btnFIBMagGet.Text = "读";
- this.btnFIBMagGet.UseVisualStyleBackColor = true;
- this.btnFIBMagGet.Click += new System.EventHandler(this.btnFIBMagGet_Click);
- //
- // txtFIBMag
- //
- this.txtFIBMag.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtFIBMag.Location = new System.Drawing.Point(162, 28);
- this.txtFIBMag.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtFIBMag.Name = "txtFIBMag";
- this.txtFIBMag.Size = new System.Drawing.Size(85, 30);
- this.txtFIBMag.TabIndex = 16;
- this.txtFIBMag.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // btnFIBWDSet
- //
- this.btnFIBWDSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnFIBWDSet.Location = new System.Drawing.Point(304, 73);
- this.btnFIBWDSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnFIBWDSet.Name = "btnFIBWDSet";
- this.btnFIBWDSet.Size = new System.Drawing.Size(54, 34);
- this.btnFIBWDSet.TabIndex = 21;
- this.btnFIBWDSet.Text = "写";
- this.btnFIBWDSet.UseVisualStyleBackColor = true;
- this.btnFIBWDSet.Click += new System.EventHandler(this.btnFIBWDSet_Click);
- //
- // btnFIBWDGet
- //
- this.btnFIBWDGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnFIBWDGet.Location = new System.Drawing.Point(251, 73);
- this.btnFIBWDGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnFIBWDGet.Name = "btnFIBWDGet";
- this.btnFIBWDGet.Size = new System.Drawing.Size(54, 34);
- this.btnFIBWDGet.TabIndex = 18;
- this.btnFIBWDGet.Text = "读";
- this.btnFIBWDGet.UseVisualStyleBackColor = true;
- this.btnFIBWDGet.Click += new System.EventHandler(this.btnFIBWDGet_Click);
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label16.Location = new System.Drawing.Point(20, 77);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(72, 27);
- this.label16.TabIndex = 19;
- this.label16.Text = "焦距:";
- //
- // txtFIBWD
- //
- this.txtFIBWD.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtFIBWD.Location = new System.Drawing.Point(162, 75);
- this.txtFIBWD.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtFIBWD.Name = "txtFIBWD";
- this.txtFIBWD.Size = new System.Drawing.Size(85, 30);
- this.txtFIBWD.TabIndex = 20;
- this.txtFIBWD.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // button1
- //
- this.button1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button1.Location = new System.Drawing.Point(693, 365);
- this.button1.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(54, 34);
- this.button1.TabIndex = 97;
- this.button1.Text = "写";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // txtVoltage
- //
- this.txtVoltage.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtVoltage.Location = new System.Drawing.Point(551, 367);
- this.txtVoltage.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtVoltage.Name = "txtVoltage";
- this.txtVoltage.Size = new System.Drawing.Size(85, 30);
- this.txtVoltage.TabIndex = 96;
- this.txtVoltage.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // button2
- //
- this.button2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button2.Location = new System.Drawing.Point(640, 365);
- this.button2.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(54, 34);
- this.button2.TabIndex = 94;
- this.button2.Text = "读";
- this.button2.UseVisualStyleBackColor = true;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // label67
- //
- this.label67.AutoSize = true;
- this.label67.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label67.Location = new System.Drawing.Point(469, 369);
- this.label67.Name = "label67";
- this.label67.Size = new System.Drawing.Size(72, 27);
- this.label67.TabIndex = 95;
- this.label67.Text = "电压:";
- //
- // btnScanRotationSetOn
- //
- this.btnScanRotationSetOn.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnScanRotationSetOn.Location = new System.Drawing.Point(353, 367);
- this.btnScanRotationSetOn.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnScanRotationSetOn.Name = "btnScanRotationSetOn";
- this.btnScanRotationSetOn.Size = new System.Drawing.Size(54, 34);
- this.btnScanRotationSetOn.TabIndex = 93;
- this.btnScanRotationSetOn.Text = "开";
- this.btnScanRotationSetOn.UseVisualStyleBackColor = true;
- this.btnScanRotationSetOn.Click += new System.EventHandler(this.btnScanRotationSetOn_Click);
- //
- // btnTiltAngleSetOn
- //
- this.btnTiltAngleSetOn.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnTiltAngleSetOn.Location = new System.Drawing.Point(353, 302);
- this.btnTiltAngleSetOn.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnTiltAngleSetOn.Name = "btnTiltAngleSetOn";
- this.btnTiltAngleSetOn.Size = new System.Drawing.Size(54, 34);
- this.btnTiltAngleSetOn.TabIndex = 92;
- this.btnTiltAngleSetOn.Text = "开";
- this.btnTiltAngleSetOn.UseVisualStyleBackColor = true;
- this.btnTiltAngleSetOn.Click += new System.EventHandler(this.btnTiltAngleSetOn_Click);
- //
- // btnTiltAngleSetOff
- //
- this.btnTiltAngleSetOff.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnTiltAngleSetOff.Location = new System.Drawing.Point(409, 302);
- this.btnTiltAngleSetOff.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnTiltAngleSetOff.Name = "btnTiltAngleSetOff";
- this.btnTiltAngleSetOff.Size = new System.Drawing.Size(54, 34);
- this.btnTiltAngleSetOff.TabIndex = 91;
- this.btnTiltAngleSetOff.Text = "锁";
- this.btnTiltAngleSetOff.UseVisualStyleBackColor = true;
- this.btnTiltAngleSetOff.Click += new System.EventHandler(this.button1_Click_1);
- //
- // btnScanRotationSetLock
- //
- this.btnScanRotationSetLock.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnScanRotationSetLock.Location = new System.Drawing.Point(409, 367);
- this.btnScanRotationSetLock.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnScanRotationSetLock.Name = "btnScanRotationSetLock";
- this.btnScanRotationSetLock.Size = new System.Drawing.Size(54, 34);
- this.btnScanRotationSetLock.TabIndex = 90;
- this.btnScanRotationSetLock.Text = "锁";
- this.btnScanRotationSetLock.UseVisualStyleBackColor = true;
- this.btnScanRotationSetLock.Click += new System.EventHandler(this.btnScanRotationSetLock_Click);
- //
- // btnFrozen
- //
- this.btnFrozen.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnFrozen.Location = new System.Drawing.Point(649, 205);
- this.btnFrozen.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnFrozen.Name = "btnFrozen";
- this.btnFrozen.Size = new System.Drawing.Size(86, 41);
- this.btnFrozen.TabIndex = 89;
- this.btnFrozen.Text = "冻结";
- this.btnFrozen.UseVisualStyleBackColor = true;
- this.btnFrozen.Click += new System.EventHandler(this.btnFrozen_Click);
- //
- // btnLive
- //
- this.btnLive.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnLive.Location = new System.Drawing.Point(557, 205);
- this.btnLive.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnLive.Name = "btnLive";
- this.btnLive.Size = new System.Drawing.Size(86, 41);
- this.btnLive.TabIndex = 88;
- this.btnLive.Text = "解冻";
- this.btnLive.UseVisualStyleBackColor = true;
- this.btnLive.Click += new System.EventHandler(this.btnLive_Click);
- //
- // btnAutoStig
- //
- this.btnAutoStig.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAutoStig.Location = new System.Drawing.Point(356, 210);
- this.btnAutoStig.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnAutoStig.Name = "btnAutoStig";
- this.btnAutoStig.Size = new System.Drawing.Size(69, 79);
- this.btnAutoStig.TabIndex = 34;
- this.btnAutoStig.Text = "自动";
- this.btnAutoStig.UseVisualStyleBackColor = true;
- this.btnAutoStig.Click += new System.EventHandler(this.btnAutoStig_Click);
- //
- // btnTiltCorrYSet
- //
- this.btnTiltCorrYSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnTiltCorrYSet.Location = new System.Drawing.Point(693, 455);
- this.btnTiltCorrYSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnTiltCorrYSet.Name = "btnTiltCorrYSet";
- this.btnTiltCorrYSet.Size = new System.Drawing.Size(54, 34);
- this.btnTiltCorrYSet.TabIndex = 54;
- this.btnTiltCorrYSet.Text = "写";
- this.btnTiltCorrYSet.UseVisualStyleBackColor = true;
- this.btnTiltCorrYSet.Click += new System.EventHandler(this.btnTiltCorrYSet_Click);
- //
- // cmbImageStore
- //
- this.cmbImageStore.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbImageStore.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbImageStore.FormattingEnabled = true;
- this.cmbImageStore.Items.AddRange(new object[] {
- "1024 * 768",
- "512 * 384",
- "2048 * 1536",
- "3072 * 2304",
- "4096 * 3072",
- "5120 * 3840",
- "6144 * 4608",
- "8192 * 6144",
- "12288 * 9216",
- "16384 * 12288",
- "24576 * 18432",
- "32768 * 24576"});
- this.cmbImageStore.Location = new System.Drawing.Point(613, 317);
- this.cmbImageStore.Name = "cmbImageStore";
- this.cmbImageStore.Size = new System.Drawing.Size(144, 26);
- this.cmbImageStore.TabIndex = 87;
- //
- // btnAutoBCCancle
- //
- this.btnAutoBCCancle.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAutoBCCancle.Location = new System.Drawing.Point(431, 114);
- this.btnAutoBCCancle.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnAutoBCCancle.Name = "btnAutoBCCancle";
- this.btnAutoBCCancle.Size = new System.Drawing.Size(29, 81);
- this.btnAutoBCCancle.TabIndex = 29;
- this.btnAutoBCCancle.Text = "取消";
- this.btnAutoBCCancle.UseVisualStyleBackColor = true;
- this.btnAutoBCCancle.Click += new System.EventHandler(this.btnAutoBCCancle_Click);
- //
- // lblImageStore
- //
- this.lblImageStore.AutoSize = true;
- this.lblImageStore.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblImageStore.Location = new System.Drawing.Point(608, 255);
- this.lblImageStore.Name = "lblImageStore";
- this.lblImageStore.Size = new System.Drawing.Size(0, 27);
- this.lblImageStore.TabIndex = 86;
- //
- // txtTiltCorrY
- //
- this.txtTiltCorrY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtTiltCorrY.Location = new System.Drawing.Point(551, 457);
- this.txtTiltCorrY.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtTiltCorrY.Name = "txtTiltCorrY";
- this.txtTiltCorrY.Size = new System.Drawing.Size(85, 30);
- this.txtTiltCorrY.TabIndex = 53;
- this.txtTiltCorrY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // btnImageStoreSet
- //
- this.btnImageStoreSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnImageStoreSet.Location = new System.Drawing.Point(464, 308);
- this.btnImageStoreSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnImageStoreSet.Name = "btnImageStoreSet";
- this.btnImageStoreSet.Size = new System.Drawing.Size(144, 41);
- this.btnImageStoreSet.TabIndex = 85;
- this.btnImageStoreSet.Text = "设置分辨率";
- this.btnImageStoreSet.UseVisualStyleBackColor = true;
- this.btnImageStoreSet.Click += new System.EventHandler(this.btnImageStoreSet_Click);
- //
- // btnImageStoreGet
- //
- this.btnImageStoreGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnImageStoreGet.Location = new System.Drawing.Point(431, 248);
- this.btnImageStoreGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnImageStoreGet.Name = "btnImageStoreGet";
- this.btnImageStoreGet.Size = new System.Drawing.Size(144, 41);
- this.btnImageStoreGet.TabIndex = 84;
- this.btnImageStoreGet.Text = "获取分辨率";
- this.btnImageStoreGet.UseVisualStyleBackColor = true;
- this.btnImageStoreGet.Click += new System.EventHandler(this.btnImageStoreGet_Click);
- //
- // btnAutoBC
- //
- this.btnAutoBC.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAutoBC.Location = new System.Drawing.Point(472, 114);
- this.btnAutoBC.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnAutoBC.Name = "btnAutoBC";
- this.btnAutoBC.Size = new System.Drawing.Size(30, 82);
- this.btnAutoBC.TabIndex = 28;
- this.btnAutoBC.Text = "自动";
- this.btnAutoBC.UseVisualStyleBackColor = true;
- this.btnAutoBC.Click += new System.EventHandler(this.btnAutoBC_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label2.Location = new System.Drawing.Point(438, 459);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(104, 27);
- this.label2.TabIndex = 52;
- this.label2.Text = "电子束Y:";
- //
- // btnAutoContrast
- //
- this.btnAutoContrast.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAutoContrast.Location = new System.Drawing.Point(354, 161);
- this.btnAutoContrast.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnAutoContrast.Name = "btnAutoContrast";
- this.btnAutoContrast.Size = new System.Drawing.Size(71, 34);
- this.btnAutoContrast.TabIndex = 27;
- this.btnAutoContrast.Text = "自动";
- this.btnAutoContrast.UseVisualStyleBackColor = true;
- this.btnAutoContrast.Click += new System.EventHandler(this.btnAutoContrast_Click);
- //
- // btnTiltCorrYGet
- //
- this.btnTiltCorrYGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnTiltCorrYGet.Location = new System.Drawing.Point(640, 455);
- this.btnTiltCorrYGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnTiltCorrYGet.Name = "btnTiltCorrYGet";
- this.btnTiltCorrYGet.Size = new System.Drawing.Size(54, 34);
- this.btnTiltCorrYGet.TabIndex = 51;
- this.btnTiltCorrYGet.Text = "读";
- this.btnTiltCorrYGet.UseVisualStyleBackColor = true;
- this.btnTiltCorrYGet.Click += new System.EventHandler(this.btnTiltCorrYGet_Click);
- //
- // btnAutoBrightness
- //
- this.btnAutoBrightness.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAutoBrightness.Location = new System.Drawing.Point(353, 114);
- this.btnAutoBrightness.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnAutoBrightness.Name = "btnAutoBrightness";
- this.btnAutoBrightness.Size = new System.Drawing.Size(71, 34);
- this.btnAutoBrightness.TabIndex = 26;
- this.btnAutoBrightness.Text = "自动";
- this.btnAutoBrightness.UseVisualStyleBackColor = true;
- this.btnAutoBrightness.Click += new System.EventHandler(this.btnAutoBrightness_Click);
- //
- // btnTiltCorrXSet
- //
- this.btnTiltCorrXSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnTiltCorrXSet.Location = new System.Drawing.Point(693, 408);
- this.btnTiltCorrXSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnTiltCorrXSet.Name = "btnTiltCorrXSet";
- this.btnTiltCorrXSet.Size = new System.Drawing.Size(54, 34);
- this.btnTiltCorrXSet.TabIndex = 50;
- this.btnTiltCorrXSet.Text = "写";
- this.btnTiltCorrXSet.UseVisualStyleBackColor = true;
- this.btnTiltCorrXSet.Click += new System.EventHandler(this.btnTiltCorrXSet_Click);
- //
- // txtTiltCorrX
- //
- this.txtTiltCorrX.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtTiltCorrX.Location = new System.Drawing.Point(551, 410);
- this.txtTiltCorrX.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtTiltCorrX.Name = "txtTiltCorrX";
- this.txtTiltCorrX.Size = new System.Drawing.Size(85, 30);
- this.txtTiltCorrX.TabIndex = 49;
- this.txtTiltCorrX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // btnAutoFocus2
- //
- this.btnAutoFocus2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAutoFocus2.Location = new System.Drawing.Point(431, 68);
- this.btnAutoFocus2.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnAutoFocus2.Name = "btnAutoFocus2";
- this.btnAutoFocus2.Size = new System.Drawing.Size(71, 34);
- this.btnAutoFocus2.TabIndex = 25;
- this.btnAutoFocus2.Text = "自动2";
- this.btnAutoFocus2.UseVisualStyleBackColor = true;
- this.btnAutoFocus2.Click += new System.EventHandler(this.btnAutoFocus2_Click);
- //
- // btnAutoFocus1
- //
- this.btnAutoFocus1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAutoFocus1.Location = new System.Drawing.Point(354, 67);
- this.btnAutoFocus1.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnAutoFocus1.Name = "btnAutoFocus1";
- this.btnAutoFocus1.Size = new System.Drawing.Size(71, 34);
- this.btnAutoFocus1.TabIndex = 24;
- this.btnAutoFocus1.Text = "自动1";
- this.btnAutoFocus1.UseVisualStyleBackColor = true;
- this.btnAutoFocus1.Click += new System.EventHandler(this.btnAutoFocus1_Click);
- //
- // btnTiltCorrXGet
- //
- this.btnTiltCorrXGet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnTiltCorrXGet.Location = new System.Drawing.Point(640, 408);
- this.btnTiltCorrXGet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnTiltCorrXGet.Name = "btnTiltCorrXGet";
- this.btnTiltCorrXGet.Size = new System.Drawing.Size(54, 34);
- this.btnTiltCorrXGet.TabIndex = 47;
- this.btnTiltCorrXGet.Text = "读";
- this.btnTiltCorrXGet.UseVisualStyleBackColor = true;
- this.btnTiltCorrXGet.Click += new System.EventHandler(this.btnTiltCorrXGet_Click);
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label12.Location = new System.Drawing.Point(438, 412);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(105, 27);
- this.label12.TabIndex = 48;
- this.label12.Text = "电子束X:";
- //
- // lblPixelSizeGet
- //
- this.lblPixelSizeGet.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblPixelSizeGet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.lblPixelSizeGet.Location = new System.Drawing.Point(154, 432);
- this.lblPixelSizeGet.Name = "lblPixelSizeGet";
- this.lblPixelSizeGet.Size = new System.Drawing.Size(188, 33);
- this.lblPixelSizeGet.TabIndex = 46;
- this.lblPixelSizeGet.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // btnTiltCorr
- //
- this.btnTiltCorr.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnTiltCorr.Location = new System.Drawing.Point(591, 120);
- this.btnTiltCorr.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnTiltCorr.Name = "btnTiltCorr";
- this.btnTiltCorr.Size = new System.Drawing.Size(144, 76);
- this.btnTiltCorr.TabIndex = 55;
- this.btnTiltCorr.Text = "电子束校正";
- this.btnTiltCorr.UseVisualStyleBackColor = true;
- this.btnTiltCorr.Click += new System.EventHandler(this.btnTiltCorr_Click);
- //
- // btnSEM
- //
- this.btnSEM.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnSEM.Location = new System.Drawing.Point(13, 10);
- this.btnSEM.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnSEM.Name = "btnSEM";
- this.btnSEM.Size = new System.Drawing.Size(144, 41);
- this.btnSEM.TabIndex = 2;
- this.btnSEM.Text = "SEM模式";
- this.btnSEM.UseVisualStyleBackColor = true;
- this.btnSEM.Click += new System.EventHandler(this.btnSEM_Click);
- //
- // panelStage
- //
- this.panelStage.Controls.Add(this.btnDRSet);
- this.panelStage.Controls.Add(this.txtDRSet);
- this.panelStage.Controls.Add(this.label83);
- this.panelStage.Controls.Add(this.pictureBox2);
- this.panelStage.Controls.Add(this.pictureBox1);
- this.panelStage.Controls.Add(this.btnWriteXml);
- this.panelStage.Controls.Add(this.btnAbort);
- this.panelStage.Controls.Add(this.btnReadXml);
- this.panelStage.Controls.Add(this.btnMoveXY);
- this.panelStage.Controls.Add(this.label24);
- this.panelStage.Controls.Add(this.btnGetStagePosition);
- this.panelStage.Controls.Add(this.label21);
- this.panelStage.Controls.Add(this.btnStageSetM);
- this.panelStage.Controls.Add(this.btnStageGetX);
- this.panelStage.Controls.Add(this.txtStageM);
- this.panelStage.Controls.Add(this.lblStageX);
- this.panelStage.Controls.Add(this.lblStageM);
- this.panelStage.Controls.Add(this.txtStageX);
- this.panelStage.Controls.Add(this.label10);
- this.panelStage.Controls.Add(this.btnStageSetX);
- this.panelStage.Controls.Add(this.btnStageGetM);
- this.panelStage.Controls.Add(this.btnStageGetY);
- this.panelStage.Controls.Add(this.btnStageSetR);
- this.panelStage.Controls.Add(this.label19);
- this.panelStage.Controls.Add(this.txtStageR);
- this.panelStage.Controls.Add(this.lblStageY);
- this.panelStage.Controls.Add(this.lblStageR);
- this.panelStage.Controls.Add(this.txtStageY);
- this.panelStage.Controls.Add(this.label13);
- this.panelStage.Controls.Add(this.btnStageSetY);
- this.panelStage.Controls.Add(this.btnStageGetR);
- this.panelStage.Controls.Add(this.btnStageGetZ);
- this.panelStage.Controls.Add(this.btnStageSetT);
- this.panelStage.Controls.Add(this.label17);
- this.panelStage.Controls.Add(this.txtStageT);
- this.panelStage.Controls.Add(this.lblStageZ);
- this.panelStage.Controls.Add(this.lblStageT);
- this.panelStage.Controls.Add(this.txtStageZ);
- this.panelStage.Controls.Add(this.label15);
- this.panelStage.Controls.Add(this.btnStageSetZ);
- this.panelStage.Controls.Add(this.btnStageGetT);
- this.panelStage.Dock = System.Windows.Forms.DockStyle.Right;
- this.panelStage.Location = new System.Drawing.Point(783, 3);
- this.panelStage.Name = "panelStage";
- this.panelStage.Size = new System.Drawing.Size(575, 565);
- this.panelStage.TabIndex = 21;
- //
- // btnDRSet
- //
- this.btnDRSet.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnDRSet.Location = new System.Drawing.Point(350, 301);
- this.btnDRSet.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnDRSet.Name = "btnDRSet";
- this.btnDRSet.Size = new System.Drawing.Size(79, 34);
- this.btnDRSet.TabIndex = 93;
- this.btnDRSet.Text = "Set";
- this.btnDRSet.UseVisualStyleBackColor = true;
- this.btnDRSet.Click += new System.EventHandler(this.btnDRSet_Click);
- //
- // txtDRSet
- //
- this.txtDRSet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtDRSet.Location = new System.Drawing.Point(240, 302);
- this.txtDRSet.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtDRSet.Name = "txtDRSet";
- this.txtDRSet.Size = new System.Drawing.Size(100, 30);
- this.txtDRSet.TabIndex = 92;
- this.txtDRSet.Text = "0";
- this.txtDRSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label83
- //
- this.label83.AutoSize = true;
- this.label83.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label83.Location = new System.Drawing.Point(54, 304);
- this.label83.Name = "label83";
- this.label83.Size = new System.Drawing.Size(152, 27);
- this.label83.TabIndex = 91;
- this.label83.Text = "样品台 D R轴:";
- //
- // pictureBox2
- //
- this.pictureBox2.Location = new System.Drawing.Point(309, 381);
- this.pictureBox2.Name = "pictureBox2";
- this.pictureBox2.Size = new System.Drawing.Size(260, 178);
- this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
- this.pictureBox2.TabIndex = 90;
- this.pictureBox2.TabStop = false;
- //
- // pictureBox1
- //
- this.pictureBox1.Location = new System.Drawing.Point(43, 381);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(260, 178);
- this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
- this.pictureBox1.TabIndex = 89;
- this.pictureBox1.TabStop = false;
- //
- // btnAbort
- //
- this.btnAbort.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAbort.Location = new System.Drawing.Point(407, 337);
- this.btnAbort.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnAbort.Name = "btnAbort";
- this.btnAbort.Size = new System.Drawing.Size(144, 41);
- this.btnAbort.TabIndex = 88;
- this.btnAbort.Text = "急停";
- this.btnAbort.UseVisualStyleBackColor = true;
- this.btnAbort.Click += new System.EventHandler(this.btnAbort_Click);
- //
- // btnMoveXY
- //
- this.btnMoveXY.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnMoveXY.Location = new System.Drawing.Point(257, 337);
- this.btnMoveXY.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnMoveXY.Name = "btnMoveXY";
- this.btnMoveXY.Size = new System.Drawing.Size(144, 41);
- this.btnMoveXY.TabIndex = 83;
- this.btnMoveXY.Text = "移动XY";
- this.btnMoveXY.UseVisualStyleBackColor = true;
- this.btnMoveXY.Click += new System.EventHandler(this.btnMoveXY_Click);
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Font = new System.Drawing.Font("微软雅黑", 16.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label24.Location = new System.Drawing.Point(278, 15);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(101, 37);
- this.label24.TabIndex = 82;
- this.label24.Text = "样品台";
- //
- // tabControl1
- //
- this.tabControl1.Controls.Add(this.tabPage1);
- this.tabControl1.Controls.Add(this.tabPage2);
- this.tabControl1.Controls.Add(this.tabPage3);
- this.tabControl1.Controls.Add(this.tabPage4);
- this.tabControl1.Controls.Add(this.tabPage5);
- this.tabControl1.Controls.Add(this.tabPage6);
- this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tabControl1.Location = new System.Drawing.Point(0, 0);
- this.tabControl1.Name = "tabControl1";
- this.tabControl1.SelectedIndex = 0;
- this.tabControl1.Size = new System.Drawing.Size(1369, 600);
- this.tabControl1.TabIndex = 22;
- //
- // tabPage1
- //
- this.tabPage1.Controls.Add(this.panelControl);
- this.tabPage1.Controls.Add(this.panelStage);
- this.tabPage1.Location = new System.Drawing.Point(4, 25);
- this.tabPage1.Name = "tabPage1";
- this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage1.Size = new System.Drawing.Size(1361, 571);
- this.tabPage1.TabIndex = 0;
- this.tabPage1.Text = "SEM+FIB";
- this.tabPage1.UseVisualStyleBackColor = true;
- //
- // tabPage2
- //
- this.tabPage2.Controls.Add(this.label81);
- this.tabPage2.Controls.Add(this.label79);
- this.tabPage2.Controls.Add(this.lblstate8);
- this.tabPage2.Controls.Add(this.label84);
- this.tabPage2.Controls.Add(this.lblMag2);
- this.tabPage2.Controls.Add(this.label80);
- this.tabPage2.Controls.Add(this.lblMag1);
- this.tabPage2.Controls.Add(this.label82);
- this.tabPage2.Controls.Add(this.btnPost8);
- this.tabPage2.Controls.Add(this.txtfirm);
- this.tabPage2.Controls.Add(this.txtTypee);
- this.tabPage2.Controls.Add(this.btntest);
- this.tabPage2.Controls.Add(this.txtaddr2);
- this.tabPage2.Controls.Add(this.txtaddr);
- this.tabPage2.Controls.Add(this.lbllocationy2);
- this.tabPage2.Controls.Add(this.label71);
- this.tabPage2.Controls.Add(this.lbllocationx2);
- this.tabPage2.Controls.Add(this.label75);
- this.tabPage2.Controls.Add(this.lblstate9);
- this.tabPage2.Controls.Add(this.label47);
- this.tabPage2.Controls.Add(this.lblcenter2);
- this.tabPage2.Controls.Add(this.label49);
- this.tabPage2.Controls.Add(this.lblcenter1);
- this.tabPage2.Controls.Add(this.label51);
- this.tabPage2.Controls.Add(this.lblstate7);
- this.tabPage2.Controls.Add(this.label53);
- this.tabPage2.Controls.Add(this.lbldirection2);
- this.tabPage2.Controls.Add(this.label55);
- this.tabPage2.Controls.Add(this.lbldegree2);
- this.tabPage2.Controls.Add(this.label57);
- this.tabPage2.Controls.Add(this.lblstigpath);
- this.tabPage2.Controls.Add(this.label45);
- this.tabPage2.Controls.Add(this.lblfocuspath);
- this.tabPage2.Controls.Add(this.label43);
- this.tabPage2.Controls.Add(this.lblstate4);
- this.tabPage2.Controls.Add(this.label37);
- this.tabPage2.Controls.Add(this.lbltopcy);
- this.tabPage2.Controls.Add(this.label39);
- this.tabPage2.Controls.Add(this.lbltopcx);
- this.tabPage2.Controls.Add(this.label41);
- this.tabPage2.Controls.Add(this.lblstate3);
- this.tabPage2.Controls.Add(this.label35);
- this.tabPage2.Controls.Add(this.lblstate2);
- this.tabPage2.Controls.Add(this.label27);
- this.tabPage2.Controls.Add(this.lbllocationy1);
- this.tabPage2.Controls.Add(this.label31);
- this.tabPage2.Controls.Add(this.lbllocationx1);
- this.tabPage2.Controls.Add(this.label33);
- this.tabPage2.Controls.Add(this.btnPost9);
- this.tabPage2.Controls.Add(this.btnPost7);
- this.tabPage2.Controls.Add(this.btnPost6);
- this.tabPage2.Controls.Add(this.btnPost5);
- this.tabPage2.Controls.Add(this.btnPost4);
- this.tabPage2.Controls.Add(this.btnPost3);
- this.tabPage2.Controls.Add(this.btnPost2);
- this.tabPage2.Controls.Add(this.lblstate1);
- this.tabPage2.Controls.Add(this.label30);
- this.tabPage2.Controls.Add(this.lbldirection1);
- this.tabPage2.Controls.Add(this.label28);
- this.tabPage2.Controls.Add(this.lbldegree1);
- this.tabPage2.Controls.Add(this.label25);
- this.tabPage2.Controls.Add(this.btnPost1);
- this.tabPage2.Location = new System.Drawing.Point(4, 25);
- this.tabPage2.Name = "tabPage2";
- this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage2.Size = new System.Drawing.Size(1361, 571);
- this.tabPage2.TabIndex = 1;
- this.tabPage2.Text = "POST";
- this.tabPage2.UseVisualStyleBackColor = true;
- //
- // label81
- //
- this.label81.AutoSize = true;
- this.label81.Location = new System.Drawing.Point(341, 204);
- this.label81.Name = "label81";
- this.label81.Size = new System.Drawing.Size(37, 15);
- this.label81.TabIndex = 112;
- this.label81.Text = "厂商";
- //
- // label79
- //
- this.label79.AutoSize = true;
- this.label79.Location = new System.Drawing.Point(341, 121);
- this.label79.Name = "label79";
- this.label79.Size = new System.Drawing.Size(67, 15);
- this.label79.TabIndex = 111;
- this.label79.Text = "样品类型";
- //
- // lblstate8
- //
- this.lblstate8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblstate8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblstate8.Location = new System.Drawing.Point(1182, 456);
- this.lblstate8.Name = "lblstate8";
- this.lblstate8.Size = new System.Drawing.Size(112, 27);
- this.lblstate8.TabIndex = 110;
- //
- // label84
- //
- this.label84.AutoSize = true;
- this.label84.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label84.Location = new System.Drawing.Point(1053, 456);
- this.label84.Name = "label84";
- this.label84.Size = new System.Drawing.Size(92, 27);
- this.label84.TabIndex = 109;
- this.label84.Text = "成功失败";
- //
- // lblMag2
- //
- this.lblMag2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblMag2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblMag2.Location = new System.Drawing.Point(859, 480);
- this.lblMag2.Name = "lblMag2";
- this.lblMag2.Size = new System.Drawing.Size(112, 27);
- this.lblMag2.TabIndex = 108;
- //
- // label80
- //
- this.label80.AutoSize = true;
- this.label80.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label80.Location = new System.Drawing.Point(730, 481);
- this.label80.Name = "label80";
- this.label80.Size = new System.Drawing.Size(76, 27);
- this.label80.TabIndex = 107;
- this.label80.Text = "Mag2:";
- //
- // lblMag1
- //
- this.lblMag1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblMag1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblMag1.Location = new System.Drawing.Point(859, 441);
- this.lblMag1.Name = "lblMag1";
- this.lblMag1.Size = new System.Drawing.Size(112, 27);
- this.lblMag1.TabIndex = 106;
- //
- // label82
- //
- this.label82.AutoSize = true;
- this.label82.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label82.Location = new System.Drawing.Point(730, 441);
- this.label82.Name = "label82";
- this.label82.Size = new System.Drawing.Size(90, 27);
- this.label82.TabIndex = 105;
- this.label82.Text = "Mag1:";
- //
- // btnPost8
- //
- this.btnPost8.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPost8.Location = new System.Drawing.Point(40, 435);
- this.btnPost8.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnPost8.Name = "btnPost8";
- this.btnPost8.Size = new System.Drawing.Size(275, 72);
- this.btnPost8.TabIndex = 104;
- this.btnPost8.Text = "计算两个测量区域坐标";
- this.btnPost8.UseVisualStyleBackColor = true;
- this.btnPost8.Click += new System.EventHandler(this.btnPost8_Click);
- //
- // txtfirm
- //
- this.txtfirm.Location = new System.Drawing.Point(344, 222);
- this.txtfirm.Name = "txtfirm";
- this.txtfirm.Size = new System.Drawing.Size(50, 25);
- this.txtfirm.TabIndex = 103;
- this.txtfirm.Text = "LG";
- //
- // txtTypee
- //
- this.txtTypee.Location = new System.Drawing.Point(344, 142);
- this.txtTypee.Name = "txtTypee";
- this.txtTypee.Size = new System.Drawing.Size(50, 25);
- this.txtTypee.TabIndex = 102;
- this.txtTypee.Text = "1";
- //
- // btntest
- //
- this.btntest.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btntest.Location = new System.Drawing.Point(321, 26);
- this.btntest.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btntest.Name = "btntest";
- this.btntest.Size = new System.Drawing.Size(101, 41);
- this.btntest.TabIndex = 101;
- this.btntest.Text = "复制图片";
- this.btntest.UseVisualStyleBackColor = true;
- this.btntest.Click += new System.EventHandler(this.btntest_Click);
- //
- // txtaddr2
- //
- this.txtaddr2.Location = new System.Drawing.Point(446, 153);
- this.txtaddr2.Multiline = true;
- this.txtaddr2.Name = "txtaddr2";
- this.txtaddr2.Size = new System.Drawing.Size(556, 48);
- this.txtaddr2.TabIndex = 100;
- this.txtaddr2.Text = "img_path2的图像路径";
- //
- // txtaddr
- //
- this.txtaddr.Location = new System.Drawing.Point(446, 6);
- this.txtaddr.Name = "txtaddr";
- this.txtaddr.Size = new System.Drawing.Size(848, 25);
- this.txtaddr.TabIndex = 99;
- this.txtaddr.Text = "img_path的图路径";
- //
- // lbllocationy2
- //
- this.lbllocationy2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lbllocationy2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lbllocationy2.Location = new System.Drawing.Point(859, 109);
- this.lbllocationy2.Name = "lbllocationy2";
- this.lbllocationy2.Size = new System.Drawing.Size(112, 27);
- this.lbllocationy2.TabIndex = 98;
- //
- // label71
- //
- this.label71.AutoSize = true;
- this.label71.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label71.Location = new System.Drawing.Point(730, 109);
- this.label71.Name = "label71";
- this.label71.Size = new System.Drawing.Size(129, 27);
- this.label71.TabIndex = 97;
- this.label71.Text = "LocationY2:";
- //
- // lbllocationx2
- //
- this.lbllocationx2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lbllocationx2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lbllocationx2.Location = new System.Drawing.Point(570, 109);
- this.lbllocationx2.Name = "lbllocationx2";
- this.lbllocationx2.Size = new System.Drawing.Size(112, 27);
- this.lbllocationx2.TabIndex = 96;
- //
- // label75
- //
- this.label75.AutoSize = true;
- this.label75.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label75.Location = new System.Drawing.Point(441, 109);
- this.label75.Name = "label75";
- this.label75.Size = new System.Drawing.Size(144, 27);
- this.label75.TabIndex = 95;
- this.label75.Text = "LocationX2:";
- //
- // lblstate9
- //
- this.lblstate9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblstate9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblstate9.Location = new System.Drawing.Point(1182, 530);
- this.lblstate9.Name = "lblstate9";
- this.lblstate9.Size = new System.Drawing.Size(112, 27);
- this.lblstate9.TabIndex = 94;
- //
- // label47
- //
- this.label47.AutoSize = true;
- this.label47.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label47.Location = new System.Drawing.Point(1053, 530);
- this.label47.Name = "label47";
- this.label47.Size = new System.Drawing.Size(92, 27);
- this.label47.TabIndex = 93;
- this.label47.Text = "成功失败";
- //
- // lblcenter2
- //
- this.lblcenter2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblcenter2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblcenter2.Location = new System.Drawing.Point(570, 479);
- this.lblcenter2.Name = "lblcenter2";
- this.lblcenter2.Size = new System.Drawing.Size(112, 27);
- this.lblcenter2.TabIndex = 92;
- //
- // label49
- //
- this.label49.AutoSize = true;
- this.label49.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label49.Location = new System.Drawing.Point(441, 480);
- this.label49.Name = "label49";
- this.label49.Size = new System.Drawing.Size(96, 27);
- this.label49.TabIndex = 91;
- this.label49.Text = "Center2:";
- //
- // lblcenter1
- //
- this.lblcenter1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblcenter1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblcenter1.Location = new System.Drawing.Point(570, 440);
- this.lblcenter1.Name = "lblcenter1";
- this.lblcenter1.Size = new System.Drawing.Size(112, 27);
- this.lblcenter1.TabIndex = 90;
- //
- // label51
- //
- this.label51.AutoSize = true;
- this.label51.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label51.Location = new System.Drawing.Point(441, 440);
- this.label51.Name = "label51";
- this.label51.Size = new System.Drawing.Size(110, 27);
- this.label51.TabIndex = 89;
- this.label51.Text = "Center1:";
- //
- // lblstate7
- //
- this.lblstate7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblstate7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblstate7.Location = new System.Drawing.Point(1182, 392);
- this.lblstate7.Name = "lblstate7";
- this.lblstate7.Size = new System.Drawing.Size(112, 27);
- this.lblstate7.TabIndex = 88;
- //
- // label53
- //
- this.label53.AutoSize = true;
- this.label53.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label53.Location = new System.Drawing.Point(1053, 392);
- this.label53.Name = "label53";
- this.label53.Size = new System.Drawing.Size(92, 27);
- this.label53.TabIndex = 87;
- this.label53.Text = "成功失败";
- //
- // lbldirection2
- //
- this.lbldirection2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lbldirection2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lbldirection2.Location = new System.Drawing.Point(859, 391);
- this.lbldirection2.Name = "lbldirection2";
- this.lbldirection2.Size = new System.Drawing.Size(112, 27);
- this.lbldirection2.TabIndex = 86;
- //
- // label55
- //
- this.label55.AutoSize = true;
- this.label55.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label55.Location = new System.Drawing.Point(730, 391);
- this.label55.Name = "label55";
- this.label55.Size = new System.Drawing.Size(92, 27);
- this.label55.TabIndex = 85;
- this.label55.Text = "顺逆时针";
- //
- // lbldegree2
- //
- this.lbldegree2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lbldegree2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lbldegree2.Location = new System.Drawing.Point(570, 390);
- this.lbldegree2.Name = "lbldegree2";
- this.lbldegree2.Size = new System.Drawing.Size(112, 27);
- this.lbldegree2.TabIndex = 84;
- //
- // label57
- //
- this.label57.AutoSize = true;
- this.label57.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label57.Location = new System.Drawing.Point(441, 390);
- this.label57.Name = "label57";
- this.label57.Size = new System.Drawing.Size(112, 27);
- this.label57.TabIndex = 83;
- this.label57.Text = "偏移角度:";
- //
- // lblstigpath
- //
- this.lblstigpath.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblstigpath.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblstigpath.Location = new System.Drawing.Point(570, 339);
- this.lblstigpath.Name = "lblstigpath";
- this.lblstigpath.Size = new System.Drawing.Size(724, 27);
- this.lblstigpath.TabIndex = 82;
- //
- // label45
- //
- this.label45.AutoSize = true;
- this.label45.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label45.Location = new System.Drawing.Point(441, 339);
- this.label45.Name = "label45";
- this.label45.Size = new System.Drawing.Size(112, 27);
- this.label45.TabIndex = 81;
- this.label45.Text = "图像路径:";
- //
- // lblfocuspath
- //
- this.lblfocuspath.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblfocuspath.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblfocuspath.Location = new System.Drawing.Point(570, 282);
- this.lblfocuspath.Name = "lblfocuspath";
- this.lblfocuspath.Size = new System.Drawing.Size(724, 27);
- this.lblfocuspath.TabIndex = 80;
- //
- // label43
- //
- this.label43.AutoSize = true;
- this.label43.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label43.Location = new System.Drawing.Point(441, 282);
- this.label43.Name = "label43";
- this.label43.Size = new System.Drawing.Size(112, 27);
- this.label43.TabIndex = 79;
- this.label43.Text = "图像路径:";
- //
- // lblstate4
- //
- this.lblstate4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblstate4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblstate4.Location = new System.Drawing.Point(1182, 220);
- this.lblstate4.Name = "lblstate4";
- this.lblstate4.Size = new System.Drawing.Size(112, 27);
- this.lblstate4.TabIndex = 78;
- //
- // label37
- //
- this.label37.AutoSize = true;
- this.label37.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label37.Location = new System.Drawing.Point(1053, 220);
- this.label37.Name = "label37";
- this.label37.Size = new System.Drawing.Size(92, 27);
- this.label37.TabIndex = 77;
- this.label37.Text = "成功失败";
- //
- // lbltopcy
- //
- this.lbltopcy.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lbltopcy.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lbltopcy.Location = new System.Drawing.Point(859, 220);
- this.lbltopcy.Name = "lbltopcy";
- this.lbltopcy.Size = new System.Drawing.Size(112, 27);
- this.lbltopcy.TabIndex = 76;
- //
- // label39
- //
- this.label39.AutoSize = true;
- this.label39.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label39.Location = new System.Drawing.Point(730, 220);
- this.label39.Name = "label39";
- this.label39.Size = new System.Drawing.Size(101, 27);
- this.label39.TabIndex = 75;
- this.label39.Text = "Top_C-Y:";
- //
- // lbltopcx
- //
- this.lbltopcx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lbltopcx.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lbltopcx.Location = new System.Drawing.Point(570, 220);
- this.lbltopcx.Name = "lbltopcx";
- this.lbltopcx.Size = new System.Drawing.Size(112, 27);
- this.lbltopcx.TabIndex = 74;
- //
- // label41
- //
- this.label41.AutoSize = true;
- this.label41.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label41.Location = new System.Drawing.Point(441, 220);
- this.label41.Name = "label41";
- this.label41.Size = new System.Drawing.Size(116, 27);
- this.label41.TabIndex = 73;
- this.label41.Text = "Top_C-X:";
- //
- // lblstate3
- //
- this.lblstate3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblstate3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblstate3.Location = new System.Drawing.Point(1182, 163);
- this.lblstate3.Name = "lblstate3";
- this.lblstate3.Size = new System.Drawing.Size(112, 27);
- this.lblstate3.TabIndex = 72;
- //
- // label35
- //
- this.label35.AutoSize = true;
- this.label35.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label35.Location = new System.Drawing.Point(1053, 163);
- this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(92, 27);
- this.label35.TabIndex = 71;
- this.label35.Text = "成功失败";
- //
- // lblstate2
- //
- this.lblstate2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblstate2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblstate2.Location = new System.Drawing.Point(1182, 82);
- this.lblstate2.Name = "lblstate2";
- this.lblstate2.Size = new System.Drawing.Size(112, 27);
- this.lblstate2.TabIndex = 70;
- //
- // label27
- //
- this.label27.AutoSize = true;
- this.label27.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label27.Location = new System.Drawing.Point(1053, 82);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(92, 27);
- this.label27.TabIndex = 69;
- this.label27.Text = "成功失败";
- //
- // lbllocationy1
- //
- this.lbllocationy1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lbllocationy1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lbllocationy1.Location = new System.Drawing.Point(859, 82);
- this.lbllocationy1.Name = "lbllocationy1";
- this.lbllocationy1.Size = new System.Drawing.Size(112, 27);
- this.lbllocationy1.TabIndex = 68;
- //
- // label31
- //
- this.label31.AutoSize = true;
- this.label31.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label31.Location = new System.Drawing.Point(730, 82);
- this.label31.Name = "label31";
- this.label31.Size = new System.Drawing.Size(129, 27);
- this.label31.TabIndex = 67;
- this.label31.Text = "LocationY1:";
- //
- // lbllocationx1
- //
- this.lbllocationx1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lbllocationx1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lbllocationx1.Location = new System.Drawing.Point(570, 82);
- this.lbllocationx1.Name = "lbllocationx1";
- this.lbllocationx1.Size = new System.Drawing.Size(112, 27);
- this.lbllocationx1.TabIndex = 66;
- //
- // label33
- //
- this.label33.AutoSize = true;
- this.label33.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label33.Location = new System.Drawing.Point(441, 82);
- this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(144, 27);
- this.label33.TabIndex = 65;
- this.label33.Text = "LocationX1:";
- //
- // btnPost9
- //
- this.btnPost9.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPost9.Location = new System.Drawing.Point(40, 518);
- this.btnPost9.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnPost9.Name = "btnPost9";
- this.btnPost9.Size = new System.Drawing.Size(275, 50);
- this.btnPost9.TabIndex = 64;
- this.btnPost9.Text = "测量尺寸";
- this.btnPost9.UseVisualStyleBackColor = true;
- this.btnPost9.Click += new System.EventHandler(this.btnPost9_Click);
- //
- // btnPost7
- //
- this.btnPost7.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPost7.Location = new System.Drawing.Point(40, 386);
- this.btnPost7.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnPost7.Name = "btnPost7";
- this.btnPost7.Size = new System.Drawing.Size(275, 43);
- this.btnPost7.TabIndex = 63;
- this.btnPost7.Text = "计算切割面区域偏移角度及方向";
- this.btnPost7.UseVisualStyleBackColor = true;
- this.btnPost7.Click += new System.EventHandler(this.btnPost7_Click);
- //
- // btnPost6
- //
- this.btnPost6.Enabled = false;
- this.btnPost6.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPost6.Location = new System.Drawing.Point(40, 328);
- this.btnPost6.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnPost6.Name = "btnPost6";
- this.btnPost6.Size = new System.Drawing.Size(275, 50);
- this.btnPost6.TabIndex = 62;
- this.btnPost6.Text = "自动消像散";
- this.btnPost6.UseVisualStyleBackColor = true;
- this.btnPost6.Click += new System.EventHandler(this.btnPost6_Click);
- //
- // btnPost5
- //
- this.btnPost5.Enabled = false;
- this.btnPost5.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPost5.Location = new System.Drawing.Point(40, 271);
- this.btnPost5.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnPost5.Name = "btnPost5";
- this.btnPost5.Size = new System.Drawing.Size(275, 50);
- this.btnPost5.TabIndex = 61;
- this.btnPost5.Text = "自动对焦";
- this.btnPost5.UseVisualStyleBackColor = true;
- this.btnPost5.Click += new System.EventHandler(this.btnPost5_Click);
- //
- // btnPost4
- //
- this.btnPost4.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPost4.Location = new System.Drawing.Point(40, 206);
- this.btnPost4.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnPost4.Name = "btnPost4";
- this.btnPost4.Size = new System.Drawing.Size(275, 57);
- this.btnPost4.TabIndex = 60;
- this.btnPost4.Text = "计算切割后图像梯形区域上边中心点坐标";
- this.btnPost4.UseVisualStyleBackColor = true;
- this.btnPost4.Click += new System.EventHandler(this.btnPost4_Click);
- //
- // btnPost3
- //
- this.btnPost3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPost3.Location = new System.Drawing.Point(40, 151);
- this.btnPost3.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnPost3.Name = "btnPost3";
- this.btnPost3.Size = new System.Drawing.Size(275, 50);
- this.btnPost3.TabIndex = 59;
- this.btnPost3.Text = "是否切割成功验证";
- this.btnPost3.UseVisualStyleBackColor = true;
- this.btnPost3.Click += new System.EventHandler(this.btnPost3_Click);
- //
- // btnPost2
- //
- this.btnPost2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPost2.Location = new System.Drawing.Point(40, 86);
- this.btnPost2.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnPost2.Name = "btnPost2";
- this.btnPost2.Size = new System.Drawing.Size(275, 50);
- this.btnPost2.TabIndex = 58;
- this.btnPost2.Text = "计算切割点位置";
- this.btnPost2.UseVisualStyleBackColor = true;
- this.btnPost2.Click += new System.EventHandler(this.btnPost2_Click);
- //
- // lblstate1
- //
- this.lblstate1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblstate1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblstate1.Location = new System.Drawing.Point(1182, 36);
- this.lblstate1.Name = "lblstate1";
- this.lblstate1.Size = new System.Drawing.Size(112, 27);
- this.lblstate1.TabIndex = 57;
- //
- // label30
- //
- this.label30.AutoSize = true;
- this.label30.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label30.Location = new System.Drawing.Point(1053, 36);
- this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(92, 27);
- this.label30.TabIndex = 56;
- this.label30.Text = "成功失败";
- //
- // lbldirection1
- //
- this.lbldirection1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lbldirection1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lbldirection1.Location = new System.Drawing.Point(859, 36);
- this.lbldirection1.Name = "lbldirection1";
- this.lbldirection1.Size = new System.Drawing.Size(112, 27);
- this.lbldirection1.TabIndex = 55;
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label28.Location = new System.Drawing.Point(730, 36);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(92, 27);
- this.label28.TabIndex = 54;
- this.label28.Text = "顺逆时针";
- //
- // lbldegree1
- //
- this.lbldegree1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lbldegree1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lbldegree1.Location = new System.Drawing.Point(570, 36);
- this.lbldegree1.Name = "lbldegree1";
- this.lbldegree1.Size = new System.Drawing.Size(112, 27);
- this.lbldegree1.TabIndex = 53;
- //
- // label25
- //
- this.label25.AutoSize = true;
- this.label25.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label25.Location = new System.Drawing.Point(441, 36);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(112, 27);
- this.label25.TabIndex = 52;
- this.label25.Text = "偏移角度:";
- //
- // btnPost1
- //
- this.btnPost1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPost1.Location = new System.Drawing.Point(40, 21);
- this.btnPost1.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnPost1.Name = "btnPost1";
- this.btnPost1.Size = new System.Drawing.Size(275, 50);
- this.btnPost1.TabIndex = 51;
- this.btnPost1.Text = "计算原始图像偏移角度及方向";
- this.btnPost1.UseVisualStyleBackColor = true;
- this.btnPost1.Click += new System.EventHandler(this.btnPost1_Click);
- //
- // tabPage3
- //
- this.tabPage3.Controls.Add(this.textBox2);
- this.tabPage3.Controls.Add(this.textBox1);
- this.tabPage3.Controls.Add(this.button6);
- this.tabPage3.Controls.Add(this.button5);
- this.tabPage3.Controls.Add(this.button3);
- this.tabPage3.Controls.Add(this.cbbWPZD);
- this.tabPage3.Controls.Add(this.cbbWPZF);
- this.tabPage3.Controls.Add(this.cbbWQGD);
- this.tabPage3.Controls.Add(this.cbbWQGF);
- this.tabPage3.Controls.Add(this.cbbWLZ);
- this.tabPage3.Controls.Add(this.cbbWXZ);
- this.tabPage3.Controls.Add(this.cbbWCS);
- this.tabPage3.Controls.Add(this.cbbWYP);
- this.tabPage3.Controls.Add(this.txtRXZ);
- this.tabPage3.Controls.Add(this.label26);
- this.tabPage3.Controls.Add(this.txtRPZD);
- this.tabPage3.Controls.Add(this.label29);
- this.tabPage3.Controls.Add(this.txtRPZF);
- this.tabPage3.Controls.Add(this.label34);
- this.tabPage3.Controls.Add(this.txtRQGD);
- this.tabPage3.Controls.Add(this.label36);
- this.tabPage3.Controls.Add(this.txtRQGF);
- this.tabPage3.Controls.Add(this.label40);
- this.tabPage3.Controls.Add(this.txtRLZ);
- this.tabPage3.Controls.Add(this.label44);
- this.tabPage3.Controls.Add(this.chkRIsP);
- this.tabPage3.Controls.Add(this.label52);
- this.tabPage3.Controls.Add(this.txtRYP);
- this.tabPage3.Controls.Add(this.txtRCS);
- this.tabPage3.Controls.Add(this.txtRFIBF);
- this.tabPage3.Controls.Add(this.txtRPTF);
- this.tabPage3.Controls.Add(this.label60);
- this.tabPage3.Controls.Add(this.label63);
- this.tabPage3.Controls.Add(this.label64);
- this.tabPage3.Controls.Add(this.label65);
- this.tabPage3.Controls.Add(this.chkRPT);
- this.tabPage3.Controls.Add(this.label66);
- this.tabPage3.Controls.Add(this.label58);
- this.tabPage3.Controls.Add(this.label50);
- this.tabPage3.Controls.Add(this.label54);
- this.tabPage3.Controls.Add(this.label46);
- this.tabPage3.Controls.Add(this.label42);
- this.tabPage3.Controls.Add(this.label38);
- this.tabPage3.Controls.Add(this.chkWIsP);
- this.tabPage3.Controls.Add(this.label32);
- this.tabPage3.Controls.Add(this.txtWFIBF);
- this.tabPage3.Controls.Add(this.txtWPTF);
- this.tabPage3.Controls.Add(this.label48);
- this.tabPage3.Controls.Add(this.label56);
- this.tabPage3.Controls.Add(this.label59);
- this.tabPage3.Controls.Add(this.label61);
- this.tabPage3.Controls.Add(this.chkWPT);
- this.tabPage3.Controls.Add(this.label62);
- this.tabPage3.Controls.Add(this.btnReadConfig);
- this.tabPage3.Controls.Add(this.btnCreateConfig);
- this.tabPage3.Location = new System.Drawing.Point(4, 25);
- this.tabPage3.Name = "tabPage3";
- this.tabPage3.Size = new System.Drawing.Size(1361, 571);
- this.tabPage3.TabIndex = 2;
- this.tabPage3.Text = "参数文件设计";
- this.tabPage3.UseVisualStyleBackColor = true;
- //
- // textBox2
- //
- this.textBox2.Location = new System.Drawing.Point(152, 394);
- this.textBox2.Name = "textBox2";
- this.textBox2.Size = new System.Drawing.Size(57, 25);
- this.textBox2.TabIndex = 80;
- this.textBox2.Text = "34";
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(77, 394);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(57, 25);
- this.textBox1.TabIndex = 79;
- this.textBox1.Text = "12";
- //
- // button6
- //
- this.button6.Location = new System.Drawing.Point(77, 425);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(132, 54);
- this.button6.TabIndex = 78;
- this.button6.Text = "坐标变换";
- this.button6.UseVisualStyleBackColor = true;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // button5
- //
- this.button5.Location = new System.Drawing.Point(77, 276);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(132, 93);
- this.button5.TabIndex = 77;
- this.button5.Text = "修改XML文件节点";
- this.button5.UseVisualStyleBackColor = true;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button3
- //
- this.button3.Location = new System.Drawing.Point(77, 149);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(132, 93);
- this.button3.TabIndex = 76;
- this.button3.Text = "拉直";
- this.button3.UseVisualStyleBackColor = true;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // cbbWPZD
- //
- this.cbbWPZD.FormattingEnabled = true;
- this.cbbWPZD.Items.AddRange(new object[] {
- "1000",
- "1500",
- "2000",
- "2500",
- "3000"});
- this.cbbWPZD.Location = new System.Drawing.Point(1098, 155);
- this.cbbWPZD.Name = "cbbWPZD";
- this.cbbWPZD.Size = new System.Drawing.Size(121, 23);
- this.cbbWPZD.TabIndex = 75;
- this.cbbWPZD.Text = "2000";
- //
- // cbbWPZF
- //
- this.cbbWPZF.FormattingEnabled = true;
- this.cbbWPZF.Items.AddRange(new object[] {
- "600",
- "1000",
- "2000",
- "10000"});
- this.cbbWPZF.Location = new System.Drawing.Point(780, 155);
- this.cbbWPZF.Name = "cbbWPZF";
- this.cbbWPZF.Size = new System.Drawing.Size(121, 23);
- this.cbbWPZF.TabIndex = 74;
- this.cbbWPZF.Text = "600";
- //
- // cbbWQGD
- //
- this.cbbWQGD.FormattingEnabled = true;
- this.cbbWQGD.Items.AddRange(new object[] {
- "1000",
- "1500",
- "2000",
- "2500",
- "3000"});
- this.cbbWQGD.Location = new System.Drawing.Point(1098, 97);
- this.cbbWQGD.Name = "cbbWQGD";
- this.cbbWQGD.Size = new System.Drawing.Size(121, 23);
- this.cbbWQGD.TabIndex = 73;
- this.cbbWQGD.Text = "2000";
- //
- // cbbWQGF
- //
- this.cbbWQGF.FormattingEnabled = true;
- this.cbbWQGF.Items.AddRange(new object[] {
- "600",
- "1000",
- "2000",
- "10000"});
- this.cbbWQGF.Location = new System.Drawing.Point(780, 97);
- this.cbbWQGF.Name = "cbbWQGF";
- this.cbbWQGF.Size = new System.Drawing.Size(121, 23);
- this.cbbWQGF.TabIndex = 72;
- this.cbbWQGF.Text = "600";
- //
- // cbbWLZ
- //
- this.cbbWLZ.FormattingEnabled = true;
- this.cbbWLZ.Items.AddRange(new object[] {
- "600",
- "1000",
- "2000",
- "10000"});
- this.cbbWLZ.Location = new System.Drawing.Point(419, 97);
- this.cbbWLZ.Name = "cbbWLZ";
- this.cbbWLZ.Size = new System.Drawing.Size(121, 23);
- this.cbbWLZ.TabIndex = 71;
- this.cbbWLZ.Text = "600";
- //
- // cbbWXZ
- //
- this.cbbWXZ.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbbWXZ.FormattingEnabled = true;
- this.cbbWXZ.Items.AddRange(new object[] {
- "截面观测",
- "表面观测"});
- this.cbbWXZ.Location = new System.Drawing.Point(419, 155);
- this.cbbWXZ.Name = "cbbWXZ";
- this.cbbWXZ.Size = new System.Drawing.Size(121, 23);
- this.cbbWXZ.TabIndex = 70;
- //
- // cbbWCS
- //
- this.cbbWCS.FormattingEnabled = true;
- this.cbbWCS.Location = new System.Drawing.Point(721, 224);
- this.cbbWCS.Name = "cbbWCS";
- this.cbbWCS.Size = new System.Drawing.Size(121, 23);
- this.cbbWCS.TabIndex = 69;
- //
- // cbbWYP
- //
- this.cbbWYP.FormattingEnabled = true;
- this.cbbWYP.Location = new System.Drawing.Point(419, 224);
- this.cbbWYP.Name = "cbbWYP";
- this.cbbWYP.Size = new System.Drawing.Size(121, 23);
- this.cbbWYP.TabIndex = 68;
- //
- // txtRXZ
- //
- this.txtRXZ.Location = new System.Drawing.Point(428, 422);
- this.txtRXZ.Name = "txtRXZ";
- this.txtRXZ.Size = new System.Drawing.Size(91, 25);
- this.txtRXZ.TabIndex = 67;
- //
- // label26
- //
- this.label26.AutoSize = true;
- this.label26.Location = new System.Drawing.Point(281, 425);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(82, 15);
- this.label26.TabIndex = 66;
- this.label26.Text = "校正角度:";
- //
- // txtRPZD
- //
- this.txtRPZD.Location = new System.Drawing.Point(1098, 422);
- this.txtRPZD.Name = "txtRPZD";
- this.txtRPZD.Size = new System.Drawing.Size(145, 25);
- this.txtRPZD.TabIndex = 65;
- //
- // label29
- //
- this.label29.AutoSize = true;
- this.label29.Location = new System.Drawing.Point(980, 425);
- this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(82, 15);
- this.label29.TabIndex = 64;
- this.label29.Text = "拍照电压:";
- //
- // txtRPZF
- //
- this.txtRPZF.Location = new System.Drawing.Point(780, 422);
- this.txtRPZF.Name = "txtRPZF";
- this.txtRPZF.Size = new System.Drawing.Size(145, 25);
- this.txtRPZF.TabIndex = 63;
- //
- // label34
- //
- this.label34.AutoSize = true;
- this.label34.Location = new System.Drawing.Point(632, 425);
- this.label34.Name = "label34";
- this.label34.Size = new System.Drawing.Size(112, 15);
- this.label34.TabIndex = 62;
- this.label34.Text = "拍照放大位数:";
- //
- // txtRQGD
- //
- this.txtRQGD.Location = new System.Drawing.Point(1098, 364);
- this.txtRQGD.Name = "txtRQGD";
- this.txtRQGD.Size = new System.Drawing.Size(145, 25);
- this.txtRQGD.TabIndex = 61;
- //
- // label36
- //
- this.label36.AutoSize = true;
- this.label36.Location = new System.Drawing.Point(980, 367);
- this.label36.Name = "label36";
- this.label36.Size = new System.Drawing.Size(112, 15);
- this.label36.TabIndex = 60;
- this.label36.Text = "定位切割电压:";
- //
- // txtRQGF
- //
- this.txtRQGF.Location = new System.Drawing.Point(780, 364);
- this.txtRQGF.Name = "txtRQGF";
- this.txtRQGF.Size = new System.Drawing.Size(145, 25);
- this.txtRQGF.TabIndex = 59;
- //
- // label40
- //
- this.label40.AutoSize = true;
- this.label40.Location = new System.Drawing.Point(632, 367);
- this.label40.Name = "label40";
- this.label40.Size = new System.Drawing.Size(142, 15);
- this.label40.TabIndex = 58;
- this.label40.Text = "定位切割放大位数:";
- //
- // txtRLZ
- //
- this.txtRLZ.Location = new System.Drawing.Point(428, 364);
- this.txtRLZ.Name = "txtRLZ";
- this.txtRLZ.Size = new System.Drawing.Size(145, 25);
- this.txtRLZ.TabIndex = 57;
- //
- // label44
- //
- this.label44.AutoSize = true;
- this.label44.Location = new System.Drawing.Point(280, 367);
- this.label44.Name = "label44";
- this.label44.Size = new System.Drawing.Size(142, 15);
- this.label44.TabIndex = 56;
- this.label44.Text = "拉直操作放大位数:";
- //
- // chkRIsP
- //
- this.chkRIsP.AutoSize = true;
- this.chkRIsP.Location = new System.Drawing.Point(386, 304);
- this.chkRIsP.Name = "chkRIsP";
- this.chkRIsP.Size = new System.Drawing.Size(18, 17);
- this.chkRIsP.TabIndex = 55;
- this.chkRIsP.UseVisualStyleBackColor = true;
- //
- // label52
- //
- this.label52.AutoSize = true;
- this.label52.Location = new System.Drawing.Point(280, 304);
- this.label52.Name = "label52";
- this.label52.Size = new System.Drawing.Size(97, 15);
- this.label52.TabIndex = 54;
- this.label52.Text = "是否仅拍照:";
- //
- // txtRYP
- //
- this.txtRYP.Location = new System.Drawing.Point(428, 491);
- this.txtRYP.Name = "txtRYP";
- this.txtRYP.Size = new System.Drawing.Size(91, 25);
- this.txtRYP.TabIndex = 53;
- //
- // txtRCS
- //
- this.txtRCS.Location = new System.Drawing.Point(721, 491);
- this.txtRCS.Name = "txtRCS";
- this.txtRCS.Size = new System.Drawing.Size(145, 25);
- this.txtRCS.TabIndex = 52;
- //
- // txtRFIBF
- //
- this.txtRFIBF.Location = new System.Drawing.Point(1098, 301);
- this.txtRFIBF.Name = "txtRFIBF";
- this.txtRFIBF.Size = new System.Drawing.Size(145, 25);
- this.txtRFIBF.TabIndex = 51;
- //
- // txtRPTF
- //
- this.txtRPTF.Location = new System.Drawing.Point(800, 301);
- this.txtRPTF.Name = "txtRPTF";
- this.txtRPTF.Size = new System.Drawing.Size(145, 25);
- this.txtRPTF.TabIndex = 50;
- //
- // label60
- //
- this.label60.AutoSize = true;
- this.label60.Location = new System.Drawing.Point(280, 494);
- this.label60.Name = "label60";
- this.label60.Size = new System.Drawing.Size(82, 15);
- this.label60.TabIndex = 49;
- this.label60.Text = "样品类型:";
- //
- // label63
- //
- this.label63.AutoSize = true;
- this.label63.Location = new System.Drawing.Point(633, 494);
- this.label63.Name = "label63";
- this.label63.Size = new System.Drawing.Size(52, 15);
- this.label63.TabIndex = 48;
- this.label63.Text = "厂商:";
- //
- // label64
- //
- this.label64.AutoSize = true;
- this.label64.Location = new System.Drawing.Point(992, 306);
- this.label64.Name = "label64";
- this.label64.Size = new System.Drawing.Size(100, 15);
- this.label64.TabIndex = 47;
- this.label64.Text = "FIBELY名称:";
- //
- // label65
- //
- this.label65.AutoSize = true;
- this.label65.Location = new System.Drawing.Point(688, 306);
- this.label65.Name = "label65";
- this.label65.Size = new System.Drawing.Size(92, 15);
- this.label65.TabIndex = 46;
- this.label65.Text = "PTELY文件:";
- //
- // chkRPT
- //
- this.chkRPT.AutoSize = true;
- this.chkRPT.Location = new System.Drawing.Point(591, 304);
- this.chkRPT.Name = "chkRPT";
- this.chkRPT.Size = new System.Drawing.Size(18, 17);
- this.chkRPT.TabIndex = 45;
- this.chkRPT.UseVisualStyleBackColor = true;
- //
- // label66
- //
- this.label66.AutoSize = true;
- this.label66.Location = new System.Drawing.Point(485, 304);
- this.label66.Name = "label66";
- this.label66.Size = new System.Drawing.Size(68, 15);
- this.label66.TabIndex = 44;
- this.label66.Text = "是否PT:";
- //
- // label58
- //
- this.label58.AutoSize = true;
- this.label58.Location = new System.Drawing.Point(281, 158);
- this.label58.Name = "label58";
- this.label58.Size = new System.Drawing.Size(82, 15);
- this.label58.TabIndex = 42;
- this.label58.Text = "校正角度:";
- //
- // label50
- //
- this.label50.AutoSize = true;
- this.label50.Location = new System.Drawing.Point(980, 158);
- this.label50.Name = "label50";
- this.label50.Size = new System.Drawing.Size(82, 15);
- this.label50.TabIndex = 40;
- this.label50.Text = "拍照电压:";
- //
- // label54
- //
- this.label54.AutoSize = true;
- this.label54.Location = new System.Drawing.Point(632, 158);
- this.label54.Name = "label54";
- this.label54.Size = new System.Drawing.Size(112, 15);
- this.label54.TabIndex = 38;
- this.label54.Text = "拍照放大位数:";
- //
- // label46
- //
- this.label46.AutoSize = true;
- this.label46.Location = new System.Drawing.Point(980, 100);
- this.label46.Name = "label46";
- this.label46.Size = new System.Drawing.Size(112, 15);
- this.label46.TabIndex = 36;
- this.label46.Text = "定位切割电压:";
- //
- // label42
- //
- this.label42.AutoSize = true;
- this.label42.Location = new System.Drawing.Point(632, 100);
- this.label42.Name = "label42";
- this.label42.Size = new System.Drawing.Size(142, 15);
- this.label42.TabIndex = 34;
- this.label42.Text = "定位切割放大位数:";
- //
- // label38
- //
- this.label38.AutoSize = true;
- this.label38.Location = new System.Drawing.Point(280, 100);
- this.label38.Name = "label38";
- this.label38.Size = new System.Drawing.Size(142, 15);
- this.label38.TabIndex = 32;
- this.label38.Text = "拉直操作放大位数:";
- //
- // chkWIsP
- //
- this.chkWIsP.AutoSize = true;
- this.chkWIsP.Location = new System.Drawing.Point(386, 37);
- this.chkWIsP.Name = "chkWIsP";
- this.chkWIsP.Size = new System.Drawing.Size(18, 17);
- this.chkWIsP.TabIndex = 31;
- this.chkWIsP.UseVisualStyleBackColor = true;
- //
- // label32
- //
- this.label32.AutoSize = true;
- this.label32.Location = new System.Drawing.Point(280, 37);
- this.label32.Name = "label32";
- this.label32.Size = new System.Drawing.Size(97, 15);
- this.label32.TabIndex = 30;
- this.label32.Text = "是否仅拍照:";
- //
- // txtWFIBF
- //
- this.txtWFIBF.Location = new System.Drawing.Point(1098, 34);
- this.txtWFIBF.Name = "txtWFIBF";
- this.txtWFIBF.Size = new System.Drawing.Size(145, 25);
- this.txtWFIBF.TabIndex = 26;
- this.txtWFIBF.Text = "Sample001";
- //
- // txtWPTF
- //
- this.txtWPTF.Location = new System.Drawing.Point(800, 34);
- this.txtWPTF.Name = "txtWPTF";
- this.txtWPTF.Size = new System.Drawing.Size(145, 25);
- this.txtWPTF.TabIndex = 25;
- this.txtWPTF.Text = "HOZ001";
- //
- // label48
- //
- this.label48.AutoSize = true;
- this.label48.Location = new System.Drawing.Point(280, 227);
- this.label48.Name = "label48";
- this.label48.Size = new System.Drawing.Size(82, 15);
- this.label48.TabIndex = 24;
- this.label48.Text = "样品类型:";
- //
- // label56
- //
- this.label56.AutoSize = true;
- this.label56.Location = new System.Drawing.Point(633, 227);
- this.label56.Name = "label56";
- this.label56.Size = new System.Drawing.Size(52, 15);
- this.label56.TabIndex = 20;
- this.label56.Text = "厂商:";
- //
- // label59
- //
- this.label59.AutoSize = true;
- this.label59.Location = new System.Drawing.Point(992, 39);
- this.label59.Name = "label59";
- this.label59.Size = new System.Drawing.Size(100, 15);
- this.label59.TabIndex = 18;
- this.label59.Text = "FIBELY名称:";
- //
- // label61
- //
- this.label61.AutoSize = true;
- this.label61.Location = new System.Drawing.Point(688, 39);
- this.label61.Name = "label61";
- this.label61.Size = new System.Drawing.Size(92, 15);
- this.label61.TabIndex = 16;
- this.label61.Text = "PTELY文件:";
- //
- // chkWPT
- //
- this.chkWPT.AutoSize = true;
- this.chkWPT.Location = new System.Drawing.Point(591, 37);
- this.chkWPT.Name = "chkWPT";
- this.chkWPT.Size = new System.Drawing.Size(18, 17);
- this.chkWPT.TabIndex = 15;
- this.chkWPT.UseVisualStyleBackColor = true;
- //
- // label62
- //
- this.label62.AutoSize = true;
- this.label62.Location = new System.Drawing.Point(485, 37);
- this.label62.Name = "label62";
- this.label62.Size = new System.Drawing.Size(68, 15);
- this.label62.TabIndex = 14;
- this.label62.Text = "是否PT:";
- //
- // btnReadConfig
- //
- this.btnReadConfig.Location = new System.Drawing.Point(77, 84);
- this.btnReadConfig.Name = "btnReadConfig";
- this.btnReadConfig.Size = new System.Drawing.Size(155, 47);
- this.btnReadConfig.TabIndex = 2;
- this.btnReadConfig.Text = "读取配置文件";
- this.btnReadConfig.UseVisualStyleBackColor = true;
- this.btnReadConfig.Click += new System.EventHandler(this.btnReadConfig_Click);
- //
- // btnCreateConfig
- //
- this.btnCreateConfig.Location = new System.Drawing.Point(77, 21);
- this.btnCreateConfig.Name = "btnCreateConfig";
- this.btnCreateConfig.Size = new System.Drawing.Size(155, 47);
- this.btnCreateConfig.TabIndex = 0;
- this.btnCreateConfig.Text = "创建配置文件";
- this.btnCreateConfig.UseVisualStyleBackColor = true;
- this.btnCreateConfig.Click += new System.EventHandler(this.btnCreateConfig_Click);
- //
- // tabPage4
- //
- this.tabPage4.Controls.Add(this.txtstageny);
- this.tabPage4.Controls.Add(this.txtstagenx);
- this.tabPage4.Controls.Add(this.txtps);
- this.tabPage4.Controls.Add(this.label77);
- this.tabPage4.Controls.Add(this.btnimgv);
- this.tabPage4.Controls.Add(this.txtstagevy);
- this.tabPage4.Controls.Add(this.txtstagevx);
- this.tabPage4.Controls.Add(this.txtimgy);
- this.tabPage4.Controls.Add(this.txtimgx);
- this.tabPage4.Controls.Add(this.label69);
- this.tabPage4.Controls.Add(this.label73);
- this.tabPage4.Controls.Add(this.btn60);
- this.tabPage4.Controls.Add(this.btn45);
- this.tabPage4.Controls.Add(this.btn30);
- this.tabPage4.Controls.Add(this.btnrect);
- this.tabPage4.Controls.Add(this.txtdistance);
- this.tabPage4.Controls.Add(this.txtarray);
- this.tabPage4.Controls.Add(this.txty);
- this.tabPage4.Controls.Add(this.txtx);
- this.tabPage4.Controls.Add(this.txtsample1y);
- this.tabPage4.Controls.Add(this.txtsample1x);
- this.tabPage4.Controls.Add(this.label76);
- this.tabPage4.Controls.Add(this.label78);
- this.tabPage4.Controls.Add(this.label74);
- this.tabPage4.Controls.Add(this.label72);
- this.tabPage4.Controls.Add(this.label70);
- this.tabPage4.Controls.Add(this.label68);
- this.tabPage4.Controls.Add(this.chart1);
- this.tabPage4.Controls.Add(this.lblPs1);
- this.tabPage4.Controls.Add(this.btnPsFile);
- this.tabPage4.Location = new System.Drawing.Point(4, 25);
- this.tabPage4.Name = "tabPage4";
- this.tabPage4.Size = new System.Drawing.Size(1361, 571);
- this.tabPage4.TabIndex = 3;
- this.tabPage4.Text = "自动计算坐标";
- this.tabPage4.UseVisualStyleBackColor = true;
- //
- // txtstageny
- //
- this.txtstageny.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtstageny.Location = new System.Drawing.Point(92, 534);
- this.txtstageny.Name = "txtstageny";
- this.txtstageny.Size = new System.Drawing.Size(100, 28);
- this.txtstageny.TabIndex = 87;
- this.txtstageny.Text = "69354";
- this.txtstageny.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtstagenx
- //
- this.txtstagenx.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtstagenx.Location = new System.Drawing.Point(92, 480);
- this.txtstagenx.Name = "txtstagenx";
- this.txtstagenx.Size = new System.Drawing.Size(100, 28);
- this.txtstagenx.TabIndex = 86;
- this.txtstagenx.Text = "46994";
- this.txtstagenx.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtps
- //
- this.txtps.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtps.Location = new System.Drawing.Point(363, 523);
- this.txtps.Name = "txtps";
- this.txtps.Size = new System.Drawing.Size(100, 28);
- this.txtps.TabIndex = 85;
- this.txtps.Text = "0.07366";
- this.txtps.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label77
- //
- this.label77.AutoSize = true;
- this.label77.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label77.Location = new System.Drawing.Point(225, 520);
- this.label77.Name = "label77";
- this.label77.Size = new System.Drawing.Size(99, 27);
- this.label77.TabIndex = 84;
- this.label77.Text = "piexlsize";
- //
- // btnimgv
- //
- this.btnimgv.Location = new System.Drawing.Point(524, 513);
- this.btnimgv.Name = "btnimgv";
- this.btnimgv.Size = new System.Drawing.Size(127, 38);
- this.btnimgv.TabIndex = 83;
- this.btnimgv.Text = "计算";
- this.btnimgv.UseVisualStyleBackColor = true;
- this.btnimgv.Click += new System.EventHandler(this.btnimgv_Click);
- //
- // txtstagevy
- //
- this.txtstagevy.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtstagevy.Location = new System.Drawing.Point(424, 480);
- this.txtstagevy.Name = "txtstagevy";
- this.txtstagevy.Size = new System.Drawing.Size(183, 28);
- this.txtstagevy.TabIndex = 82;
- this.txtstagevy.Text = "130";
- this.txtstagevy.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtstagevx
- //
- this.txtstagevx.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtstagevx.Location = new System.Drawing.Point(424, 426);
- this.txtstagevx.Name = "txtstagevx";
- this.txtstagevx.Size = new System.Drawing.Size(183, 28);
- this.txtstagevx.TabIndex = 81;
- this.txtstagevx.Text = "0";
- this.txtstagevx.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtimgy
- //
- this.txtimgy.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtimgy.Location = new System.Drawing.Point(318, 479);
- this.txtimgy.Name = "txtimgy";
- this.txtimgy.Size = new System.Drawing.Size(100, 28);
- this.txtimgy.TabIndex = 80;
- this.txtimgy.Text = "91";
- this.txtimgy.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtimgx
- //
- this.txtimgx.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtimgx.Location = new System.Drawing.Point(318, 425);
- this.txtimgx.Name = "txtimgx";
- this.txtimgx.Size = new System.Drawing.Size(100, 28);
- this.txtimgx.TabIndex = 79;
- this.txtimgx.Text = "261";
- this.txtimgx.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label69
- //
- this.label69.AutoSize = true;
- this.label69.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label69.Location = new System.Drawing.Point(224, 477);
- this.label69.Name = "label69";
- this.label69.Size = new System.Drawing.Size(85, 27);
- this.label69.TabIndex = 78;
- this.label69.Text = "图像Y值";
- //
- // label73
- //
- this.label73.AutoSize = true;
- this.label73.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label73.Location = new System.Drawing.Point(224, 426);
- this.label73.Name = "label73";
- this.label73.Size = new System.Drawing.Size(86, 27);
- this.label73.TabIndex = 77;
- this.label73.Text = "图像X值";
- //
- // btn60
- //
- this.btn60.Location = new System.Drawing.Point(476, 201);
- this.btn60.Name = "btn60";
- this.btn60.Size = new System.Drawing.Size(81, 38);
- this.btn60.TabIndex = 76;
- this.btn60.Text = "60度";
- this.btn60.UseVisualStyleBackColor = true;
- this.btn60.Click += new System.EventHandler(this.btn60_Click);
- //
- // btn45
- //
- this.btn45.Location = new System.Drawing.Point(476, 148);
- this.btn45.Name = "btn45";
- this.btn45.Size = new System.Drawing.Size(81, 38);
- this.btn45.TabIndex = 75;
- this.btn45.Text = "45度";
- this.btn45.UseVisualStyleBackColor = true;
- this.btn45.Click += new System.EventHandler(this.btn45_Click);
- //
- // btn30
- //
- this.btn30.Location = new System.Drawing.Point(476, 96);
- this.btn30.Name = "btn30";
- this.btn30.Size = new System.Drawing.Size(81, 38);
- this.btn30.TabIndex = 74;
- this.btn30.Text = "30度";
- this.btn30.UseVisualStyleBackColor = true;
- this.btn30.Click += new System.EventHandler(this.btn30_Click);
- //
- // btnrect
- //
- this.btnrect.Location = new System.Drawing.Point(32, 435);
- this.btnrect.Name = "btnrect";
- this.btnrect.Size = new System.Drawing.Size(127, 38);
- this.btnrect.TabIndex = 73;
- this.btnrect.Text = "计算";
- this.btnrect.UseVisualStyleBackColor = true;
- this.btnrect.Click += new System.EventHandler(this.btnrect_Click);
- //
- // txtdistance
- //
- this.txtdistance.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtdistance.Location = new System.Drawing.Point(307, 367);
- this.txtdistance.Name = "txtdistance";
- this.txtdistance.Size = new System.Drawing.Size(100, 28);
- this.txtdistance.TabIndex = 72;
- this.txtdistance.Text = "30";
- this.txtdistance.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtarray
- //
- this.txtarray.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtarray.Location = new System.Drawing.Point(307, 316);
- this.txtarray.Name = "txtarray";
- this.txtarray.Size = new System.Drawing.Size(100, 28);
- this.txtarray.TabIndex = 71;
- this.txtarray.Text = "4";
- this.txtarray.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txty
- //
- this.txty.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txty.Location = new System.Drawing.Point(307, 262);
- this.txty.Name = "txty";
- this.txty.Size = new System.Drawing.Size(100, 28);
- this.txty.TabIndex = 70;
- this.txty.Text = "65";
- this.txty.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtx
- //
- this.txtx.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtx.Location = new System.Drawing.Point(307, 211);
- this.txtx.Name = "txtx";
- this.txtx.Size = new System.Drawing.Size(100, 28);
- this.txtx.TabIndex = 69;
- this.txtx.Text = "65";
- this.txtx.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtsample1y
- //
- this.txtsample1y.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtsample1y.Location = new System.Drawing.Point(307, 154);
- this.txtsample1y.Name = "txtsample1y";
- this.txtsample1y.Size = new System.Drawing.Size(100, 28);
- this.txtsample1y.TabIndex = 68;
- this.txtsample1y.Text = "130";
- this.txtsample1y.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtsample1x
- //
- this.txtsample1x.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtsample1x.Location = new System.Drawing.Point(307, 103);
- this.txtsample1x.Name = "txtsample1x";
- this.txtsample1x.Size = new System.Drawing.Size(100, 28);
- this.txtsample1x.TabIndex = 67;
- this.txtsample1x.Text = "0";
- this.txtsample1x.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label76
- //
- this.label76.AutoSize = true;
- this.label76.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label76.Location = new System.Drawing.Point(46, 152);
- this.label76.Name = "label76";
- this.label76.Size = new System.Drawing.Size(146, 27);
- this.label76.TabIndex = 65;
- this.label76.Text = "样品1-Y轴坐标";
- //
- // label78
- //
- this.label78.AutoSize = true;
- this.label78.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label78.Location = new System.Drawing.Point(46, 101);
- this.label78.Name = "label78";
- this.label78.Size = new System.Drawing.Size(147, 27);
- this.label78.TabIndex = 63;
- this.label78.Text = "样品1-X轴坐标";
- //
- // label74
- //
- this.label74.AutoSize = true;
- this.label74.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label74.Location = new System.Drawing.Point(47, 367);
- this.label74.Name = "label74";
- this.label74.Size = new System.Drawing.Size(112, 27);
- this.label74.TabIndex = 60;
- this.label74.Text = "样品间距离";
- //
- // label72
- //
- this.label72.AutoSize = true;
- this.label72.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label72.Location = new System.Drawing.Point(47, 314);
- this.label72.Name = "label72";
- this.label72.Size = new System.Drawing.Size(152, 27);
- this.label72.TabIndex = 58;
- this.label72.Text = "默认样品排列数";
- //
- // label70
- //
- this.label70.AutoSize = true;
- this.label70.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label70.Location = new System.Drawing.Point(47, 260);
- this.label70.Name = "label70";
- this.label70.Size = new System.Drawing.Size(145, 27);
- this.label70.TabIndex = 56;
- this.label70.Text = "中心点Y轴坐标";
- //
- // label68
- //
- this.label68.AutoSize = true;
- this.label68.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label68.Location = new System.Drawing.Point(47, 209);
- this.label68.Name = "label68";
- this.label68.Size = new System.Drawing.Size(146, 27);
- this.label68.TabIndex = 54;
- this.label68.Text = "中心点X轴坐标";
- //
- // chart1
- //
- chartArea1.AxisX.IntervalAutoMode = System.Windows.Forms.DataVisualization.Charting.IntervalAutoMode.VariableCount;
- chartArea1.AxisX.MajorGrid.Enabled = false;
- chartArea1.AxisX.Maximum = 130D;
- chartArea1.AxisX.Minimum = 0D;
- chartArea1.AxisY.MajorGrid.Enabled = false;
- chartArea1.AxisY.Maximum = 130D;
- chartArea1.AxisY.Minimum = 0D;
- chartArea1.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
- chartArea1.Name = "ChartArea1";
- chartArea1.Position.Auto = false;
- chartArea1.Position.Height = 94F;
- chartArea1.Position.Width = 94F;
- this.chart1.ChartAreas.Add(chartArea1);
- legend1.Enabled = false;
- legend1.Name = "Legend1";
- this.chart1.Legends.Add(legend1);
- this.chart1.Location = new System.Drawing.Point(667, 6);
- this.chart1.Name = "chart1";
- series1.ChartArea = "ChartArea1";
- series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
- series1.IsValueShownAsLabel = true;
- series1.Legend = "Legend1";
- series1.MarkerBorderColor = System.Drawing.Color.Red;
- series1.MarkerColor = System.Drawing.Color.White;
- series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
- series1.Name = "Series1";
- series2.ChartArea = "ChartArea1";
- series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
- series2.Legend = "Legend1";
- series2.MarkerBorderColor = System.Drawing.Color.Black;
- series2.MarkerColor = System.Drawing.Color.Black;
- series2.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Square;
- series2.Name = "Series2";
- dataPoint1.MarkerBorderWidth = 3;
- dataPoint1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Star4;
- series2.Points.Add(dataPoint1);
- this.chart1.Series.Add(series1);
- this.chart1.Series.Add(series2);
- this.chart1.Size = new System.Drawing.Size(590, 557);
- this.chart1.TabIndex = 2;
- this.chart1.Text = "chart1";
- //
- // lblPs1
- //
- this.lblPs1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblPs1.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblPs1.ForeColor = System.Drawing.Color.Blue;
- this.lblPs1.Location = new System.Drawing.Point(229, 22);
- this.lblPs1.Name = "lblPs1";
- this.lblPs1.Size = new System.Drawing.Size(107, 38);
- this.lblPs1.TabIndex = 0;
- this.lblPs1.Text = "0,0";
- this.lblPs1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // btnPsFile
- //
- this.btnPsFile.Location = new System.Drawing.Point(32, 22);
- this.btnPsFile.Name = "btnPsFile";
- this.btnPsFile.Size = new System.Drawing.Size(127, 38);
- this.btnPsFile.TabIndex = 1;
- this.btnPsFile.Text = "打开位置文件";
- this.btnPsFile.UseVisualStyleBackColor = true;
- this.btnPsFile.Click += new System.EventHandler(this.btnPsFile_Click);
- //
- // tabPage5
- //
- this.tabPage5.Controls.Add(this.textBox4);
- this.tabPage5.Controls.Add(this.textBox3);
- this.tabPage5.Controls.Add(this.button15);
- this.tabPage5.Controls.Add(this.label93);
- this.tabPage5.Controls.Add(this.txtFocus);
- this.tabPage5.Controls.Add(this.button11);
- this.tabPage5.Controls.Add(this.button10);
- this.tabPage5.Controls.Add(this.label91);
- this.tabPage5.Controls.Add(this.txtTy);
- this.tabPage5.Controls.Add(this.label92);
- this.tabPage5.Controls.Add(this.txtTx);
- this.tabPage5.Controls.Add(this.label90);
- this.tabPage5.Controls.Add(this.button7);
- this.tabPage5.Controls.Add(this.button8);
- this.tabPage5.Controls.Add(this.button9);
- this.tabPage5.Controls.Add(this.label89);
- this.tabPage5.Controls.Add(this.txtelyy);
- this.tabPage5.Controls.Add(this.label88);
- this.tabPage5.Controls.Add(this.txtelyx);
- this.tabPage5.Controls.Add(this.label87);
- this.tabPage5.Controls.Add(this.label86);
- this.tabPage5.Controls.Add(this.btnDeltaR);
- this.tabPage5.Controls.Add(this.txtDeltaR);
- this.tabPage5.Controls.Add(this.label85);
- this.tabPage5.Location = new System.Drawing.Point(4, 25);
- this.tabPage5.Name = "tabPage5";
- this.tabPage5.Size = new System.Drawing.Size(1361, 571);
- this.tabPage5.TabIndex = 4;
- this.tabPage5.Text = "问题测试";
- this.tabPage5.UseVisualStyleBackColor = true;
- //
- // label93
- //
- this.label93.AutoSize = true;
- this.label93.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label93.Location = new System.Drawing.Point(79, 266);
- this.label93.Name = "label93";
- this.label93.Size = new System.Drawing.Size(117, 27);
- this.label93.TabIndex = 114;
- this.label93.Text = "对焦文件夹:";
- //
- // txtFocus
- //
- this.txtFocus.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtFocus.Location = new System.Drawing.Point(202, 266);
- this.txtFocus.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtFocus.Name = "txtFocus";
- this.txtFocus.Size = new System.Drawing.Size(433, 30);
- this.txtFocus.TabIndex = 113;
- this.txtFocus.Text = "D:\\Test\\";
- this.txtFocus.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // button11
- //
- this.button11.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button11.Location = new System.Drawing.Point(947, 217);
- this.button11.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(144, 41);
- this.button11.TabIndex = 112;
- this.button11.Text = "对焦";
- this.button11.UseVisualStyleBackColor = true;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button10
- //
- this.button10.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button10.Location = new System.Drawing.Point(772, 217);
- this.button10.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(144, 41);
- this.button10.TabIndex = 111;
- this.button10.Text = "移动";
- this.button10.UseVisualStyleBackColor = true;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label91
- //
- this.label91.AutoSize = true;
- this.label91.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label91.Location = new System.Drawing.Point(591, 223);
- this.label91.Name = "label91";
- this.label91.Size = new System.Drawing.Size(29, 27);
- this.label91.TabIndex = 110;
- this.label91.Text = "Y:";
- //
- // txtTy
- //
- this.txtTy.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtTy.Location = new System.Drawing.Point(627, 223);
- this.txtTy.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtTy.Name = "txtTy";
- this.txtTy.Size = new System.Drawing.Size(100, 30);
- this.txtTy.TabIndex = 109;
- this.txtTy.Text = "0";
- this.txtTy.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label92
- //
- this.label92.AutoSize = true;
- this.label92.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label92.Location = new System.Drawing.Point(415, 223);
- this.label92.Name = "label92";
- this.label92.Size = new System.Drawing.Size(30, 27);
- this.label92.TabIndex = 108;
- this.label92.Text = "X:";
- //
- // txtTx
- //
- this.txtTx.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtTx.Location = new System.Drawing.Point(451, 223);
- this.txtTx.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtTx.Name = "txtTx";
- this.txtTx.Size = new System.Drawing.Size(100, 30);
- this.txtTx.TabIndex = 107;
- this.txtTx.Text = "0";
- this.txtTx.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label90
- //
- this.label90.AutoSize = true;
- this.label90.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label90.Location = new System.Drawing.Point(18, 223);
- this.label90.Name = "label90";
- this.label90.Size = new System.Drawing.Size(373, 27);
- this.label90.TabIndex = 106;
- this.label90.Text = "3、移动光束-图像返回梯形左上角点位置";
- //
- // button7
- //
- this.button7.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button7.Location = new System.Drawing.Point(356, 144);
- this.button7.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(144, 41);
- this.button7.TabIndex = 105;
- this.button7.Text = "执行ELY文件";
- this.button7.UseVisualStyleBackColor = true;
- this.button7.Click += new System.EventHandler(this.btnExeEly3_Click);
- //
- // button8
- //
- this.button8.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button8.Location = new System.Drawing.Point(205, 144);
- this.button8.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(144, 41);
- this.button8.TabIndex = 104;
- this.button8.Text = "确认ELY文件";
- this.button8.UseVisualStyleBackColor = true;
- this.button8.Click += new System.EventHandler(this.btnExeEly2_Click);
- //
- // button9
- //
- this.button9.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button9.Location = new System.Drawing.Point(55, 144);
- this.button9.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(144, 41);
- this.button9.TabIndex = 103;
- this.button9.Text = "选择ELY文件";
- this.button9.UseVisualStyleBackColor = true;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // label89
- //
- this.label89.AutoSize = true;
- this.label89.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label89.Location = new System.Drawing.Point(575, 88);
- this.label89.Name = "label89";
- this.label89.Size = new System.Drawing.Size(29, 27);
- this.label89.TabIndex = 102;
- this.label89.Text = "Y:";
- //
- // txtelyy
- //
- this.txtelyy.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtelyy.Location = new System.Drawing.Point(611, 88);
- this.txtelyy.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtelyy.Name = "txtelyy";
- this.txtelyy.Size = new System.Drawing.Size(100, 30);
- this.txtelyy.TabIndex = 101;
- this.txtelyy.Text = "0";
- this.txtelyy.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label88
- //
- this.label88.AutoSize = true;
- this.label88.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label88.Location = new System.Drawing.Point(399, 88);
- this.label88.Name = "label88";
- this.label88.Size = new System.Drawing.Size(30, 27);
- this.label88.TabIndex = 100;
- this.label88.Text = "X:";
- //
- // txtelyx
- //
- this.txtelyx.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtelyx.Location = new System.Drawing.Point(435, 88);
- this.txtelyx.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtelyx.Name = "txtelyx";
- this.txtelyx.Size = new System.Drawing.Size(100, 30);
- this.txtelyx.TabIndex = 99;
- this.txtelyx.Text = "0";
- this.txtelyx.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label87
- //
- this.label87.AutoSize = true;
- this.label87.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label87.Location = new System.Drawing.Point(18, 88);
- this.label87.Name = "label87";
- this.label87.Size = new System.Drawing.Size(355, 27);
- this.label87.TabIndex = 98;
- this.label87.Text = "2、修改选择ELY文件--图像返回坐标值";
- //
- // label86
- //
- this.label86.AutoSize = true;
- this.label86.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label86.Location = new System.Drawing.Point(18, 32);
- this.label86.Name = "label86";
- this.label86.Size = new System.Drawing.Size(504, 27);
- this.label86.TabIndex = 97;
- this.label86.Text = "1、测试拉直操作图像接口返回角度进行旋转拉直测试:";
- //
- // btnDeltaR
- //
- this.btnDeltaR.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnDeltaR.Location = new System.Drawing.Point(837, 29);
- this.btnDeltaR.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnDeltaR.Name = "btnDeltaR";
- this.btnDeltaR.Size = new System.Drawing.Size(79, 34);
- this.btnDeltaR.TabIndex = 96;
- this.btnDeltaR.Text = "Set";
- this.btnDeltaR.UseVisualStyleBackColor = true;
- this.btnDeltaR.Click += new System.EventHandler(this.btnDeltaR_Click);
- //
- // txtDeltaR
- //
- this.txtDeltaR.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtDeltaR.Location = new System.Drawing.Point(727, 30);
- this.txtDeltaR.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtDeltaR.Name = "txtDeltaR";
- this.txtDeltaR.Size = new System.Drawing.Size(100, 30);
- this.txtDeltaR.TabIndex = 95;
- this.txtDeltaR.Text = "0";
- this.txtDeltaR.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label85
- //
- this.label85.AutoSize = true;
- this.label85.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label85.Location = new System.Drawing.Point(541, 32);
- this.label85.Name = "label85";
- this.label85.Size = new System.Drawing.Size(186, 27);
- this.label85.TabIndex = 94;
- this.label85.Text = "样品台 Delta R轴:";
- //
- // tabPage6
- //
- this.tabPage6.Controls.Add(this.label101);
- this.tabPage6.Controls.Add(this.lblEDSH);
- this.tabPage6.Controls.Add(this.label99);
- this.tabPage6.Controls.Add(this.lblEDSW);
- this.tabPage6.Controls.Add(this.label97);
- this.tabPage6.Controls.Add(this.lblEDSY);
- this.tabPage6.Controls.Add(this.label96);
- this.tabPage6.Controls.Add(this.lblEDSX);
- this.tabPage6.Controls.Add(this.button14);
- this.tabPage6.Controls.Add(this.ltLines);
- this.tabPage6.Controls.Add(this.button13);
- this.tabPage6.Controls.Add(this.label94);
- this.tabPage6.Controls.Add(this.txtPicPath);
- this.tabPage6.Controls.Add(this.ltPoints);
- this.tabPage6.Controls.Add(this.button12);
- this.tabPage6.Location = new System.Drawing.Point(4, 25);
- this.tabPage6.Name = "tabPage6";
- this.tabPage6.Size = new System.Drawing.Size(1361, 571);
- this.tabPage6.TabIndex = 5;
- this.tabPage6.Text = "POST_EDS";
- this.tabPage6.UseVisualStyleBackColor = true;
- //
- // label101
- //
- this.label101.AutoSize = true;
- this.label101.Location = new System.Drawing.Point(558, 276);
- this.label101.Name = "label101";
- this.label101.Size = new System.Drawing.Size(23, 15);
- this.label101.TabIndex = 66;
- this.label101.Text = "H:";
- //
- // lblEDSH
- //
- this.lblEDSH.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblEDSH.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblEDSH.Location = new System.Drawing.Point(605, 267);
- this.lblEDSH.Name = "lblEDSH";
- this.lblEDSH.Size = new System.Drawing.Size(112, 27);
- this.lblEDSH.TabIndex = 65;
- //
- // label99
- //
- this.label99.AutoSize = true;
- this.label99.Location = new System.Drawing.Point(558, 233);
- this.label99.Name = "label99";
- this.label99.Size = new System.Drawing.Size(23, 15);
- this.label99.TabIndex = 64;
- this.label99.Text = "W:";
- //
- // lblEDSW
- //
- this.lblEDSW.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblEDSW.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblEDSW.Location = new System.Drawing.Point(605, 224);
- this.lblEDSW.Name = "lblEDSW";
- this.lblEDSW.Size = new System.Drawing.Size(112, 27);
- this.lblEDSW.TabIndex = 63;
- //
- // label97
- //
- this.label97.AutoSize = true;
- this.label97.Location = new System.Drawing.Point(558, 190);
- this.label97.Name = "label97";
- this.label97.Size = new System.Drawing.Size(23, 15);
- this.label97.TabIndex = 62;
- this.label97.Text = "Y:";
- //
- // lblEDSY
- //
- this.lblEDSY.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblEDSY.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblEDSY.Location = new System.Drawing.Point(605, 181);
- this.lblEDSY.Name = "lblEDSY";
- this.lblEDSY.Size = new System.Drawing.Size(112, 27);
- this.lblEDSY.TabIndex = 61;
- //
- // label96
- //
- this.label96.AutoSize = true;
- this.label96.Location = new System.Drawing.Point(558, 147);
- this.label96.Name = "label96";
- this.label96.Size = new System.Drawing.Size(23, 15);
- this.label96.TabIndex = 60;
- this.label96.Text = "X:";
- //
- // lblEDSX
- //
- this.lblEDSX.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblEDSX.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblEDSX.Location = new System.Drawing.Point(605, 138);
- this.lblEDSX.Name = "lblEDSX";
- this.lblEDSX.Size = new System.Drawing.Size(112, 27);
- this.lblEDSX.TabIndex = 59;
- //
- // button14
- //
- this.button14.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button14.Location = new System.Drawing.Point(549, 62);
- this.button14.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(223, 50);
- this.button14.TabIndex = 58;
- this.button14.Text = "获取EDS面数据";
- this.button14.UseVisualStyleBackColor = true;
- this.button14.Click += new System.EventHandler(this.button14_Click);
- //
- // ltLines
- //
- this.ltLines.FormattingEnabled = true;
- this.ltLines.ItemHeight = 15;
- this.ltLines.Location = new System.Drawing.Point(285, 147);
- this.ltLines.Name = "ltLines";
- this.ltLines.Size = new System.Drawing.Size(223, 379);
- this.ltLines.TabIndex = 57;
- //
- // button13
- //
- this.button13.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button13.Location = new System.Drawing.Point(285, 62);
- this.button13.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(223, 50);
- this.button13.TabIndex = 56;
- this.button13.Text = "获取EDS线数据";
- this.button13.UseVisualStyleBackColor = true;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // label94
- //
- this.label94.AutoSize = true;
- this.label94.Location = new System.Drawing.Point(28, 26);
- this.label94.Name = "label94";
- this.label94.Size = new System.Drawing.Size(82, 15);
- this.label94.TabIndex = 55;
- this.label94.Text = "图片路径:";
- //
- // txtPicPath
- //
- this.txtPicPath.Location = new System.Drawing.Point(116, 17);
- this.txtPicPath.Name = "txtPicPath";
- this.txtPicPath.Size = new System.Drawing.Size(1196, 25);
- this.txtPicPath.TabIndex = 54;
- this.txtPicPath.Text = "/home/tcz/FIB_Flask/img/1-49.tif";
- //
- // ltPoints
- //
- this.ltPoints.FormattingEnabled = true;
- this.ltPoints.ItemHeight = 15;
- this.ltPoints.Location = new System.Drawing.Point(37, 147);
- this.ltPoints.Name = "ltPoints";
- this.ltPoints.Size = new System.Drawing.Size(223, 379);
- this.ltPoints.TabIndex = 53;
- //
- // button12
- //
- this.button12.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button12.Location = new System.Drawing.Point(37, 62);
- this.button12.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(223, 50);
- this.button12.TabIndex = 52;
- this.button12.Text = "获取EDS点数据";
- this.button12.UseVisualStyleBackColor = true;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button15
- //
- this.button15.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button15.Location = new System.Drawing.Point(772, 315);
- this.button15.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(144, 41);
- this.button15.TabIndex = 115;
- this.button15.Text = "矩形框";
- this.button15.UseVisualStyleBackColor = true;
- this.button15.Click += new System.EventHandler(this.button15_Click);
- //
- // textBox3
- //
- this.textBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.textBox3.Location = new System.Drawing.Point(947, 319);
- this.textBox3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.textBox3.Name = "textBox3";
- this.textBox3.Size = new System.Drawing.Size(100, 30);
- this.textBox3.TabIndex = 116;
- this.textBox3.Text = "500";
- this.textBox3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // textBox4
- //
- this.textBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.textBox4.Location = new System.Drawing.Point(1102, 319);
- this.textBox4.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.textBox4.Name = "textBox4";
- this.textBox4.Size = new System.Drawing.Size(100, 30);
- this.textBox4.TabIndex = 117;
- this.textBox4.Text = "200";
- this.textBox4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // FormUnitControl
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1369, 600);
- this.Controls.Add(this.tabControl1);
- this.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.Name = "FormUnitControl";
- this.Text = "UnitControl";
- this.Load += new System.EventHandler(this.FormUnitControl_Load);
- this.panelControl.ResumeLayout(false);
- this.panelSEM.ResumeLayout(false);
- this.panelSEM.PerformLayout();
- this.panelFIB.ResumeLayout(false);
- this.panelFIB.PerformLayout();
- this.panelStage.ResumeLayout(false);
- this.panelStage.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.tabControl1.ResumeLayout(false);
- this.tabPage1.ResumeLayout(false);
- this.tabPage2.ResumeLayout(false);
- this.tabPage2.PerformLayout();
- this.tabPage3.ResumeLayout(false);
- this.tabPage3.PerformLayout();
- this.tabPage4.ResumeLayout(false);
- this.tabPage4.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
- this.tabPage5.ResumeLayout(false);
- this.tabPage5.PerformLayout();
- this.tabPage6.ResumeLayout(false);
- this.tabPage6.PerformLayout();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Button btnGrabImage;
- private System.Windows.Forms.Button btnenlargeGet;
- private System.Windows.Forms.Button btnenlargeSet;
- private System.Windows.Forms.TextBox txtenlargeSet;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button btnWDSet;
- private System.Windows.Forms.TextBox txtWDSet;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button btnWDGet;
- private System.Windows.Forms.Button btnContrastSet;
- private System.Windows.Forms.TextBox txtContrastSet;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button btnContrastGet;
- private System.Windows.Forms.Button btnBrightnessSet;
- private System.Windows.Forms.TextBox txtBrightnessSet;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button btnBrightnessGet;
- private System.Windows.Forms.Button btnAstigmatismYSet;
- private System.Windows.Forms.TextBox txtAstigmatismYSet;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button btnAstigmatismYGet;
- private System.Windows.Forms.Button btnAstigmatismXSet;
- private System.Windows.Forms.TextBox txtAstigmatismXSet;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Button btnAstigmatismXGet;
- private System.Windows.Forms.Button btnTiltAngleSet;
- private System.Windows.Forms.TextBox txtTiltAngleSet;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Button btnTiltAngleGet;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Button btnPixelSizeGet;
- private System.Windows.Forms.Button btnScanRotationSet;
- private System.Windows.Forms.TextBox txtScanRotationSet;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Button btnScanRotationGet;
- private System.Windows.Forms.Button btnCloseVoltage;
- private System.Windows.Forms.Button btnOpenVoltage;
- private System.Windows.Forms.Button btnStageSetM;
- private System.Windows.Forms.TextBox txtStageM;
- private System.Windows.Forms.Label lblStageM;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Button btnStageGetM;
- private System.Windows.Forms.Button btnStageSetR;
- private System.Windows.Forms.TextBox txtStageR;
- private System.Windows.Forms.Label lblStageR;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.Button btnStageGetR;
- private System.Windows.Forms.Button btnStageSetT;
- private System.Windows.Forms.TextBox txtStageT;
- private System.Windows.Forms.Label lblStageT;
- private System.Windows.Forms.Label label15;
- private System.Windows.Forms.Button btnStageGetT;
- private System.Windows.Forms.Button btnStageSetZ;
- private System.Windows.Forms.TextBox txtStageZ;
- private System.Windows.Forms.Label lblStageZ;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.Button btnStageGetZ;
- private System.Windows.Forms.Button btnStageSetY;
- private System.Windows.Forms.TextBox txtStageY;
- private System.Windows.Forms.Label lblStageY;
- private System.Windows.Forms.Label label19;
- private System.Windows.Forms.Button btnStageGetY;
- private System.Windows.Forms.Button btnStageSetX;
- private System.Windows.Forms.TextBox txtStageX;
- private System.Windows.Forms.Label lblStageX;
- private System.Windows.Forms.Label label21;
- private System.Windows.Forms.Button btnStageGetX;
- private System.Windows.Forms.Button btnGetStagePosition;
- private System.Windows.Forms.Button btnReadXml;
- private System.Windows.Forms.Button btnWriteXml;
- private System.Windows.Forms.Panel panelControl;
- private System.Windows.Forms.Button btnSEM;
- private System.Windows.Forms.Button btnAutoFocus1;
- private System.Windows.Forms.Button btnAutoFocus2;
- private System.Windows.Forms.Button btnAutoBrightness;
- private System.Windows.Forms.Button btnAutoContrast;
- private System.Windows.Forms.Button btnAutoBCCancle;
- private System.Windows.Forms.Button btnAutoBC;
- private System.Windows.Forms.Button btnAutoStig;
- private System.Windows.Forms.Panel panelSEM;
- private System.Windows.Forms.Panel panelFIB;
- private System.Windows.Forms.Button btnMILL;
- private System.Windows.Forms.Button btnFIB;
- private System.Windows.Forms.Label lblPixelSizeGet;
- private System.Windows.Forms.Button btnTiltCorrYSet;
- private System.Windows.Forms.TextBox txtTiltCorrY;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button btnTiltCorrYGet;
- private System.Windows.Forms.Button btnTiltCorrXSet;
- private System.Windows.Forms.TextBox txtTiltCorrX;
- private System.Windows.Forms.Button btnTiltCorrXGet;
- private System.Windows.Forms.Label label12;
- private System.Windows.Forms.Button btnTiltCorr;
- private System.Windows.Forms.Button btnFIBBeamShiftYSet;
- private System.Windows.Forms.TextBox txtFIBBeamShiftY;
- private System.Windows.Forms.Label label18;
- private System.Windows.Forms.Button btnFIBBeamShiftYGet;
- private System.Windows.Forms.Button btnFIBBeamShiftXSet;
- private System.Windows.Forms.TextBox txtFIBBeamShiftX;
- private System.Windows.Forms.Button btnFIBBeamShiftXGet;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.Button btnMCF;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.Button btnFIBMagSet;
- private System.Windows.Forms.Button btnFIBMagGet;
- private System.Windows.Forms.TextBox txtFIBMag;
- private System.Windows.Forms.Button btnFIBWDSet;
- private System.Windows.Forms.Button btnFIBWDGet;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.TextBox txtFIBWD;
- private System.Windows.Forms.Button btnFIBAstigmatismYSet;
- private System.Windows.Forms.TextBox txtFIBAstigmatismY;
- private System.Windows.Forms.Label label22;
- private System.Windows.Forms.Button btnFIBAstigmatismYGet;
- private System.Windows.Forms.Button btnFIBAstigmatismXSet;
- private System.Windows.Forms.TextBox txtFIBAstigmatismX;
- private System.Windows.Forms.Button btnFIBAstigmatismXGet;
- private System.Windows.Forms.Label label23;
- private System.Windows.Forms.Panel panelStage;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.Button btnMoveXY;
- private System.Windows.Forms.Button btnImageStoreGet;
- private System.Windows.Forms.Button btnImageStoreSet;
- private System.Windows.Forms.ComboBox cmbImageStore;
- private System.Windows.Forms.Label lblImageStore;
- private System.Windows.Forms.Button btnAbort;
- private System.Windows.Forms.PictureBox pictureBox2;
- private System.Windows.Forms.PictureBox pictureBox1;
- private System.Windows.Forms.Button btnFrozen;
- private System.Windows.Forms.Button btnLive;
- private System.Windows.Forms.Button btnExeEly;
- private System.Windows.Forms.Button btnExeEly2;
- private System.Windows.Forms.Button btnFIBStatus;
- private System.Windows.Forms.TabControl tabControl1;
- private System.Windows.Forms.TabPage tabPage1;
- private System.Windows.Forms.TabPage tabPage2;
- private System.Windows.Forms.Button btnPost1;
- private System.Windows.Forms.Label lblstate9;
- private System.Windows.Forms.Label label47;
- private System.Windows.Forms.Label lblcenter2;
- private System.Windows.Forms.Label label49;
- private System.Windows.Forms.Label lblcenter1;
- private System.Windows.Forms.Label label51;
- private System.Windows.Forms.Label lblstate7;
- private System.Windows.Forms.Label label53;
- private System.Windows.Forms.Label lbldirection2;
- private System.Windows.Forms.Label label55;
- private System.Windows.Forms.Label lbldegree2;
- private System.Windows.Forms.Label label57;
- private System.Windows.Forms.Label lblstigpath;
- private System.Windows.Forms.Label label45;
- private System.Windows.Forms.Label lblfocuspath;
- private System.Windows.Forms.Label label43;
- private System.Windows.Forms.Label lblstate4;
- private System.Windows.Forms.Label label37;
- private System.Windows.Forms.Label lbltopcy;
- private System.Windows.Forms.Label label39;
- private System.Windows.Forms.Label lbltopcx;
- private System.Windows.Forms.Label label41;
- private System.Windows.Forms.Label lblstate3;
- private System.Windows.Forms.Label label35;
- private System.Windows.Forms.Label lblstate2;
- private System.Windows.Forms.Label label27;
- private System.Windows.Forms.Label lbllocationy1;
- private System.Windows.Forms.Label label31;
- private System.Windows.Forms.Label lbllocationx1;
- private System.Windows.Forms.Label label33;
- private System.Windows.Forms.Button btnPost9;
- private System.Windows.Forms.Button btnPost7;
- private System.Windows.Forms.Button btnPost6;
- private System.Windows.Forms.Button btnPost5;
- private System.Windows.Forms.Button btnPost4;
- private System.Windows.Forms.Button btnPost3;
- private System.Windows.Forms.Button btnPost2;
- private System.Windows.Forms.Label lblstate1;
- private System.Windows.Forms.Label label30;
- private System.Windows.Forms.Label lbldirection1;
- private System.Windows.Forms.Label label28;
- private System.Windows.Forms.Label lbldegree1;
- private System.Windows.Forms.Label label25;
- private System.Windows.Forms.Button btnScanRotationSetLock;
- private System.Windows.Forms.Button btnTiltAngleSetOff;
- private System.Windows.Forms.Button btnTiltAngleSetOn;
- private System.Windows.Forms.Button btnScanRotationSetOn;
- private System.Windows.Forms.Button btnExeEly3;
- private System.Windows.Forms.TabPage tabPage3;
- private System.Windows.Forms.Button btnCreateConfig;
- private System.Windows.Forms.Button btnReadConfig;
- private System.Windows.Forms.TextBox txtWFIBF;
- private System.Windows.Forms.TextBox txtWPTF;
- private System.Windows.Forms.Label label48;
- private System.Windows.Forms.Label label56;
- private System.Windows.Forms.Label label59;
- private System.Windows.Forms.Label label61;
- private System.Windows.Forms.CheckBox chkWPT;
- private System.Windows.Forms.Label label62;
- private System.Windows.Forms.TextBox txtRXZ;
- private System.Windows.Forms.Label label26;
- private System.Windows.Forms.TextBox txtRPZD;
- private System.Windows.Forms.Label label29;
- private System.Windows.Forms.TextBox txtRPZF;
- private System.Windows.Forms.Label label34;
- private System.Windows.Forms.TextBox txtRQGD;
- private System.Windows.Forms.Label label36;
- private System.Windows.Forms.TextBox txtRQGF;
- private System.Windows.Forms.Label label40;
- private System.Windows.Forms.TextBox txtRLZ;
- private System.Windows.Forms.Label label44;
- private System.Windows.Forms.CheckBox chkRIsP;
- private System.Windows.Forms.Label label52;
- private System.Windows.Forms.TextBox txtRYP;
- private System.Windows.Forms.TextBox txtRCS;
- private System.Windows.Forms.TextBox txtRFIBF;
- private System.Windows.Forms.TextBox txtRPTF;
- private System.Windows.Forms.Label label60;
- private System.Windows.Forms.Label label63;
- private System.Windows.Forms.Label label64;
- private System.Windows.Forms.Label label65;
- private System.Windows.Forms.CheckBox chkRPT;
- private System.Windows.Forms.Label label66;
- private System.Windows.Forms.Label label58;
- private System.Windows.Forms.Label label50;
- private System.Windows.Forms.Label label54;
- private System.Windows.Forms.Label label46;
- private System.Windows.Forms.Label label42;
- private System.Windows.Forms.Label label38;
- private System.Windows.Forms.CheckBox chkWIsP;
- private System.Windows.Forms.Label label32;
- private System.Windows.Forms.ComboBox cbbWCS;
- private System.Windows.Forms.ComboBox cbbWYP;
- private System.Windows.Forms.ComboBox cbbWXZ;
- private System.Windows.Forms.ComboBox cbbWPZD;
- private System.Windows.Forms.ComboBox cbbWPZF;
- private System.Windows.Forms.ComboBox cbbWQGD;
- private System.Windows.Forms.ComboBox cbbWQGF;
- private System.Windows.Forms.ComboBox cbbWLZ;
- private System.Windows.Forms.TabPage tabPage4;
- private System.Windows.Forms.Button btnPsFile;
- private System.Windows.Forms.Label lblPs1;
- private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
- private System.Windows.Forms.Label label76;
- private System.Windows.Forms.Label label78;
- private System.Windows.Forms.Label label74;
- private System.Windows.Forms.Label label72;
- private System.Windows.Forms.Label label70;
- private System.Windows.Forms.Label label68;
- private System.Windows.Forms.TextBox txtdistance;
- private System.Windows.Forms.TextBox txtarray;
- private System.Windows.Forms.TextBox txty;
- private System.Windows.Forms.TextBox txtx;
- private System.Windows.Forms.TextBox txtsample1y;
- private System.Windows.Forms.TextBox txtsample1x;
- private System.Windows.Forms.Button btnrect;
- private System.Windows.Forms.Button btn60;
- private System.Windows.Forms.Button btn45;
- private System.Windows.Forms.Button btn30;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.TextBox txtVoltage;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Label label67;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Label lbllocationy2;
- private System.Windows.Forms.Label label71;
- private System.Windows.Forms.Label lbllocationx2;
- private System.Windows.Forms.Label label75;
- private System.Windows.Forms.TextBox txtaddr;
- private System.Windows.Forms.TextBox txtaddr2;
- private System.Windows.Forms.Button btntest;
- private System.Windows.Forms.TextBox txtfirm;
- private System.Windows.Forms.TextBox txtTypee;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button btnimgv;
- private System.Windows.Forms.TextBox txtstagevy;
- private System.Windows.Forms.TextBox txtstagevx;
- private System.Windows.Forms.TextBox txtimgy;
- private System.Windows.Forms.TextBox txtimgx;
- private System.Windows.Forms.Label label69;
- private System.Windows.Forms.Label label73;
- private System.Windows.Forms.TextBox txtps;
- private System.Windows.Forms.Label label77;
- private System.Windows.Forms.TextBox txtstageny;
- private System.Windows.Forms.TextBox txtstagenx;
- private System.Windows.Forms.Button btnPost8;
- private System.Windows.Forms.Label lblstate8;
- private System.Windows.Forms.Label label84;
- private System.Windows.Forms.Label lblMag2;
- private System.Windows.Forms.Label label80;
- private System.Windows.Forms.Label lblMag1;
- private System.Windows.Forms.Label label82;
- private System.Windows.Forms.Label label81;
- private System.Windows.Forms.Label label79;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.TextBox textBox2;
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Label label83;
- private System.Windows.Forms.Button btnDRSet;
- private System.Windows.Forms.TextBox txtDRSet;
- private System.Windows.Forms.TabPage tabPage5;
- private System.Windows.Forms.Button btnDeltaR;
- private System.Windows.Forms.TextBox txtDeltaR;
- private System.Windows.Forms.Label label85;
- private System.Windows.Forms.Label label86;
- private System.Windows.Forms.TextBox txtelyx;
- private System.Windows.Forms.Label label87;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Label label89;
- private System.Windows.Forms.TextBox txtelyy;
- private System.Windows.Forms.Label label88;
- private System.Windows.Forms.Label label90;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label91;
- private System.Windows.Forms.TextBox txtTy;
- private System.Windows.Forms.Label label92;
- private System.Windows.Forms.TextBox txtTx;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Label label93;
- private System.Windows.Forms.TextBox txtFocus;
- private System.Windows.Forms.TabPage tabPage6;
- private System.Windows.Forms.ListBox ltPoints;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Label label94;
- private System.Windows.Forms.TextBox txtPicPath;
- private System.Windows.Forms.ListBox ltLines;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Label label101;
- private System.Windows.Forms.Label lblEDSH;
- private System.Windows.Forms.Label label99;
- private System.Windows.Forms.Label lblEDSW;
- private System.Windows.Forms.Label label97;
- private System.Windows.Forms.Label lblEDSY;
- private System.Windows.Forms.Label label96;
- private System.Windows.Forms.Label lblEDSX;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.TextBox textBox4;
- private System.Windows.Forms.TextBox textBox3;
- private System.Windows.Forms.Button button15;
- }
- }
|