123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902 |
- namespace HOZProject
- {
- partial class FormUCMain
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.pichide = new System.Windows.Forms.PictureBox();
- this.picexit = new System.Windows.Forms.PictureBox();
- this.panel1 = new System.Windows.Forms.Panel();
- this.btnenlargeSet = new System.Windows.Forms.Button();
- this.txtenlarge = new System.Windows.Forms.TextBox();
- this.lblFocus = new System.Windows.Forms.Label();
- this.btnenlargeGet = new System.Windows.Forms.Button();
- this.panel2 = new System.Windows.Forms.Panel();
- this.btnBrightnessSet = new System.Windows.Forms.Button();
- this.txtBrightness = new System.Windows.Forms.TextBox();
- this.label1 = new System.Windows.Forms.Label();
- this.btnBrightnessGet = new System.Windows.Forms.Button();
- this.panel3 = new System.Windows.Forms.Panel();
- this.btnTiltAngleSet = new System.Windows.Forms.Button();
- this.txtTiltAngle = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.btnTiltAngleGet = new System.Windows.Forms.Button();
- this.panel4 = new System.Windows.Forms.Panel();
- this.btnAstigmatismXSet = new System.Windows.Forms.Button();
- this.txtAstigmatismX = new System.Windows.Forms.TextBox();
- this.label3 = new System.Windows.Forms.Label();
- this.btnAstigmatismXGet = new System.Windows.Forms.Button();
- this.panel5 = new System.Windows.Forms.Panel();
- this.txtPixelSize = new System.Windows.Forms.TextBox();
- this.label4 = new System.Windows.Forms.Label();
- this.btnPixelSizeGet = new System.Windows.Forms.Button();
- this.panel8 = new System.Windows.Forms.Panel();
- this.btnAstigmatismYSet = new System.Windows.Forms.Button();
- this.txtAstigmatismY = new System.Windows.Forms.TextBox();
- this.label6 = new System.Windows.Forms.Label();
- this.btnAstigmatismYGet = new System.Windows.Forms.Button();
- this.panel9 = new System.Windows.Forms.Panel();
- this.btnScanRotationSet = new System.Windows.Forms.Button();
- this.txtScanRotation = new System.Windows.Forms.TextBox();
- this.label7 = new System.Windows.Forms.Label();
- this.btnScanRotationGet = new System.Windows.Forms.Button();
- this.panel10 = new System.Windows.Forms.Panel();
- this.btnContrastSet = new System.Windows.Forms.Button();
- this.txtContrast = new System.Windows.Forms.TextBox();
- this.label8 = new System.Windows.Forms.Label();
- this.btnContrastGet = new System.Windows.Forms.Button();
- this.panel11 = new System.Windows.Forms.Panel();
- this.btnWDSet = new System.Windows.Forms.Button();
- this.txtWD = new System.Windows.Forms.TextBox();
- this.label9 = new System.Windows.Forms.Label();
- this.btnWDGet = new System.Windows.Forms.Button();
- this.panel7 = new System.Windows.Forms.Panel();
- this.btnStageSetM = new System.Windows.Forms.Button();
- this.txtStageM = new System.Windows.Forms.TextBox();
- this.label5 = new System.Windows.Forms.Label();
- this.btnStageGetM = new System.Windows.Forms.Button();
- this.panel12 = new System.Windows.Forms.Panel();
- this.btnStageSetR = new System.Windows.Forms.Button();
- this.txtStageR = new System.Windows.Forms.TextBox();
- this.label10 = new System.Windows.Forms.Label();
- this.btnStageGetR = new System.Windows.Forms.Button();
- this.panel13 = new System.Windows.Forms.Panel();
- this.btnStageSetT = new System.Windows.Forms.Button();
- this.txtStageT = new System.Windows.Forms.TextBox();
- this.label11 = new System.Windows.Forms.Label();
- this.btnStageGetT = new System.Windows.Forms.Button();
- this.panel14 = new System.Windows.Forms.Panel();
- this.btnStageSetZ = new System.Windows.Forms.Button();
- this.txtStageZ = new System.Windows.Forms.TextBox();
- this.label12 = new System.Windows.Forms.Label();
- this.btnStageGetZ = new System.Windows.Forms.Button();
- this.panel15 = new System.Windows.Forms.Panel();
- this.btnStageSetY = new System.Windows.Forms.Button();
- this.txtStageY = new System.Windows.Forms.TextBox();
- this.label13 = new System.Windows.Forms.Label();
- this.btnStageGetY = new System.Windows.Forms.Button();
- this.panel16 = new System.Windows.Forms.Panel();
- this.btnStageSetX = new System.Windows.Forms.Button();
- this.txtStageX = new System.Windows.Forms.TextBox();
- this.label14 = new System.Windows.Forms.Label();
- this.btnStageGetX = new System.Windows.Forms.Button();
- this.label15 = new System.Windows.Forms.Label();
- this.label22 = new System.Windows.Forms.Label();
- this.label23 = new System.Windows.Forms.Label();
- this.label24 = new System.Windows.Forms.Label();
- this.btnAutoWD = new System.Windows.Forms.Button();
- this.btnAutoAstigmatism = new System.Windows.Forms.Button();
- this.btnAutoBrightness = new System.Windows.Forms.Button();
- this.btnGetStagePosition = new System.Windows.Forms.Button();
- this.pbHT = new System.Windows.Forms.PictureBox();
- this.lblState = new System.Windows.Forms.Label();
- this.panel6 = new System.Windows.Forms.Panel();
- this.button1 = new System.Windows.Forms.Button();
- this.comboBox1 = new System.Windows.Forms.ComboBox();
- this.label17 = new System.Windows.Forms.Label();
- this.panel20 = new System.Windows.Forms.Panel();
- this.button3 = new System.Windows.Forms.Button();
- this.textBox3 = new System.Windows.Forms.TextBox();
- this.label20 = new System.Windows.Forms.Label();
- this.button4 = new System.Windows.Forms.Button();
- this.panel17 = new System.Windows.Forms.Panel();
- this.button6 = new System.Windows.Forms.Button();
- this.button5 = new System.Windows.Forms.Button();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.label16 = new System.Windows.Forms.Label();
- this.panel18 = new System.Windows.Forms.Panel();
- this.button2 = new System.Windows.Forms.Button();
- this.button7 = new System.Windows.Forms.Button();
- this.textBox2 = new System.Windows.Forms.TextBox();
- this.label18 = new System.Windows.Forms.Label();
- this.panel19 = new System.Windows.Forms.Panel();
- this.button8 = new System.Windows.Forms.Button();
- this.comboBox2 = new System.Windows.Forms.ComboBox();
- this.label19 = new System.Windows.Forms.Label();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.btnMoveSEMCenter = new System.Windows.Forms.Button();
- this.txtMoveStageY = new System.Windows.Forms.TextBox();
- this.label25 = new System.Windows.Forms.Label();
- this.txtMoveStageX = new System.Windows.Forms.TextBox();
- this.label21 = new System.Windows.Forms.Label();
- this.btnConnect = new System.Windows.Forms.Button();
- this.btnGetImage = new System.Windows.Forms.Button();
- this.btnStop = new System.Windows.Forms.Button();
- ((System.ComponentModel.ISupportInitialize)(this.pichide)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.picexit)).BeginInit();
- this.panel1.SuspendLayout();
- this.panel2.SuspendLayout();
- this.panel3.SuspendLayout();
- this.panel4.SuspendLayout();
- this.panel5.SuspendLayout();
- this.panel8.SuspendLayout();
- this.panel9.SuspendLayout();
- this.panel10.SuspendLayout();
- this.panel11.SuspendLayout();
- this.panel7.SuspendLayout();
- this.panel12.SuspendLayout();
- this.panel13.SuspendLayout();
- this.panel14.SuspendLayout();
- this.panel15.SuspendLayout();
- this.panel16.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pbHT)).BeginInit();
- this.panel6.SuspendLayout();
- this.panel20.SuspendLayout();
- this.panel17.SuspendLayout();
- this.panel18.SuspendLayout();
- this.panel19.SuspendLayout();
- this.groupBox1.SuspendLayout();
- this.SuspendLayout();
- //
- // pichide
- //
- this.pichide.BackColor = System.Drawing.Color.Transparent;
- this.pichide.Cursor = System.Windows.Forms.Cursors.Hand;
- this.pichide.Image = global::HOZProject.Properties.Resources.Min_Gray;
- this.pichide.Location = new System.Drawing.Point(1478, 14);
- this.pichide.Margin = new System.Windows.Forms.Padding(6);
- this.pichide.Name = "pichide";
- this.pichide.Size = new System.Drawing.Size(20, 20);
- this.pichide.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
- this.pichide.TabIndex = 56;
- this.pichide.TabStop = false;
- this.pichide.Click += new System.EventHandler(this.pichide_Click);
- this.pichide.MouseEnter += new System.EventHandler(this.pichide_MouseEnter);
- this.pichide.MouseLeave += new System.EventHandler(this.pichide_MouseLeave);
- //
- // picexit
- //
- this.picexit.BackColor = System.Drawing.Color.Transparent;
- this.picexit.Cursor = System.Windows.Forms.Cursors.Hand;
- this.picexit.Image = global::HOZProject.Properties.Resources.exit_Gray;
- this.picexit.Location = new System.Drawing.Point(1502, 14);
- this.picexit.Margin = new System.Windows.Forms.Padding(6);
- this.picexit.Name = "picexit";
- this.picexit.Size = new System.Drawing.Size(20, 20);
- this.picexit.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
- this.picexit.TabIndex = 55;
- this.picexit.TabStop = false;
- this.picexit.Click += new System.EventHandler(this.picexit_Click);
- this.picexit.MouseEnter += new System.EventHandler(this.picexit_MouseEnter);
- this.picexit.MouseLeave += new System.EventHandler(this.picexit_MouseLeave);
- //
- // panel1
- //
- this.panel1.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel1.Controls.Add(this.btnenlargeSet);
- this.panel1.Controls.Add(this.txtenlarge);
- this.panel1.Controls.Add(this.lblFocus);
- this.panel1.Controls.Add(this.btnenlargeGet);
- this.panel1.Location = new System.Drawing.Point(45, 279);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(274, 45);
- this.panel1.TabIndex = 58;
- //
- // btnenlargeSet
- //
- this.btnenlargeSet.BackColor = System.Drawing.Color.White;
- this.btnenlargeSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnenlargeSet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnenlargeSet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnenlargeSet.ForeColor = System.Drawing.Color.Black;
- this.btnenlargeSet.Location = new System.Drawing.Point(224, 4);
- this.btnenlargeSet.Name = "btnenlargeSet";
- this.btnenlargeSet.Size = new System.Drawing.Size(48, 36);
- this.btnenlargeSet.TabIndex = 60;
- this.btnenlargeSet.TabStop = false;
- this.btnenlargeSet.Text = "写";
- this.btnenlargeSet.UseVisualStyleBackColor = false;
- this.btnenlargeSet.Click += new System.EventHandler(this.btnenlargeSet_Click);
- //
- // txtenlarge
- //
- this.txtenlarge.Location = new System.Drawing.Point(57, 8);
- this.txtenlarge.Name = "txtenlarge";
- this.txtenlarge.Size = new System.Drawing.Size(114, 28);
- this.txtenlarge.TabIndex = 1;
- //
- // lblFocus
- //
- this.lblFocus.AutoSize = true;
- this.lblFocus.BackColor = System.Drawing.Color.Transparent;
- this.lblFocus.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblFocus.Location = new System.Drawing.Point(4, 14);
- this.lblFocus.Name = "lblFocus";
- this.lblFocus.Size = new System.Drawing.Size(49, 20);
- this.lblFocus.TabIndex = 59;
- this.lblFocus.Text = "缩放";
- //
- // btnenlargeGet
- //
- this.btnenlargeGet.BackColor = System.Drawing.Color.Black;
- this.btnenlargeGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnenlargeGet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnenlargeGet.Font = new System.Drawing.Font("宋体", 9F);
- this.btnenlargeGet.ForeColor = System.Drawing.Color.White;
- this.btnenlargeGet.Location = new System.Drawing.Point(178, 4);
- this.btnenlargeGet.Margin = new System.Windows.Forms.Padding(0);
- this.btnenlargeGet.Name = "btnenlargeGet";
- this.btnenlargeGet.Size = new System.Drawing.Size(48, 36);
- this.btnenlargeGet.TabIndex = 59;
- this.btnenlargeGet.TabStop = false;
- this.btnenlargeGet.Text = "读";
- this.btnenlargeGet.UseVisualStyleBackColor = false;
- this.btnenlargeGet.Click += new System.EventHandler(this.btnenlargeGet_Click);
- //
- // panel2
- //
- this.panel2.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel2.Controls.Add(this.btnBrightnessSet);
- this.panel2.Controls.Add(this.txtBrightness);
- this.panel2.Controls.Add(this.label1);
- this.panel2.Controls.Add(this.btnBrightnessGet);
- this.panel2.Location = new System.Drawing.Point(334, 279);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(274, 45);
- this.panel2.TabIndex = 58;
- //
- // btnBrightnessSet
- //
- this.btnBrightnessSet.BackColor = System.Drawing.Color.White;
- this.btnBrightnessSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnBrightnessSet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnBrightnessSet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnBrightnessSet.ForeColor = System.Drawing.Color.Black;
- this.btnBrightnessSet.Location = new System.Drawing.Point(224, 4);
- this.btnBrightnessSet.Name = "btnBrightnessSet";
- this.btnBrightnessSet.Size = new System.Drawing.Size(48, 36);
- this.btnBrightnessSet.TabIndex = 60;
- this.btnBrightnessSet.TabStop = false;
- this.btnBrightnessSet.Text = "写";
- this.btnBrightnessSet.UseVisualStyleBackColor = false;
- this.btnBrightnessSet.Click += new System.EventHandler(this.btnBrightnessSet_Click);
- //
- // txtBrightness
- //
- this.txtBrightness.Location = new System.Drawing.Point(57, 8);
- this.txtBrightness.Name = "txtBrightness";
- this.txtBrightness.Size = new System.Drawing.Size(114, 28);
- this.txtBrightness.TabIndex = 59;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label1.Location = new System.Drawing.Point(4, 14);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(49, 20);
- this.label1.TabIndex = 59;
- this.label1.Text = "亮度";
- //
- // btnBrightnessGet
- //
- this.btnBrightnessGet.BackColor = System.Drawing.Color.Black;
- this.btnBrightnessGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnBrightnessGet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnBrightnessGet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnBrightnessGet.ForeColor = System.Drawing.Color.White;
- this.btnBrightnessGet.Location = new System.Drawing.Point(178, 4);
- this.btnBrightnessGet.Name = "btnBrightnessGet";
- this.btnBrightnessGet.Size = new System.Drawing.Size(48, 36);
- this.btnBrightnessGet.TabIndex = 59;
- this.btnBrightnessGet.TabStop = false;
- this.btnBrightnessGet.Text = "读";
- this.btnBrightnessGet.UseVisualStyleBackColor = false;
- this.btnBrightnessGet.Click += new System.EventHandler(this.btnBrightnessGet_Click);
- //
- // panel3
- //
- this.panel3.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel3.Controls.Add(this.btnTiltAngleSet);
- this.panel3.Controls.Add(this.txtTiltAngle);
- this.panel3.Controls.Add(this.label2);
- this.panel3.Controls.Add(this.btnTiltAngleGet);
- this.panel3.Location = new System.Drawing.Point(624, 279);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(274, 45);
- this.panel3.TabIndex = 58;
- //
- // btnTiltAngleSet
- //
- this.btnTiltAngleSet.BackColor = System.Drawing.Color.White;
- this.btnTiltAngleSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnTiltAngleSet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnTiltAngleSet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnTiltAngleSet.ForeColor = System.Drawing.Color.Black;
- this.btnTiltAngleSet.Location = new System.Drawing.Point(224, 4);
- this.btnTiltAngleSet.Name = "btnTiltAngleSet";
- this.btnTiltAngleSet.Size = new System.Drawing.Size(48, 36);
- this.btnTiltAngleSet.TabIndex = 60;
- this.btnTiltAngleSet.TabStop = false;
- this.btnTiltAngleSet.Text = "写";
- this.btnTiltAngleSet.UseVisualStyleBackColor = false;
- this.btnTiltAngleSet.Click += new System.EventHandler(this.btnTiltAngleSet_Click);
- //
- // txtTiltAngle
- //
- this.txtTiltAngle.Location = new System.Drawing.Point(88, 8);
- this.txtTiltAngle.Name = "txtTiltAngle";
- this.txtTiltAngle.Size = new System.Drawing.Size(82, 28);
- this.txtTiltAngle.TabIndex = 59;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label2.Location = new System.Drawing.Point(4, 14);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(89, 20);
- this.label2.TabIndex = 59;
- this.label2.Text = "倾斜矫正";
- //
- // btnTiltAngleGet
- //
- this.btnTiltAngleGet.BackColor = System.Drawing.Color.Black;
- this.btnTiltAngleGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnTiltAngleGet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnTiltAngleGet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnTiltAngleGet.ForeColor = System.Drawing.Color.White;
- this.btnTiltAngleGet.Location = new System.Drawing.Point(178, 4);
- this.btnTiltAngleGet.Name = "btnTiltAngleGet";
- this.btnTiltAngleGet.Size = new System.Drawing.Size(48, 36);
- this.btnTiltAngleGet.TabIndex = 59;
- this.btnTiltAngleGet.TabStop = false;
- this.btnTiltAngleGet.Text = "读";
- this.btnTiltAngleGet.UseVisualStyleBackColor = false;
- this.btnTiltAngleGet.Click += new System.EventHandler(this.btnTiltAngleGet_Click);
- //
- // panel4
- //
- this.panel4.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel4.Controls.Add(this.btnAstigmatismXSet);
- this.panel4.Controls.Add(this.txtAstigmatismX);
- this.panel4.Controls.Add(this.label3);
- this.panel4.Controls.Add(this.btnAstigmatismXGet);
- this.panel4.Location = new System.Drawing.Point(914, 279);
- this.panel4.Name = "panel4";
- this.panel4.Size = new System.Drawing.Size(274, 45);
- this.panel4.TabIndex = 58;
- //
- // btnAstigmatismXSet
- //
- this.btnAstigmatismXSet.BackColor = System.Drawing.Color.White;
- this.btnAstigmatismXSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnAstigmatismXSet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnAstigmatismXSet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnAstigmatismXSet.ForeColor = System.Drawing.Color.Black;
- this.btnAstigmatismXSet.Location = new System.Drawing.Point(224, 4);
- this.btnAstigmatismXSet.Name = "btnAstigmatismXSet";
- this.btnAstigmatismXSet.Size = new System.Drawing.Size(48, 36);
- this.btnAstigmatismXSet.TabIndex = 60;
- this.btnAstigmatismXSet.TabStop = false;
- this.btnAstigmatismXSet.Text = "写";
- this.btnAstigmatismXSet.UseVisualStyleBackColor = false;
- this.btnAstigmatismXSet.Click += new System.EventHandler(this.btnAstigmatismXSet_Click);
- //
- // txtAstigmatismX
- //
- this.txtAstigmatismX.Location = new System.Drawing.Point(90, 8);
- this.txtAstigmatismX.Name = "txtAstigmatismX";
- this.txtAstigmatismX.Size = new System.Drawing.Size(80, 28);
- this.txtAstigmatismX.TabIndex = 59;
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label3.Location = new System.Drawing.Point(4, 14);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(79, 20);
- this.label3.TabIndex = 59;
- this.label3.Text = "消像散X";
- //
- // btnAstigmatismXGet
- //
- this.btnAstigmatismXGet.BackColor = System.Drawing.Color.Black;
- this.btnAstigmatismXGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnAstigmatismXGet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnAstigmatismXGet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnAstigmatismXGet.ForeColor = System.Drawing.Color.White;
- this.btnAstigmatismXGet.Location = new System.Drawing.Point(178, 4);
- this.btnAstigmatismXGet.Name = "btnAstigmatismXGet";
- this.btnAstigmatismXGet.Size = new System.Drawing.Size(48, 36);
- this.btnAstigmatismXGet.TabIndex = 59;
- this.btnAstigmatismXGet.TabStop = false;
- this.btnAstigmatismXGet.Text = "读";
- this.btnAstigmatismXGet.UseVisualStyleBackColor = false;
- this.btnAstigmatismXGet.Click += new System.EventHandler(this.btnAstigmatismXGet_Click);
- //
- // panel5
- //
- this.panel5.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel5.Controls.Add(this.txtPixelSize);
- this.panel5.Controls.Add(this.label4);
- this.panel5.Controls.Add(this.btnPixelSizeGet);
- this.panel5.Location = new System.Drawing.Point(1203, 279);
- this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(234, 45);
- this.panel5.TabIndex = 58;
- //
- // txtPixelSize
- //
- this.txtPixelSize.Location = new System.Drawing.Point(90, 8);
- this.txtPixelSize.Name = "txtPixelSize";
- this.txtPixelSize.Size = new System.Drawing.Size(80, 28);
- this.txtPixelSize.TabIndex = 59;
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label4.Location = new System.Drawing.Point(4, 14);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(89, 20);
- this.label4.TabIndex = 59;
- this.label4.Text = "像素尺寸";
- //
- // btnPixelSizeGet
- //
- this.btnPixelSizeGet.BackColor = System.Drawing.Color.Black;
- this.btnPixelSizeGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnPixelSizeGet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnPixelSizeGet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnPixelSizeGet.ForeColor = System.Drawing.Color.White;
- this.btnPixelSizeGet.Location = new System.Drawing.Point(178, 4);
- this.btnPixelSizeGet.Name = "btnPixelSizeGet";
- this.btnPixelSizeGet.Size = new System.Drawing.Size(48, 36);
- this.btnPixelSizeGet.TabIndex = 59;
- this.btnPixelSizeGet.TabStop = false;
- this.btnPixelSizeGet.Text = "读";
- this.btnPixelSizeGet.UseVisualStyleBackColor = false;
- this.btnPixelSizeGet.Click += new System.EventHandler(this.btnPixelSizeGet_Click);
- //
- // panel8
- //
- this.panel8.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel8.Controls.Add(this.btnAstigmatismYSet);
- this.panel8.Controls.Add(this.txtAstigmatismY);
- this.panel8.Controls.Add(this.label6);
- this.panel8.Controls.Add(this.btnAstigmatismYGet);
- this.panel8.Location = new System.Drawing.Point(914, 340);
- this.panel8.Name = "panel8";
- this.panel8.Size = new System.Drawing.Size(274, 45);
- this.panel8.TabIndex = 68;
- //
- // btnAstigmatismYSet
- //
- this.btnAstigmatismYSet.BackColor = System.Drawing.Color.White;
- this.btnAstigmatismYSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnAstigmatismYSet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnAstigmatismYSet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnAstigmatismYSet.ForeColor = System.Drawing.Color.Black;
- this.btnAstigmatismYSet.Location = new System.Drawing.Point(224, 4);
- this.btnAstigmatismYSet.Name = "btnAstigmatismYSet";
- this.btnAstigmatismYSet.Size = new System.Drawing.Size(48, 36);
- this.btnAstigmatismYSet.TabIndex = 60;
- this.btnAstigmatismYSet.TabStop = false;
- this.btnAstigmatismYSet.Text = "写";
- this.btnAstigmatismYSet.UseVisualStyleBackColor = false;
- this.btnAstigmatismYSet.Click += new System.EventHandler(this.btnAstigmatismYSet_Click);
- //
- // txtAstigmatismY
- //
- this.txtAstigmatismY.Location = new System.Drawing.Point(90, 8);
- this.txtAstigmatismY.Name = "txtAstigmatismY";
- this.txtAstigmatismY.Size = new System.Drawing.Size(80, 28);
- this.txtAstigmatismY.TabIndex = 59;
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label6.Location = new System.Drawing.Point(4, 14);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(79, 20);
- this.label6.TabIndex = 59;
- this.label6.Text = "消像散Y";
- //
- // btnAstigmatismYGet
- //
- this.btnAstigmatismYGet.BackColor = System.Drawing.Color.Black;
- this.btnAstigmatismYGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnAstigmatismYGet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnAstigmatismYGet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnAstigmatismYGet.ForeColor = System.Drawing.Color.White;
- this.btnAstigmatismYGet.Location = new System.Drawing.Point(178, 4);
- this.btnAstigmatismYGet.Name = "btnAstigmatismYGet";
- this.btnAstigmatismYGet.Size = new System.Drawing.Size(48, 36);
- this.btnAstigmatismYGet.TabIndex = 59;
- this.btnAstigmatismYGet.TabStop = false;
- this.btnAstigmatismYGet.Text = "读";
- this.btnAstigmatismYGet.UseVisualStyleBackColor = false;
- this.btnAstigmatismYGet.Click += new System.EventHandler(this.btnAstigmatismYGet_Click);
- //
- // panel9
- //
- this.panel9.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel9.Controls.Add(this.btnScanRotationSet);
- this.panel9.Controls.Add(this.txtScanRotation);
- this.panel9.Controls.Add(this.label7);
- this.panel9.Controls.Add(this.btnScanRotationGet);
- this.panel9.Location = new System.Drawing.Point(624, 340);
- this.panel9.Name = "panel9";
- this.panel9.Size = new System.Drawing.Size(274, 45);
- this.panel9.TabIndex = 69;
- //
- // btnScanRotationSet
- //
- this.btnScanRotationSet.BackColor = System.Drawing.Color.White;
- this.btnScanRotationSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnScanRotationSet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnScanRotationSet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnScanRotationSet.ForeColor = System.Drawing.Color.Black;
- this.btnScanRotationSet.Location = new System.Drawing.Point(224, 4);
- this.btnScanRotationSet.Name = "btnScanRotationSet";
- this.btnScanRotationSet.Size = new System.Drawing.Size(48, 36);
- this.btnScanRotationSet.TabIndex = 60;
- this.btnScanRotationSet.TabStop = false;
- this.btnScanRotationSet.Text = "写";
- this.btnScanRotationSet.UseVisualStyleBackColor = false;
- this.btnScanRotationSet.Click += new System.EventHandler(this.btnScanRotationSet_Click);
- //
- // txtScanRotation
- //
- this.txtScanRotation.Location = new System.Drawing.Point(88, 8);
- this.txtScanRotation.Name = "txtScanRotation";
- this.txtScanRotation.Size = new System.Drawing.Size(82, 28);
- this.txtScanRotation.TabIndex = 59;
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.BackColor = System.Drawing.Color.Transparent;
- this.label7.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label7.Location = new System.Drawing.Point(4, 14);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(89, 20);
- this.label7.TabIndex = 59;
- this.label7.Text = "旋转角度";
- //
- // btnScanRotationGet
- //
- this.btnScanRotationGet.BackColor = System.Drawing.Color.Black;
- this.btnScanRotationGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnScanRotationGet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnScanRotationGet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnScanRotationGet.ForeColor = System.Drawing.Color.White;
- this.btnScanRotationGet.Location = new System.Drawing.Point(178, 4);
- this.btnScanRotationGet.Name = "btnScanRotationGet";
- this.btnScanRotationGet.Size = new System.Drawing.Size(48, 36);
- this.btnScanRotationGet.TabIndex = 59;
- this.btnScanRotationGet.TabStop = false;
- this.btnScanRotationGet.Text = "读";
- this.btnScanRotationGet.UseVisualStyleBackColor = false;
- this.btnScanRotationGet.Click += new System.EventHandler(this.btnScanRotationGet_Click);
- //
- // panel10
- //
- this.panel10.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel10.Controls.Add(this.btnContrastSet);
- this.panel10.Controls.Add(this.txtContrast);
- this.panel10.Controls.Add(this.label8);
- this.panel10.Controls.Add(this.btnContrastGet);
- this.panel10.Location = new System.Drawing.Point(334, 340);
- this.panel10.Name = "panel10";
- this.panel10.Size = new System.Drawing.Size(274, 45);
- this.panel10.TabIndex = 70;
- //
- // btnContrastSet
- //
- this.btnContrastSet.BackColor = System.Drawing.Color.White;
- this.btnContrastSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnContrastSet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnContrastSet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnContrastSet.ForeColor = System.Drawing.Color.Black;
- this.btnContrastSet.Location = new System.Drawing.Point(224, 4);
- this.btnContrastSet.Name = "btnContrastSet";
- this.btnContrastSet.Size = new System.Drawing.Size(48, 36);
- this.btnContrastSet.TabIndex = 60;
- this.btnContrastSet.TabStop = false;
- this.btnContrastSet.Text = "写";
- this.btnContrastSet.UseVisualStyleBackColor = false;
- this.btnContrastSet.Click += new System.EventHandler(this.btnContrastSet_Click);
- //
- // txtContrast
- //
- this.txtContrast.Location = new System.Drawing.Point(70, 8);
- this.txtContrast.Name = "txtContrast";
- this.txtContrast.Size = new System.Drawing.Size(100, 28);
- this.txtContrast.TabIndex = 59;
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.BackColor = System.Drawing.Color.Transparent;
- this.label8.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label8.Location = new System.Drawing.Point(4, 14);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(69, 20);
- this.label8.TabIndex = 59;
- this.label8.Text = "对比度";
- //
- // btnContrastGet
- //
- this.btnContrastGet.BackColor = System.Drawing.Color.Black;
- this.btnContrastGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnContrastGet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnContrastGet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnContrastGet.ForeColor = System.Drawing.Color.White;
- this.btnContrastGet.Location = new System.Drawing.Point(178, 4);
- this.btnContrastGet.Name = "btnContrastGet";
- this.btnContrastGet.Size = new System.Drawing.Size(48, 36);
- this.btnContrastGet.TabIndex = 59;
- this.btnContrastGet.TabStop = false;
- this.btnContrastGet.Text = "读";
- this.btnContrastGet.UseVisualStyleBackColor = false;
- this.btnContrastGet.Click += new System.EventHandler(this.btnContrastGet_Click);
- //
- // panel11
- //
- this.panel11.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel11.Controls.Add(this.btnWDSet);
- this.panel11.Controls.Add(this.txtWD);
- this.panel11.Controls.Add(this.label9);
- this.panel11.Controls.Add(this.btnWDGet);
- this.panel11.Location = new System.Drawing.Point(45, 340);
- this.panel11.Name = "panel11";
- this.panel11.Size = new System.Drawing.Size(274, 45);
- this.panel11.TabIndex = 71;
- //
- // btnWDSet
- //
- this.btnWDSet.BackColor = System.Drawing.Color.White;
- this.btnWDSet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnWDSet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnWDSet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnWDSet.ForeColor = System.Drawing.Color.Black;
- this.btnWDSet.Location = new System.Drawing.Point(224, 4);
- this.btnWDSet.Name = "btnWDSet";
- this.btnWDSet.Size = new System.Drawing.Size(48, 36);
- this.btnWDSet.TabIndex = 60;
- this.btnWDSet.TabStop = false;
- this.btnWDSet.Text = "写";
- this.btnWDSet.UseVisualStyleBackColor = false;
- this.btnWDSet.Click += new System.EventHandler(this.btnWDSet_Click);
- //
- // txtWD
- //
- this.txtWD.Location = new System.Drawing.Point(57, 8);
- this.txtWD.Name = "txtWD";
- this.txtWD.Size = new System.Drawing.Size(114, 28);
- this.txtWD.TabIndex = 59;
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.BackColor = System.Drawing.Color.Transparent;
- this.label9.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label9.Location = new System.Drawing.Point(4, 14);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(49, 20);
- this.label9.TabIndex = 59;
- this.label9.Text = "焦距";
- //
- // btnWDGet
- //
- this.btnWDGet.BackColor = System.Drawing.Color.Black;
- this.btnWDGet.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnWDGet.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnWDGet.Font = new System.Drawing.Font("宋体", 10F);
- this.btnWDGet.ForeColor = System.Drawing.Color.White;
- this.btnWDGet.Location = new System.Drawing.Point(178, 4);
- this.btnWDGet.Name = "btnWDGet";
- this.btnWDGet.Size = new System.Drawing.Size(48, 36);
- this.btnWDGet.TabIndex = 59;
- this.btnWDGet.TabStop = false;
- this.btnWDGet.Text = "读";
- this.btnWDGet.UseVisualStyleBackColor = false;
- this.btnWDGet.Click += new System.EventHandler(this.btnWDGet_Click);
- //
- // panel7
- //
- this.panel7.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel7.Controls.Add(this.btnStageSetM);
- this.panel7.Controls.Add(this.txtStageM);
- this.panel7.Controls.Add(this.label5);
- this.panel7.Controls.Add(this.btnStageGetM);
- this.panel7.Location = new System.Drawing.Point(624, 483);
- this.panel7.Name = "panel7";
- this.panel7.Size = new System.Drawing.Size(274, 45);
- this.panel7.TabIndex = 75;
- //
- // btnStageSetM
- //
- this.btnStageSetM.BackColor = System.Drawing.Color.White;
- this.btnStageSetM.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnStageSetM.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnStageSetM.Font = new System.Drawing.Font("宋体", 10F);
- this.btnStageSetM.ForeColor = System.Drawing.Color.Black;
- this.btnStageSetM.Location = new System.Drawing.Point(224, 4);
- this.btnStageSetM.Name = "btnStageSetM";
- this.btnStageSetM.Size = new System.Drawing.Size(48, 36);
- this.btnStageSetM.TabIndex = 60;
- this.btnStageSetM.TabStop = false;
- this.btnStageSetM.Text = "写";
- this.btnStageSetM.UseVisualStyleBackColor = false;
- this.btnStageSetM.Click += new System.EventHandler(this.btnStageSetM_Click);
- //
- // txtStageM
- //
- this.txtStageM.Location = new System.Drawing.Point(102, 8);
- this.txtStageM.Name = "txtStageM";
- this.txtStageM.Size = new System.Drawing.Size(68, 28);
- this.txtStageM.TabIndex = 59;
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label5.Location = new System.Drawing.Point(4, 14);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(99, 20);
- this.label5.TabIndex = 59;
- this.label5.Text = "样品台M轴";
- //
- // btnStageGetM
- //
- this.btnStageGetM.BackColor = System.Drawing.Color.Black;
- this.btnStageGetM.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnStageGetM.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnStageGetM.Font = new System.Drawing.Font("宋体", 10F);
- this.btnStageGetM.ForeColor = System.Drawing.Color.White;
- this.btnStageGetM.Location = new System.Drawing.Point(178, 4);
- this.btnStageGetM.Name = "btnStageGetM";
- this.btnStageGetM.Size = new System.Drawing.Size(48, 36);
- this.btnStageGetM.TabIndex = 59;
- this.btnStageGetM.TabStop = false;
- this.btnStageGetM.Text = "读";
- this.btnStageGetM.UseVisualStyleBackColor = false;
- this.btnStageGetM.Click += new System.EventHandler(this.btnStageGetM_Click);
- //
- // panel12
- //
- this.panel12.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel12.Controls.Add(this.btnStageSetR);
- this.panel12.Controls.Add(this.txtStageR);
- this.panel12.Controls.Add(this.label10);
- this.panel12.Controls.Add(this.btnStageGetR);
- this.panel12.Location = new System.Drawing.Point(334, 483);
- this.panel12.Name = "panel12";
- this.panel12.Size = new System.Drawing.Size(274, 45);
- this.panel12.TabIndex = 76;
- //
- // btnStageSetR
- //
- this.btnStageSetR.BackColor = System.Drawing.Color.White;
- this.btnStageSetR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnStageSetR.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnStageSetR.Font = new System.Drawing.Font("宋体", 10F);
- this.btnStageSetR.ForeColor = System.Drawing.Color.Black;
- this.btnStageSetR.Location = new System.Drawing.Point(224, 4);
- this.btnStageSetR.Name = "btnStageSetR";
- this.btnStageSetR.Size = new System.Drawing.Size(48, 36);
- this.btnStageSetR.TabIndex = 60;
- this.btnStageSetR.TabStop = false;
- this.btnStageSetR.Text = "写";
- this.btnStageSetR.UseVisualStyleBackColor = false;
- this.btnStageSetR.Click += new System.EventHandler(this.btnStageSetR_Click);
- //
- // txtStageR
- //
- this.txtStageR.Location = new System.Drawing.Point(102, 8);
- this.txtStageR.Name = "txtStageR";
- this.txtStageR.Size = new System.Drawing.Size(68, 28);
- this.txtStageR.TabIndex = 59;
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.BackColor = System.Drawing.Color.Transparent;
- this.label10.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label10.Location = new System.Drawing.Point(4, 14);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(99, 20);
- this.label10.TabIndex = 59;
- this.label10.Text = "样品台R轴";
- //
- // btnStageGetR
- //
- this.btnStageGetR.BackColor = System.Drawing.Color.Black;
- this.btnStageGetR.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnStageGetR.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnStageGetR.Font = new System.Drawing.Font("宋体", 10F);
- this.btnStageGetR.ForeColor = System.Drawing.Color.White;
- this.btnStageGetR.Location = new System.Drawing.Point(178, 4);
- this.btnStageGetR.Name = "btnStageGetR";
- this.btnStageGetR.Size = new System.Drawing.Size(48, 36);
- this.btnStageGetR.TabIndex = 59;
- this.btnStageGetR.TabStop = false;
- this.btnStageGetR.Text = "读";
- this.btnStageGetR.UseVisualStyleBackColor = false;
- this.btnStageGetR.Click += new System.EventHandler(this.btnStageGetR_Click);
- //
- // panel13
- //
- this.panel13.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel13.Controls.Add(this.btnStageSetT);
- this.panel13.Controls.Add(this.txtStageT);
- this.panel13.Controls.Add(this.label11);
- this.panel13.Controls.Add(this.btnStageGetT);
- this.panel13.Location = new System.Drawing.Point(45, 483);
- this.panel13.Name = "panel13";
- this.panel13.Size = new System.Drawing.Size(274, 45);
- this.panel13.TabIndex = 77;
- //
- // btnStageSetT
- //
- this.btnStageSetT.BackColor = System.Drawing.Color.White;
- this.btnStageSetT.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnStageSetT.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnStageSetT.Font = new System.Drawing.Font("宋体", 10F);
- this.btnStageSetT.ForeColor = System.Drawing.Color.Black;
- this.btnStageSetT.Location = new System.Drawing.Point(224, 4);
- this.btnStageSetT.Name = "btnStageSetT";
- this.btnStageSetT.Size = new System.Drawing.Size(48, 36);
- this.btnStageSetT.TabIndex = 60;
- this.btnStageSetT.TabStop = false;
- this.btnStageSetT.Text = "写";
- this.btnStageSetT.UseVisualStyleBackColor = false;
- this.btnStageSetT.Click += new System.EventHandler(this.btnStageSetT_Click);
- //
- // txtStageT
- //
- this.txtStageT.Location = new System.Drawing.Point(102, 8);
- this.txtStageT.Name = "txtStageT";
- this.txtStageT.Size = new System.Drawing.Size(68, 28);
- this.txtStageT.TabIndex = 59;
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.BackColor = System.Drawing.Color.Transparent;
- this.label11.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label11.Location = new System.Drawing.Point(4, 14);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(99, 20);
- this.label11.TabIndex = 59;
- this.label11.Text = "样品台T轴";
- //
- // btnStageGetT
- //
- this.btnStageGetT.BackColor = System.Drawing.Color.Black;
- this.btnStageGetT.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnStageGetT.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnStageGetT.Font = new System.Drawing.Font("宋体", 10F);
- this.btnStageGetT.ForeColor = System.Drawing.Color.White;
- this.btnStageGetT.Location = new System.Drawing.Point(178, 4);
- this.btnStageGetT.Name = "btnStageGetT";
- this.btnStageGetT.Size = new System.Drawing.Size(48, 36);
- this.btnStageGetT.TabIndex = 59;
- this.btnStageGetT.TabStop = false;
- this.btnStageGetT.Text = "读";
- this.btnStageGetT.UseVisualStyleBackColor = false;
- this.btnStageGetT.Click += new System.EventHandler(this.btnStageGetT_Click);
- //
- // panel14
- //
- this.panel14.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel14.Controls.Add(this.btnStageSetZ);
- this.panel14.Controls.Add(this.txtStageZ);
- this.panel14.Controls.Add(this.label12);
- this.panel14.Controls.Add(this.btnStageGetZ);
- this.panel14.Location = new System.Drawing.Point(624, 422);
- this.panel14.Name = "panel14";
- this.panel14.Size = new System.Drawing.Size(274, 45);
- this.panel14.TabIndex = 72;
- //
- // btnStageSetZ
- //
- this.btnStageSetZ.BackColor = System.Drawing.Color.White;
- this.btnStageSetZ.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnStageSetZ.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnStageSetZ.Font = new System.Drawing.Font("宋体", 10F);
- this.btnStageSetZ.ForeColor = System.Drawing.Color.Black;
- this.btnStageSetZ.Location = new System.Drawing.Point(224, 4);
- this.btnStageSetZ.Name = "btnStageSetZ";
- this.btnStageSetZ.Size = new System.Drawing.Size(48, 36);
- this.btnStageSetZ.TabIndex = 60;
- this.btnStageSetZ.TabStop = false;
- this.btnStageSetZ.Text = "写";
- this.btnStageSetZ.UseVisualStyleBackColor = false;
- this.btnStageSetZ.Click += new System.EventHandler(this.btnStageSetZ_Click);
- //
- // txtStageZ
- //
- this.txtStageZ.Location = new System.Drawing.Point(102, 8);
- this.txtStageZ.Name = "txtStageZ";
- this.txtStageZ.Size = new System.Drawing.Size(68, 28);
- this.txtStageZ.TabIndex = 59;
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.BackColor = System.Drawing.Color.Transparent;
- this.label12.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label12.Location = new System.Drawing.Point(4, 14);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(99, 20);
- this.label12.TabIndex = 59;
- this.label12.Text = "样品台Z轴";
- //
- // btnStageGetZ
- //
- this.btnStageGetZ.BackColor = System.Drawing.Color.Black;
- this.btnStageGetZ.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnStageGetZ.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnStageGetZ.Font = new System.Drawing.Font("宋体", 10F);
- this.btnStageGetZ.ForeColor = System.Drawing.Color.White;
- this.btnStageGetZ.Location = new System.Drawing.Point(178, 4);
- this.btnStageGetZ.Name = "btnStageGetZ";
- this.btnStageGetZ.Size = new System.Drawing.Size(48, 36);
- this.btnStageGetZ.TabIndex = 59;
- this.btnStageGetZ.TabStop = false;
- this.btnStageGetZ.Text = "读";
- this.btnStageGetZ.UseVisualStyleBackColor = false;
- this.btnStageGetZ.Click += new System.EventHandler(this.btnStageGetZ_Click);
- //
- // panel15
- //
- this.panel15.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel15.Controls.Add(this.btnStageSetY);
- this.panel15.Controls.Add(this.txtStageY);
- this.panel15.Controls.Add(this.label13);
- this.panel15.Controls.Add(this.btnStageGetY);
- this.panel15.Location = new System.Drawing.Point(334, 422);
- this.panel15.Name = "panel15";
- this.panel15.Size = new System.Drawing.Size(274, 45);
- this.panel15.TabIndex = 73;
- //
- // btnStageSetY
- //
- this.btnStageSetY.BackColor = System.Drawing.Color.White;
- this.btnStageSetY.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnStageSetY.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnStageSetY.Font = new System.Drawing.Font("宋体", 10F);
- this.btnStageSetY.ForeColor = System.Drawing.Color.Black;
- this.btnStageSetY.Location = new System.Drawing.Point(224, 4);
- this.btnStageSetY.Name = "btnStageSetY";
- this.btnStageSetY.Size = new System.Drawing.Size(48, 36);
- this.btnStageSetY.TabIndex = 60;
- this.btnStageSetY.TabStop = false;
- this.btnStageSetY.Text = "写";
- this.btnStageSetY.UseVisualStyleBackColor = false;
- this.btnStageSetY.Click += new System.EventHandler(this.btnStageSetY_Click);
- //
- // txtStageY
- //
- this.txtStageY.Location = new System.Drawing.Point(102, 8);
- this.txtStageY.Name = "txtStageY";
- this.txtStageY.Size = new System.Drawing.Size(68, 28);
- this.txtStageY.TabIndex = 59;
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.BackColor = System.Drawing.Color.Transparent;
- this.label13.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label13.Location = new System.Drawing.Point(4, 14);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(99, 20);
- this.label13.TabIndex = 59;
- this.label13.Text = "样品台Y轴";
- //
- // btnStageGetY
- //
- this.btnStageGetY.BackColor = System.Drawing.Color.Black;
- this.btnStageGetY.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnStageGetY.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnStageGetY.Font = new System.Drawing.Font("宋体", 10F);
- this.btnStageGetY.ForeColor = System.Drawing.Color.White;
- this.btnStageGetY.Location = new System.Drawing.Point(178, 4);
- this.btnStageGetY.Name = "btnStageGetY";
- this.btnStageGetY.Size = new System.Drawing.Size(48, 36);
- this.btnStageGetY.TabIndex = 59;
- this.btnStageGetY.TabStop = false;
- this.btnStageGetY.Text = "读";
- this.btnStageGetY.UseVisualStyleBackColor = false;
- this.btnStageGetY.Click += new System.EventHandler(this.btnStageGetY_Click);
- //
- // panel16
- //
- this.panel16.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel16.Controls.Add(this.btnStageSetX);
- this.panel16.Controls.Add(this.txtStageX);
- this.panel16.Controls.Add(this.label14);
- this.panel16.Controls.Add(this.btnStageGetX);
- this.panel16.Location = new System.Drawing.Point(45, 422);
- this.panel16.Name = "panel16";
- this.panel16.Size = new System.Drawing.Size(274, 45);
- this.panel16.TabIndex = 74;
- //
- // btnStageSetX
- //
- this.btnStageSetX.BackColor = System.Drawing.Color.White;
- this.btnStageSetX.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnStageSetX.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnStageSetX.Font = new System.Drawing.Font("宋体", 10F);
- this.btnStageSetX.ForeColor = System.Drawing.Color.Black;
- this.btnStageSetX.Location = new System.Drawing.Point(224, 4);
- this.btnStageSetX.Name = "btnStageSetX";
- this.btnStageSetX.Size = new System.Drawing.Size(48, 36);
- this.btnStageSetX.TabIndex = 60;
- this.btnStageSetX.TabStop = false;
- this.btnStageSetX.Text = "写";
- this.btnStageSetX.UseVisualStyleBackColor = false;
- this.btnStageSetX.Click += new System.EventHandler(this.btnStageSetX_Click);
- //
- // txtStageX
- //
- this.txtStageX.Location = new System.Drawing.Point(102, 8);
- this.txtStageX.Name = "txtStageX";
- this.txtStageX.Size = new System.Drawing.Size(68, 28);
- this.txtStageX.TabIndex = 59;
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.BackColor = System.Drawing.Color.Transparent;
- this.label14.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label14.Location = new System.Drawing.Point(4, 14);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(99, 20);
- this.label14.TabIndex = 59;
- this.label14.Text = "样品台X轴";
- //
- // btnStageGetX
- //
- this.btnStageGetX.BackColor = System.Drawing.Color.Black;
- this.btnStageGetX.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnStageGetX.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnStageGetX.Font = new System.Drawing.Font("宋体", 10F);
- this.btnStageGetX.ForeColor = System.Drawing.Color.White;
- this.btnStageGetX.Location = new System.Drawing.Point(178, 4);
- this.btnStageGetX.Name = "btnStageGetX";
- this.btnStageGetX.Size = new System.Drawing.Size(48, 36);
- this.btnStageGetX.TabIndex = 59;
- this.btnStageGetX.TabStop = false;
- this.btnStageGetX.Text = "读";
- this.btnStageGetX.UseVisualStyleBackColor = false;
- this.btnStageGetX.Click += new System.EventHandler(this.btnStageGetX_Click);
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.BackColor = System.Drawing.Color.Transparent;
- this.label15.Font = new System.Drawing.Font("宋体", 11F);
- this.label15.ForeColor = System.Drawing.Color.White;
- this.label15.Location = new System.Drawing.Point(32, 186);
- this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(142, 22);
- this.label15.TabIndex = 78;
- this.label15.Text = "设备功能设置";
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.BackColor = System.Drawing.Color.Transparent;
- this.label22.Font = new System.Drawing.Font("宋体", 10F);
- this.label22.ForeColor = System.Drawing.Color.White;
- this.label22.Location = new System.Drawing.Point(40, 234);
- this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(119, 20);
- this.label22.TabIndex = 78;
- this.label22.Text = "SEM功能设置";
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.BackColor = System.Drawing.Color.Transparent;
- this.label23.Font = new System.Drawing.Font("宋体", 10F);
- this.label23.ForeColor = System.Drawing.Color.White;
- this.label23.Location = new System.Drawing.Point(40, 580);
- this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(119, 20);
- this.label23.TabIndex = 78;
- this.label23.Text = "FIB功能设置";
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.BackColor = System.Drawing.Color.Transparent;
- this.label24.Font = new System.Drawing.Font("宋体", 10F);
- this.label24.ForeColor = System.Drawing.Color.White;
- this.label24.Location = new System.Drawing.Point(46, 710);
- this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(109, 20);
- this.label24.TabIndex = 78;
- this.label24.Text = "PT功能设置";
- //
- // btnAutoWD
- //
- this.btnAutoWD.BackgroundImage = global::HOZProject.Properties.Resources.buttonBG;
- this.btnAutoWD.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnAutoWD.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnAutoWD.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnAutoWD.Font = new System.Drawing.Font("宋体", 9F);
- this.btnAutoWD.ForeColor = System.Drawing.Color.White;
- this.btnAutoWD.Location = new System.Drawing.Point(1200, 327);
- this.btnAutoWD.Margin = new System.Windows.Forms.Padding(4);
- this.btnAutoWD.Name = "btnAutoWD";
- this.btnAutoWD.Size = new System.Drawing.Size(120, 32);
- this.btnAutoWD.TabIndex = 80;
- this.btnAutoWD.Text = "自动对焦";
- this.btnAutoWD.UseVisualStyleBackColor = true;
- this.btnAutoWD.Click += new System.EventHandler(this.btnAutoWD_Click);
- //
- // btnAutoAstigmatism
- //
- this.btnAutoAstigmatism.BackgroundImage = global::HOZProject.Properties.Resources.buttonBG;
- this.btnAutoAstigmatism.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnAutoAstigmatism.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnAutoAstigmatism.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnAutoAstigmatism.Font = new System.Drawing.Font("宋体", 9F);
- this.btnAutoAstigmatism.ForeColor = System.Drawing.Color.White;
- this.btnAutoAstigmatism.Location = new System.Drawing.Point(1200, 357);
- this.btnAutoAstigmatism.Margin = new System.Windows.Forms.Padding(4);
- this.btnAutoAstigmatism.Name = "btnAutoAstigmatism";
- this.btnAutoAstigmatism.Size = new System.Drawing.Size(120, 32);
- this.btnAutoAstigmatism.TabIndex = 80;
- this.btnAutoAstigmatism.Text = " 自动消像散";
- this.btnAutoAstigmatism.UseVisualStyleBackColor = true;
- this.btnAutoAstigmatism.Click += new System.EventHandler(this.btnAutoAstigmatism_Click);
- //
- // btnAutoBrightness
- //
- this.btnAutoBrightness.BackgroundImage = global::HOZProject.Properties.Resources.buttonBG;
- this.btnAutoBrightness.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnAutoBrightness.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnAutoBrightness.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnAutoBrightness.Font = new System.Drawing.Font("宋体", 9F);
- this.btnAutoBrightness.ForeColor = System.Drawing.Color.White;
- this.btnAutoBrightness.Location = new System.Drawing.Point(1318, 327);
- this.btnAutoBrightness.Margin = new System.Windows.Forms.Padding(4);
- this.btnAutoBrightness.Name = "btnAutoBrightness";
- this.btnAutoBrightness.Size = new System.Drawing.Size(120, 62);
- this.btnAutoBrightness.TabIndex = 82;
- this.btnAutoBrightness.Text = "自动亮度 对比度";
- this.btnAutoBrightness.UseVisualStyleBackColor = true;
- this.btnAutoBrightness.Click += new System.EventHandler(this.btnAutoBrightness_Click);
- //
- // btnGetStagePosition
- //
- this.btnGetStagePosition.BackgroundImage = global::HOZProject.Properties.Resources.GetLocationBG;
- this.btnGetStagePosition.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnGetStagePosition.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnGetStagePosition.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
- this.btnGetStagePosition.Font = new System.Drawing.Font("宋体", 10F);
- this.btnGetStagePosition.ForeColor = System.Drawing.Color.White;
- this.btnGetStagePosition.Location = new System.Drawing.Point(914, 422);
- this.btnGetStagePosition.Margin = new System.Windows.Forms.Padding(4);
- this.btnGetStagePosition.Name = "btnGetStagePosition";
- this.btnGetStagePosition.Size = new System.Drawing.Size(123, 106);
- this.btnGetStagePosition.TabIndex = 83;
- this.btnGetStagePosition.Text = "获取位置";
- this.btnGetStagePosition.UseVisualStyleBackColor = true;
- this.btnGetStagePosition.Click += new System.EventHandler(this.btnGetStagePosition_Click);
- //
- // pbHT
- //
- this.pbHT.BackColor = System.Drawing.Color.Transparent;
- this.pbHT.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.pbHT.Cursor = System.Windows.Forms.Cursors.Hand;
- this.pbHT.Image = global::HOZProject.Properties.Resources.OFF;
- this.pbHT.Location = new System.Drawing.Point(1425, 231);
- this.pbHT.Name = "pbHT";
- this.pbHT.Size = new System.Drawing.Size(72, 28);
- this.pbHT.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
- this.pbHT.TabIndex = 0;
- this.pbHT.TabStop = false;
- this.pbHT.Click += new System.EventHandler(this.pbHT_Click);
- //
- // lblState
- //
- this.lblState.AutoSize = true;
- this.lblState.BackColor = System.Drawing.Color.Transparent;
- this.lblState.ForeColor = System.Drawing.Color.White;
- this.lblState.Location = new System.Drawing.Point(1340, 988);
- this.lblState.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.lblState.Name = "lblState";
- this.lblState.Size = new System.Drawing.Size(179, 18);
- this.lblState.TabIndex = 84;
- this.lblState.Tag = "";
- this.lblState.Text = "当前连接状态:未连接";
- this.lblState.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // panel6
- //
- this.panel6.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel6.Controls.Add(this.button1);
- this.panel6.Controls.Add(this.comboBox1);
- this.panel6.Controls.Add(this.label17);
- this.panel6.Location = new System.Drawing.Point(45, 618);
- this.panel6.Name = "panel6";
- this.panel6.Size = new System.Drawing.Size(393, 45);
- this.panel6.TabIndex = 77;
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Black;
- this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button1.Cursor = System.Windows.Forms.Cursors.Hand;
- this.button1.Font = new System.Drawing.Font("宋体", 10F);
- this.button1.ForeColor = System.Drawing.Color.White;
- this.button1.Location = new System.Drawing.Point(276, 4);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(114, 36);
- this.button1.TabIndex = 88;
- this.button1.TabStop = false;
- this.button1.Text = "执行";
- this.button1.UseVisualStyleBackColor = false;
- //
- // comboBox1
- //
- this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox1.FormattingEnabled = true;
- this.comboBox1.Location = new System.Drawing.Point(100, 8);
- this.comboBox1.Margin = new System.Windows.Forms.Padding(4);
- this.comboBox1.Name = "comboBox1";
- this.comboBox1.Size = new System.Drawing.Size(166, 26);
- this.comboBox1.TabIndex = 85;
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.BackColor = System.Drawing.Color.Transparent;
- this.label17.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label17.Location = new System.Drawing.Point(4, 14);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(89, 20);
- this.label17.TabIndex = 59;
- this.label17.Text = "选择模板";
- //
- // panel20
- //
- this.panel20.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel20.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel20.Controls.Add(this.button3);
- this.panel20.Controls.Add(this.textBox3);
- this.panel20.Controls.Add(this.label20);
- this.panel20.Controls.Add(this.button4);
- this.panel20.Location = new System.Drawing.Point(45, 742);
- this.panel20.Name = "panel20";
- this.panel20.Size = new System.Drawing.Size(274, 45);
- this.panel20.TabIndex = 87;
- //
- // button3
- //
- this.button3.BackColor = System.Drawing.Color.White;
- this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button3.Cursor = System.Windows.Forms.Cursors.Hand;
- this.button3.Font = new System.Drawing.Font("宋体", 10F);
- this.button3.ForeColor = System.Drawing.Color.Black;
- this.button3.Location = new System.Drawing.Point(224, 4);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(48, 36);
- this.button3.TabIndex = 60;
- this.button3.TabStop = false;
- this.button3.Text = "出";
- this.button3.UseVisualStyleBackColor = false;
- //
- // textBox3
- //
- this.textBox3.Location = new System.Drawing.Point(102, 8);
- this.textBox3.Name = "textBox3";
- this.textBox3.Size = new System.Drawing.Size(68, 28);
- this.textBox3.TabIndex = 59;
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.BackColor = System.Drawing.Color.Transparent;
- this.label20.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label20.Location = new System.Drawing.Point(4, 14);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(89, 20);
- this.label20.TabIndex = 59;
- this.label20.Text = "PT针操作";
- //
- // button4
- //
- this.button4.BackColor = System.Drawing.Color.Black;
- this.button4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button4.Cursor = System.Windows.Forms.Cursors.Hand;
- this.button4.Font = new System.Drawing.Font("宋体", 10F);
- this.button4.ForeColor = System.Drawing.Color.White;
- this.button4.Location = new System.Drawing.Point(178, 4);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(48, 36);
- this.button4.TabIndex = 59;
- this.button4.TabStop = false;
- this.button4.Text = "入";
- this.button4.UseVisualStyleBackColor = false;
- //
- // panel17
- //
- this.panel17.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel17.Controls.Add(this.button6);
- this.panel17.Controls.Add(this.button5);
- this.panel17.Controls.Add(this.textBox1);
- this.panel17.Controls.Add(this.label16);
- this.panel17.Location = new System.Drawing.Point(448, 618);
- this.panel17.Name = "panel17";
- this.panel17.Size = new System.Drawing.Size(675, 45);
- this.panel17.TabIndex = 87;
- //
- // button6
- //
- this.button6.BackColor = System.Drawing.Color.Black;
- this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button6.Cursor = System.Windows.Forms.Cursors.Hand;
- this.button6.Font = new System.Drawing.Font("宋体", 10F);
- this.button6.ForeColor = System.Drawing.Color.White;
- this.button6.Location = new System.Drawing.Point(558, 4);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(114, 36);
- this.button6.TabIndex = 89;
- this.button6.TabStop = false;
- this.button6.Text = "执行";
- this.button6.UseVisualStyleBackColor = false;
- //
- // button5
- //
- this.button5.BackColor = System.Drawing.Color.White;
- this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button5.Font = new System.Drawing.Font("宋体", 9F);
- this.button5.ForeColor = System.Drawing.Color.Black;
- this.button5.Location = new System.Drawing.Point(506, 4);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(48, 36);
- this.button5.TabIndex = 60;
- this.button5.TabStop = false;
- this.button5.Text = "...";
- this.button5.UseVisualStyleBackColor = false;
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(99, 8);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(403, 28);
- this.textBox1.TabIndex = 59;
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.BackColor = System.Drawing.Color.Transparent;
- this.label16.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label16.Location = new System.Drawing.Point(4, 14);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(89, 20);
- this.label16.TabIndex = 59;
- this.label16.Text = "选择模板";
- //
- // panel18
- //
- this.panel18.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel18.Controls.Add(this.button2);
- this.panel18.Controls.Add(this.button7);
- this.panel18.Controls.Add(this.textBox2);
- this.panel18.Controls.Add(this.label18);
- this.panel18.Location = new System.Drawing.Point(738, 742);
- this.panel18.Name = "panel18";
- this.panel18.Size = new System.Drawing.Size(675, 45);
- this.panel18.TabIndex = 89;
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Black;
- this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button2.Cursor = System.Windows.Forms.Cursors.Hand;
- this.button2.Font = new System.Drawing.Font("宋体", 10F);
- this.button2.ForeColor = System.Drawing.Color.White;
- this.button2.Location = new System.Drawing.Point(558, 4);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(114, 36);
- this.button2.TabIndex = 89;
- this.button2.TabStop = false;
- this.button2.Text = "执行";
- this.button2.UseVisualStyleBackColor = false;
- //
- // button7
- //
- this.button7.BackColor = System.Drawing.Color.White;
- this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button7.Font = new System.Drawing.Font("宋体", 9F);
- this.button7.ForeColor = System.Drawing.Color.Black;
- this.button7.Location = new System.Drawing.Point(506, 4);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(48, 36);
- this.button7.TabIndex = 60;
- this.button7.TabStop = false;
- this.button7.Text = "...";
- this.button7.UseVisualStyleBackColor = false;
- //
- // textBox2
- //
- this.textBox2.Location = new System.Drawing.Point(99, 8);
- this.textBox2.Name = "textBox2";
- this.textBox2.Size = new System.Drawing.Size(403, 28);
- this.textBox2.TabIndex = 59;
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.BackColor = System.Drawing.Color.Transparent;
- this.label18.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label18.Location = new System.Drawing.Point(4, 14);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(89, 20);
- this.label18.TabIndex = 59;
- this.label18.Text = "选择模板";
- //
- // panel19
- //
- this.panel19.BackgroundImage = global::HOZProject.Properties.Resources.FunItemBG;
- this.panel19.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.panel19.Controls.Add(this.button8);
- this.panel19.Controls.Add(this.comboBox2);
- this.panel19.Controls.Add(this.label19);
- this.panel19.Location = new System.Drawing.Point(334, 742);
- this.panel19.Name = "panel19";
- this.panel19.Size = new System.Drawing.Size(393, 45);
- this.panel19.TabIndex = 88;
- //
- // button8
- //
- this.button8.BackColor = System.Drawing.Color.Black;
- this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.button8.Cursor = System.Windows.Forms.Cursors.Hand;
- this.button8.Font = new System.Drawing.Font("宋体", 10F);
- this.button8.ForeColor = System.Drawing.Color.White;
- this.button8.Location = new System.Drawing.Point(276, 4);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(114, 36);
- this.button8.TabIndex = 88;
- this.button8.TabStop = false;
- this.button8.Text = "执行";
- this.button8.UseVisualStyleBackColor = false;
- //
- // comboBox2
- //
- this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox2.FormattingEnabled = true;
- this.comboBox2.Location = new System.Drawing.Point(100, 8);
- this.comboBox2.Margin = new System.Windows.Forms.Padding(4);
- this.comboBox2.Name = "comboBox2";
- this.comboBox2.Size = new System.Drawing.Size(166, 26);
- this.comboBox2.TabIndex = 85;
- //
- // label19
- //
- this.label19.AutoSize = true;
- this.label19.BackColor = System.Drawing.Color.Transparent;
- this.label19.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label19.Location = new System.Drawing.Point(4, 14);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(89, 20);
- this.label19.TabIndex = 59;
- this.label19.Text = "选择模板";
- //
- // groupBox1
- //
- this.groupBox1.BackColor = System.Drawing.Color.Transparent;
- this.groupBox1.Controls.Add(this.btnMoveSEMCenter);
- this.groupBox1.Controls.Add(this.txtMoveStageY);
- this.groupBox1.Controls.Add(this.label25);
- this.groupBox1.Controls.Add(this.txtMoveStageX);
- this.groupBox1.Controls.Add(this.label21);
- this.groupBox1.ForeColor = System.Drawing.Color.White;
- this.groupBox1.Location = new System.Drawing.Point(1057, 422);
- this.groupBox1.Margin = new System.Windows.Forms.Padding(4);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Padding = new System.Windows.Forms.Padding(4);
- this.groupBox1.Size = new System.Drawing.Size(237, 106);
- this.groupBox1.TabIndex = 90;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "移动当前位置至SEM中心";
- //
- // btnMoveSEMCenter
- //
- this.btnMoveSEMCenter.BackgroundImage = global::HOZProject.Properties.Resources.GetLocationBG;
- this.btnMoveSEMCenter.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnMoveSEMCenter.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnMoveSEMCenter.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
- this.btnMoveSEMCenter.Font = new System.Drawing.Font("宋体", 10F);
- this.btnMoveSEMCenter.ForeColor = System.Drawing.Color.White;
- this.btnMoveSEMCenter.Location = new System.Drawing.Point(164, 28);
- this.btnMoveSEMCenter.Margin = new System.Windows.Forms.Padding(4);
- this.btnMoveSEMCenter.Name = "btnMoveSEMCenter";
- this.btnMoveSEMCenter.Size = new System.Drawing.Size(68, 63);
- this.btnMoveSEMCenter.TabIndex = 91;
- this.btnMoveSEMCenter.Text = "执行";
- this.btnMoveSEMCenter.UseVisualStyleBackColor = true;
- this.btnMoveSEMCenter.Click += new System.EventHandler(this.btnMoveSEMCenter_Click);
- //
- // txtMoveStageY
- //
- this.txtMoveStageY.Location = new System.Drawing.Point(48, 63);
- this.txtMoveStageY.Name = "txtMoveStageY";
- this.txtMoveStageY.Size = new System.Drawing.Size(109, 28);
- this.txtMoveStageY.TabIndex = 62;
- //
- // label25
- //
- this.label25.AutoSize = true;
- this.label25.BackColor = System.Drawing.Color.Transparent;
- this.label25.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label25.Location = new System.Drawing.Point(9, 69);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(39, 20);
- this.label25.TabIndex = 63;
- this.label25.Text = "Y轴";
- //
- // txtMoveStageX
- //
- this.txtMoveStageX.Location = new System.Drawing.Point(48, 26);
- this.txtMoveStageX.Name = "txtMoveStageX";
- this.txtMoveStageX.Size = new System.Drawing.Size(109, 28);
- this.txtMoveStageX.TabIndex = 60;
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.BackColor = System.Drawing.Color.Transparent;
- this.label21.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label21.Location = new System.Drawing.Point(9, 32);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(39, 20);
- this.label21.TabIndex = 61;
- this.label21.Text = "X轴";
- //
- // btnConnect
- //
- this.btnConnect.BackgroundImage = global::HOZProject.Properties.Resources.ConnectImg;
- this.btnConnect.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnConnect.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnConnect.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
- this.btnConnect.Location = new System.Drawing.Point(1167, 39);
- this.btnConnect.Margin = new System.Windows.Forms.Padding(4);
- this.btnConnect.Name = "btnConnect";
- this.btnConnect.Size = new System.Drawing.Size(166, 138);
- this.btnConnect.TabIndex = 91;
- this.btnConnect.UseVisualStyleBackColor = true;
- this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
- //
- // btnGetImage
- //
- this.btnGetImage.BackgroundImage = global::HOZProject.Properties.Resources.GetImage;
- this.btnGetImage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnGetImage.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnGetImage.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
- this.btnGetImage.ForeColor = System.Drawing.Color.White;
- this.btnGetImage.Location = new System.Drawing.Point(1344, 39);
- this.btnGetImage.Margin = new System.Windows.Forms.Padding(4);
- this.btnGetImage.Name = "btnGetImage";
- this.btnGetImage.Size = new System.Drawing.Size(166, 138);
- this.btnGetImage.TabIndex = 91;
- this.btnGetImage.UseVisualStyleBackColor = true;
- this.btnGetImage.Click += new System.EventHandler(this.btnGetImage_Click);
- //
- // btnStop
- //
- this.btnStop.BackColor = System.Drawing.Color.Red;
- this.btnStop.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.btnStop.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnStop.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
- this.btnStop.Font = new System.Drawing.Font("宋体", 10F);
- this.btnStop.ForeColor = System.Drawing.Color.White;
- this.btnStop.Location = new System.Drawing.Point(1314, 422);
- this.btnStop.Margin = new System.Windows.Forms.Padding(4);
- this.btnStop.Name = "btnStop";
- this.btnStop.Size = new System.Drawing.Size(123, 106);
- this.btnStop.TabIndex = 83;
- this.btnStop.Text = "停止";
- this.btnStop.UseVisualStyleBackColor = false;
- this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
- //
- // FormUCMain
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.Black;
- this.BackgroundImage = global::HOZProject.Properties.Resources.UCMain;
- this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.ClientSize = new System.Drawing.Size(1536, 1020);
- this.Controls.Add(this.btnGetImage);
- this.Controls.Add(this.btnConnect);
- this.Controls.Add(this.groupBox1);
- this.Controls.Add(this.panel18);
- this.Controls.Add(this.panel19);
- this.Controls.Add(this.panel17);
- this.Controls.Add(this.panel20);
- this.Controls.Add(this.lblState);
- this.Controls.Add(this.btnStop);
- this.Controls.Add(this.btnGetStagePosition);
- this.Controls.Add(this.btnAutoBrightness);
- this.Controls.Add(this.btnAutoAstigmatism);
- this.Controls.Add(this.btnAutoWD);
- this.Controls.Add(this.label24);
- this.Controls.Add(this.label23);
- this.Controls.Add(this.label22);
- this.Controls.Add(this.label15);
- this.Controls.Add(this.panel7);
- this.Controls.Add(this.panel12);
- this.Controls.Add(this.panel6);
- this.Controls.Add(this.panel13);
- this.Controls.Add(this.panel14);
- this.Controls.Add(this.panel15);
- this.Controls.Add(this.panel16);
- this.Controls.Add(this.panel8);
- this.Controls.Add(this.panel9);
- this.Controls.Add(this.panel10);
- this.Controls.Add(this.panel11);
- this.Controls.Add(this.panel5);
- this.Controls.Add(this.panel4);
- this.Controls.Add(this.panel3);
- this.Controls.Add(this.panel2);
- this.Controls.Add(this.panel1);
- this.Controls.Add(this.pbHT);
- this.Controls.Add(this.pichide);
- this.Controls.Add(this.picexit);
- this.DoubleBuffered = true;
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Name = "FormUCMain";
- this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Load += new System.EventHandler(this.FormUCMain_Load);
- this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.FormUCMain_MouseDown);
- this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.FormUCMain_MouseMove);
- this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.FormUCMain_MouseUp);
- ((System.ComponentModel.ISupportInitialize)(this.pichide)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.picexit)).EndInit();
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- this.panel2.ResumeLayout(false);
- this.panel2.PerformLayout();
- this.panel3.ResumeLayout(false);
- this.panel3.PerformLayout();
- this.panel4.ResumeLayout(false);
- this.panel4.PerformLayout();
- this.panel5.ResumeLayout(false);
- this.panel5.PerformLayout();
- this.panel8.ResumeLayout(false);
- this.panel8.PerformLayout();
- this.panel9.ResumeLayout(false);
- this.panel9.PerformLayout();
- this.panel10.ResumeLayout(false);
- this.panel10.PerformLayout();
- this.panel11.ResumeLayout(false);
- this.panel11.PerformLayout();
- this.panel7.ResumeLayout(false);
- this.panel7.PerformLayout();
- this.panel12.ResumeLayout(false);
- this.panel12.PerformLayout();
- this.panel13.ResumeLayout(false);
- this.panel13.PerformLayout();
- this.panel14.ResumeLayout(false);
- this.panel14.PerformLayout();
- this.panel15.ResumeLayout(false);
- this.panel15.PerformLayout();
- this.panel16.ResumeLayout(false);
- this.panel16.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pbHT)).EndInit();
- this.panel6.ResumeLayout(false);
- this.panel6.PerformLayout();
- this.panel20.ResumeLayout(false);
- this.panel20.PerformLayout();
- this.panel17.ResumeLayout(false);
- this.panel17.PerformLayout();
- this.panel18.ResumeLayout(false);
- this.panel18.PerformLayout();
- this.panel19.ResumeLayout(false);
- this.panel19.PerformLayout();
- this.groupBox1.ResumeLayout(false);
- this.groupBox1.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.PictureBox pichide;
- private System.Windows.Forms.PictureBox picexit;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.TextBox txtenlarge;
- private System.Windows.Forms.Label lblFocus;
- private System.Windows.Forms.Button btnenlargeGet;
- private System.Windows.Forms.Button btnenlargeSet;
- private System.Windows.Forms.Panel panel2;
- private System.Windows.Forms.Button btnBrightnessSet;
- private System.Windows.Forms.TextBox txtBrightness;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button btnBrightnessGet;
- private System.Windows.Forms.Panel panel3;
- private System.Windows.Forms.Button btnTiltAngleSet;
- private System.Windows.Forms.TextBox txtTiltAngle;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Button btnTiltAngleGet;
- private System.Windows.Forms.Panel panel4;
- private System.Windows.Forms.Button btnAstigmatismXSet;
- private System.Windows.Forms.TextBox txtAstigmatismX;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button btnAstigmatismXGet;
- private System.Windows.Forms.Panel panel5;
- private System.Windows.Forms.TextBox txtPixelSize;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Button btnPixelSizeGet;
- private System.Windows.Forms.Panel panel8;
- private System.Windows.Forms.TextBox txtAstigmatismY;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Button btnAstigmatismYGet;
- private System.Windows.Forms.Panel panel9;
- private System.Windows.Forms.Button btnScanRotationSet;
- private System.Windows.Forms.TextBox txtScanRotation;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Button btnScanRotationGet;
- private System.Windows.Forms.Panel panel10;
- private System.Windows.Forms.Button btnContrastSet;
- private System.Windows.Forms.TextBox txtContrast;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Button btnContrastGet;
- private System.Windows.Forms.Panel panel11;
- private System.Windows.Forms.Button btnWDSet;
- private System.Windows.Forms.TextBox txtWD;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Button btnWDGet;
- private System.Windows.Forms.Panel panel7;
- private System.Windows.Forms.Button btnStageSetM;
- private System.Windows.Forms.TextBox txtStageM;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Button btnStageGetM;
- private System.Windows.Forms.Panel panel12;
- private System.Windows.Forms.Button btnStageSetR;
- private System.Windows.Forms.TextBox txtStageR;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Button btnStageGetR;
- private System.Windows.Forms.Panel panel13;
- private System.Windows.Forms.Button btnStageSetT;
- private System.Windows.Forms.TextBox txtStageT;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Button btnStageGetT;
- private System.Windows.Forms.Panel panel14;
- private System.Windows.Forms.Button btnStageSetZ;
- private System.Windows.Forms.TextBox txtStageZ;
- private System.Windows.Forms.Label label12;
- private System.Windows.Forms.Button btnStageGetZ;
- private System.Windows.Forms.Panel panel15;
- private System.Windows.Forms.Button btnStageSetY;
- private System.Windows.Forms.TextBox txtStageY;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.Button btnStageGetY;
- private System.Windows.Forms.Panel panel16;
- private System.Windows.Forms.Button btnStageSetX;
- private System.Windows.Forms.TextBox txtStageX;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.Button btnStageGetX;
- private System.Windows.Forms.Button btnAstigmatismYSet;
- private System.Windows.Forms.Label label15;
- private System.Windows.Forms.Label label22;
- private System.Windows.Forms.Label label23;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.Button btnAutoWD;
- private System.Windows.Forms.Button btnAutoAstigmatism;
- private System.Windows.Forms.Button btnAutoBrightness;
- private System.Windows.Forms.Button btnGetStagePosition;
- private System.Windows.Forms.PictureBox pbHT;
- private System.Windows.Forms.Label lblState;
- private System.Windows.Forms.Panel panel6;
- private System.Windows.Forms.ComboBox comboBox1;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Panel panel20;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.TextBox textBox3;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Panel panel17;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Panel panel18;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.TextBox textBox2;
- private System.Windows.Forms.Label label18;
- private System.Windows.Forms.Panel panel19;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.ComboBox comboBox2;
- private System.Windows.Forms.Label label19;
- private System.Windows.Forms.GroupBox groupBox1;
- private System.Windows.Forms.TextBox txtMoveStageY;
- private System.Windows.Forms.Label label25;
- private System.Windows.Forms.TextBox txtMoveStageX;
- private System.Windows.Forms.Label label21;
- private System.Windows.Forms.Button btnMoveSEMCenter;
- private System.Windows.Forms.Button btnConnect;
- private System.Windows.Forms.Button btnGetImage;
- private System.Windows.Forms.Button btnStop;
- }
- }
|