123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836 |
- 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()
- {
- this.btnGrabImage = new System.Windows.Forms.Button();
- this.btnenlargeGet = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.btnCreatXml = 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.btnAutoStig = new System.Windows.Forms.Button();
- this.btnAutoBCCancle = new System.Windows.Forms.Button();
- this.btnAutoBC = new System.Windows.Forms.Button();
- this.btnAutoContrast = new System.Windows.Forms.Button();
- this.btnAutoBrightness = new System.Windows.Forms.Button();
- this.btnAutoFocus2 = new System.Windows.Forms.Button();
- this.btnAutoFocus1 = new System.Windows.Forms.Button();
- this.btnSEM = new System.Windows.Forms.Button();
- this.panelSEM = new System.Windows.Forms.Panel();
- this.btnFIB = new System.Windows.Forms.Button();
- this.btnMILL = new System.Windows.Forms.Button();
- this.lblPixelSizeGet = new System.Windows.Forms.Label();
- this.panelFIB = new System.Windows.Forms.Panel();
- this.btnTiltCorrYSet = new System.Windows.Forms.Button();
- this.txtTiltCorrY = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.btnTiltCorrYGet = new System.Windows.Forms.Button();
- this.btnTiltCorrXSet = new System.Windows.Forms.Button();
- this.txtTiltCorrX = new System.Windows.Forms.TextBox();
- this.btnTiltCorrXGet = new System.Windows.Forms.Button();
- this.label12 = new System.Windows.Forms.Label();
- this.btnTiltCorr = 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.btnMCF = new System.Windows.Forms.Button();
- 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.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.panelStage = new System.Windows.Forms.Panel();
- this.label24 = new System.Windows.Forms.Label();
- this.btnMoveXY = new System.Windows.Forms.Button();
- this.btnImageStoreGet = new System.Windows.Forms.Button();
- this.btnImageStoreSet = new System.Windows.Forms.Button();
- this.lblImageStore = new System.Windows.Forms.Label();
- this.cmbImageStore = new System.Windows.Forms.ComboBox();
- this.btnAbort = new System.Windows.Forms.Button();
- this.panelControl.SuspendLayout();
- this.panelSEM.SuspendLayout();
- this.panelFIB.SuspendLayout();
- this.panelStage.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);
- //
- // 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(485, 300);
- this.button1.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(144, 41);
- this.button1.TabIndex = 83;
- this.button1.Text = "测试Xml文件";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click_1);
- //
- // btnCreatXml
- //
- this.btnCreatXml.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnCreatXml.Location = new System.Drawing.Point(485, 255);
- this.btnCreatXml.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.btnCreatXml.Name = "btnCreatXml";
- this.btnCreatXml.Size = new System.Drawing.Size(144, 41);
- this.btnCreatXml.TabIndex = 82;
- this.btnCreatXml.Text = "创建Xml文件";
- this.btnCreatXml.UseVisualStyleBackColor = true;
- this.btnCreatXml.Click += new System.EventHandler(this.btnCreatXml_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, 318);
- 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(243, 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.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.Left;
- this.panelControl.Location = new System.Drawing.Point(0, 0);
- this.panelControl.Name = "panelControl";
- this.panelControl.Size = new System.Drawing.Size(763, 571);
- this.panelControl.TabIndex = 20;
- //
- // 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);
- //
- // 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);
- //
- // 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);
- //
- // 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);
- //
- // 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);
- //
- // 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);
- //
- // 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);
- //
- // panelSEM
- //
- this.panelSEM.Controls.Add(this.button1);
- this.panelSEM.Controls.Add(this.panelFIB);
- this.panelSEM.Controls.Add(this.btnCreatXml);
- this.panelSEM.Controls.Add(this.btnAutoStig);
- this.panelSEM.Controls.Add(this.btnTiltCorrYSet);
- this.panelSEM.Controls.Add(this.label1);
- this.panelSEM.Controls.Add(this.btnAutoBCCancle);
- this.panelSEM.Controls.Add(this.txtTiltCorrY);
- this.panelSEM.Controls.Add(this.btnTiltAngleSet);
- 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, 73);
- this.panelSEM.Name = "panelSEM";
- this.panelSEM.Size = new System.Drawing.Size(763, 498);
- this.panelSEM.TabIndex = 47;
- //
- // 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);
- //
- // 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);
- //
- // 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(85, 33);
- this.lblPixelSizeGet.TabIndex = 46;
- this.lblPixelSizeGet.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // panelFIB
- //
- 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(763, 225);
- this.panelFIB.TabIndex = 50;
- this.panelFIB.Visible = false;
- //
- // 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(672, 431);
- 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);
- //
- // txtTiltCorrY
- //
- this.txtTiltCorrY.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
- this.txtTiltCorrY.Location = new System.Drawing.Point(530, 433);
- 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;
- //
- // 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(417, 435);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(104, 27);
- this.label2.TabIndex = 52;
- this.label2.Text = "电子束Y:";
- //
- // 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(619, 431);
- 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);
- //
- // 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(672, 384);
- 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(530, 386);
- 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;
- //
- // 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(619, 384);
- 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(417, 388);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(105, 27);
- this.label12.TabIndex = 48;
- this.label12.Text = "电子束X:";
- //
- // 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);
- //
- // 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;
- //
- // 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(530, 151);
- 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);
- //
- // 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(530, 76);
- this.txtFIBBeamShiftY.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtFIBBeamShiftY.Name = "txtFIBBeamShiftY";
- this.txtFIBBeamShiftY.Size = new System.Drawing.Size(85, 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(530, 29);
- this.txtFIBBeamShiftX.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.txtFIBBeamShiftX.Name = "txtFIBBeamShiftX";
- this.txtFIBBeamShiftX.Size = new System.Drawing.Size(85, 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:";
- //
- // 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:";
- //
- // panelStage
- //
- this.panelStage.Controls.Add(this.btnAbort);
- this.panelStage.Controls.Add(this.cmbImageStore);
- this.panelStage.Controls.Add(this.lblImageStore);
- this.panelStage.Controls.Add(this.btnImageStoreSet);
- this.panelStage.Controls.Add(this.btnImageStoreGet);
- 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.Fill;
- this.panelStage.Location = new System.Drawing.Point(763, 0);
- this.panelStage.Name = "panelStage";
- this.panelStage.Size = new System.Drawing.Size(606, 571);
- this.panelStage.TabIndex = 21;
- //
- // 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 = "样品台";
- //
- // 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, 318);
- 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);
- //
- // 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(39, 401);
- 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);
- //
- // 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(39, 461);
- 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);
- //
- // 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(216, 408);
- this.lblImageStore.Name = "lblImageStore";
- this.lblImageStore.Size = new System.Drawing.Size(0, 27);
- this.lblImageStore.TabIndex = 86;
- //
- // 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(221, 470);
- this.cmbImageStore.Name = "cmbImageStore";
- this.cmbImageStore.Size = new System.Drawing.Size(158, 26);
- this.cmbImageStore.TabIndex = 87;
- //
- // 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, 318);
- 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);
- //
- // FormUnitControl
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1369, 571);
- this.Controls.Add(this.panelStage);
- this.Controls.Add(this.panelControl);
- this.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.Name = "FormUnitControl";
- this.Text = "UnitControl";
- 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();
- 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 btnCreatXml;
- private System.Windows.Forms.Button button1;
- 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;
- }
- }
|