| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908 |
- namespace OxfordExtenderWrapper
- {
- partial class Form1
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
- System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
- System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
- System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
- this.label1 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.label7 = new System.Windows.Forms.Label();
- this.tBHV = new System.Windows.Forms.TextBox();
- this.label8 = new System.Windows.Forms.Label();
- this.button1 = new System.Windows.Forms.Button();
- this.tBHVIn = new System.Windows.Forms.TextBox();
- this.button2 = new System.Windows.Forms.Button();
- this.label9 = new System.Windows.Forms.Label();
- this.tBWD = new System.Windows.Forms.TextBox();
- this.tBMag = new System.Windows.Forms.TextBox();
- this.tBBright = new System.Windows.Forms.TextBox();
- this.tBContast = new System.Windows.Forms.TextBox();
- this.label10 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
- this.label12 = new System.Windows.Forms.Label();
- this.label13 = new System.Windows.Forms.Label();
- this.button3 = new System.Windows.Forms.Button();
- this.button4 = new System.Windows.Forms.Button();
- this.button5 = new System.Windows.Forms.Button();
- this.button6 = new System.Windows.Forms.Button();
- this.tBWDIn = new System.Windows.Forms.TextBox();
- this.tBMagIn = new System.Windows.Forms.TextBox();
- this.tBrightIn = new System.Windows.Forms.TextBox();
- this.tBContrastIn = new System.Windows.Forms.TextBox();
- this.label14 = new System.Windows.Forms.Label();
- this.label15 = new System.Windows.Forms.Label();
- this.label16 = new System.Windows.Forms.Label();
- this.label17 = new System.Windows.Forms.Label();
- this.button7 = new System.Windows.Forms.Button();
- this.button8 = new System.Windows.Forms.Button();
- this.button9 = new System.Windows.Forms.Button();
- this.button10 = new System.Windows.Forms.Button();
- this.label4 = new System.Windows.Forms.Label();
- this.label5 = new System.Windows.Forms.Label();
- this.label18 = new System.Windows.Forms.Label();
- this.label19 = new System.Windows.Forms.Label();
- this.label20 = new System.Windows.Forms.Label();
- this.label21 = new System.Windows.Forms.Label();
- this.tBX = new System.Windows.Forms.TextBox();
- this.tBY = new System.Windows.Forms.TextBox();
- this.tBZ = new System.Windows.Forms.TextBox();
- this.tBT = new System.Windows.Forms.TextBox();
- this.tBR = new System.Windows.Forms.TextBox();
- this.label22 = new System.Windows.Forms.Label();
- this.label23 = new System.Windows.Forms.Label();
- this.label24 = new System.Windows.Forms.Label();
- this.label25 = new System.Windows.Forms.Label();
- this.label26 = new System.Windows.Forms.Label();
- this.button11 = new System.Windows.Forms.Button();
- this.button12 = new System.Windows.Forms.Button();
- this.button13 = new System.Windows.Forms.Button();
- this.button14 = new System.Windows.Forms.Button();
- this.button15 = new System.Windows.Forms.Button();
- this.tBXIn = new System.Windows.Forms.TextBox();
- this.tBYIn = new System.Windows.Forms.TextBox();
- this.tBZIn = new System.Windows.Forms.TextBox();
- this.tBTIn = new System.Windows.Forms.TextBox();
- this.tBRIn = new System.Windows.Forms.TextBox();
- this.label27 = new System.Windows.Forms.Label();
- this.label28 = new System.Windows.Forms.Label();
- this.label29 = new System.Windows.Forms.Label();
- this.label30 = new System.Windows.Forms.Label();
- this.label31 = new System.Windows.Forms.Label();
- this.button16 = new System.Windows.Forms.Button();
- this.button18 = new System.Windows.Forms.Button();
- this.button19 = new System.Windows.Forms.Button();
- this.button20 = new System.Windows.Forms.Button();
- this.button21 = new System.Windows.Forms.Button();
- this.button22 = new System.Windows.Forms.Button();
- this.button23 = new System.Windows.Forms.Button();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.button27 = new System.Windows.Forms.Button();
- this.拍图 = new System.Windows.Forms.GroupBox();
- this.cboSource = new System.Windows.Forms.ComboBox();
- this.txtBSEDwell = new System.Windows.Forms.TextBox();
- this.txtBSEHeight = new System.Windows.Forms.TextBox();
- this.txtBSEWidth = new System.Windows.Forms.TextBox();
- this.pBImage = new System.Windows.Forms.PictureBox();
- this.button24 = new System.Windows.Forms.Button();
- this.label45 = new System.Windows.Forms.Label();
- this.label44 = new System.Windows.Forms.Label();
- this.label43 = new System.Windows.Forms.Label();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.button28 = new System.Windows.Forms.Button();
- this.btnTest = new System.Windows.Forms.Button();
- this.label42 = new System.Windows.Forms.Label();
- this.button29 = new System.Windows.Forms.Button();
- this.textTime = new System.Windows.Forms.TextBox();
- this.label37 = new System.Windows.Forms.Label();
- this.txtarea2l3 = new System.Windows.Forms.TextBox();
- this.label38 = new System.Windows.Forms.Label();
- this.txtarea2l2 = new System.Windows.Forms.TextBox();
- this.label40 = new System.Windows.Forms.Label();
- this.txtarea2y3 = new System.Windows.Forms.TextBox();
- this.txtarea2x3 = new System.Windows.Forms.TextBox();
- this.label41 = new System.Windows.Forms.Label();
- this.txtarea2y2 = new System.Windows.Forms.TextBox();
- this.label39 = new System.Windows.Forms.Label();
- this.txtarea2x2 = new System.Windows.Forms.TextBox();
- this.textRegionX1 = new System.Windows.Forms.TextBox();
- this.txtarea2l1 = new System.Windows.Forms.TextBox();
- this.textRegionY1 = new System.Windows.Forms.TextBox();
- this.txtarea1l3 = new System.Windows.Forms.TextBox();
- this.textRegionwidth1 = new System.Windows.Forms.TextBox();
- this.txtarea2y1 = new System.Windows.Forms.TextBox();
- this.textRegionHeight = new System.Windows.Forms.TextBox();
- this.txtarea2x1 = new System.Windows.Forms.TextBox();
- this.txtarea1y3 = new System.Windows.Forms.TextBox();
- this.txtarea1x3 = new System.Windows.Forms.TextBox();
- this.txtarea1l2 = new System.Windows.Forms.TextBox();
- this.txtarea1l1 = new System.Windows.Forms.TextBox();
- this.txtarea1y2 = new System.Windows.Forms.TextBox();
- this.txtarea1x2 = new System.Windows.Forms.TextBox();
- this.txtarea1y1 = new System.Windows.Forms.TextBox();
- this.txtarea1x1 = new System.Windows.Forms.TextBox();
- this.label36 = new System.Windows.Forms.Label();
- this.txtpy5 = new System.Windows.Forms.TextBox();
- this.txtpx5 = new System.Windows.Forms.TextBox();
- this.txtpy4 = new System.Windows.Forms.TextBox();
- this.txtpx4 = new System.Windows.Forms.TextBox();
- this.txtpy3 = new System.Windows.Forms.TextBox();
- this.txtpx3 = new System.Windows.Forms.TextBox();
- this.txtpy2 = new System.Windows.Forms.TextBox();
- this.txtpx2 = new System.Windows.Forms.TextBox();
- this.label35 = new System.Windows.Forms.Label();
- this.label34 = new System.Windows.Forms.Label();
- this.label33 = new System.Windows.Forms.Label();
- this.txtpy1 = new System.Windows.Forms.TextBox();
- this.txtpx1 = new System.Windows.Forms.TextBox();
- this.label32 = new System.Windows.Forms.Label();
- this.dataGridView1 = new System.Windows.Forms.DataGridView();
- this.元素 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.含量 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
- this.button26 = new System.Windows.Forms.Button();
- this.button25 = new System.Windows.Forms.Button();
- this.groupBox1.SuspendLayout();
- this.拍图.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pBImage)).BeginInit();
- this.groupBox2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(62, 25);
- this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(29, 12);
- this.label1.TabIndex = 0;
- this.label1.Text = "高压";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(38, 54);
- this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(53, 12);
- this.label2.TabIndex = 1;
- this.label2.Text = "工作距离";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(38, 84);
- this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(53, 12);
- this.label3.TabIndex = 2;
- this.label3.Text = "放大倍数";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(62, 113);
- this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(29, 12);
- this.label6.TabIndex = 5;
- this.label6.Text = "亮度";
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(50, 151);
- this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(41, 12);
- this.label7.TabIndex = 6;
- this.label7.Text = "对比度";
- //
- // tBHV
- //
- this.tBHV.Location = new System.Drawing.Point(122, 22);
- this.tBHV.Margin = new System.Windows.Forms.Padding(2);
- this.tBHV.Name = "tBHV";
- this.tBHV.ReadOnly = true;
- this.tBHV.Size = new System.Drawing.Size(68, 21);
- this.tBHV.TabIndex = 7;
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(193, 25);
- this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(17, 12);
- this.label8.TabIndex = 8;
- this.label8.Text = "kV";
- //
- // button1
- //
- this.button1.Location = new System.Drawing.Point(224, 18);
- this.button1.Margin = new System.Windows.Forms.Padding(2);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(50, 26);
- this.button1.TabIndex = 9;
- this.button1.Text = "获取";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // tBHVIn
- //
- this.tBHVIn.Location = new System.Drawing.Point(308, 22);
- this.tBHVIn.Margin = new System.Windows.Forms.Padding(2);
- this.tBHVIn.Name = "tBHVIn";
- this.tBHVIn.Size = new System.Drawing.Size(68, 21);
- this.tBHVIn.TabIndex = 10;
- this.tBHVIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress);
- //
- // button2
- //
- this.button2.Location = new System.Drawing.Point(425, 18);
- this.button2.Margin = new System.Windows.Forms.Padding(2);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(50, 26);
- this.button2.TabIndex = 11;
- this.button2.Text = "设定";
- this.button2.UseVisualStyleBackColor = true;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Location = new System.Drawing.Point(379, 25);
- this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(17, 12);
- this.label9.TabIndex = 12;
- this.label9.Text = "kV";
- //
- // tBWD
- //
- this.tBWD.Location = new System.Drawing.Point(122, 51);
- this.tBWD.Margin = new System.Windows.Forms.Padding(2);
- this.tBWD.Name = "tBWD";
- this.tBWD.ReadOnly = true;
- this.tBWD.Size = new System.Drawing.Size(68, 21);
- this.tBWD.TabIndex = 13;
- //
- // tBMag
- //
- this.tBMag.Location = new System.Drawing.Point(122, 82);
- this.tBMag.Margin = new System.Windows.Forms.Padding(2);
- this.tBMag.Name = "tBMag";
- this.tBMag.ReadOnly = true;
- this.tBMag.Size = new System.Drawing.Size(68, 21);
- this.tBMag.TabIndex = 14;
- //
- // tBBright
- //
- this.tBBright.Location = new System.Drawing.Point(122, 110);
- this.tBBright.Margin = new System.Windows.Forms.Padding(2);
- this.tBBright.Name = "tBBright";
- this.tBBright.ReadOnly = true;
- this.tBBright.Size = new System.Drawing.Size(68, 21);
- this.tBBright.TabIndex = 15;
- //
- // tBContast
- //
- this.tBContast.Location = new System.Drawing.Point(122, 145);
- this.tBContast.Margin = new System.Windows.Forms.Padding(2);
- this.tBContast.Name = "tBContast";
- this.tBContast.ReadOnly = true;
- this.tBContast.Size = new System.Drawing.Size(68, 21);
- this.tBContast.TabIndex = 16;
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Location = new System.Drawing.Point(193, 54);
- this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(17, 12);
- this.label10.TabIndex = 17;
- this.label10.Text = "mm";
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Location = new System.Drawing.Point(193, 84);
- this.label11.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(11, 12);
- this.label11.TabIndex = 18;
- this.label11.Text = "X";
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.Location = new System.Drawing.Point(193, 113);
- this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(11, 12);
- this.label12.TabIndex = 19;
- this.label12.Text = "%";
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.Location = new System.Drawing.Point(193, 146);
- this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(11, 12);
- this.label13.TabIndex = 20;
- this.label13.Text = "%";
- //
- // button3
- //
- this.button3.Location = new System.Drawing.Point(224, 48);
- this.button3.Margin = new System.Windows.Forms.Padding(2);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(50, 26);
- this.button3.TabIndex = 21;
- this.button3.Text = "获取";
- this.button3.UseVisualStyleBackColor = true;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // button4
- //
- this.button4.Location = new System.Drawing.Point(224, 78);
- this.button4.Margin = new System.Windows.Forms.Padding(2);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(50, 26);
- this.button4.TabIndex = 22;
- this.button4.Text = "获取";
- this.button4.UseVisualStyleBackColor = true;
- this.button4.Click += new System.EventHandler(this.button4_Click);
- //
- // button5
- //
- this.button5.Location = new System.Drawing.Point(224, 106);
- this.button5.Margin = new System.Windows.Forms.Padding(2);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(50, 26);
- this.button5.TabIndex = 23;
- this.button5.Text = "获取";
- this.button5.UseVisualStyleBackColor = true;
- this.button5.Click += new System.EventHandler(this.button5_Click);
- //
- // button6
- //
- this.button6.Location = new System.Drawing.Point(224, 145);
- this.button6.Margin = new System.Windows.Forms.Padding(2);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(50, 26);
- this.button6.TabIndex = 24;
- this.button6.Text = "获取";
- this.button6.UseVisualStyleBackColor = true;
- this.button6.Click += new System.EventHandler(this.button6_Click);
- //
- // tBWDIn
- //
- this.tBWDIn.Location = new System.Drawing.Point(308, 51);
- this.tBWDIn.Margin = new System.Windows.Forms.Padding(2);
- this.tBWDIn.Name = "tBWDIn";
- this.tBWDIn.Size = new System.Drawing.Size(68, 21);
- this.tBWDIn.TabIndex = 25;
- this.tBWDIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBWDIn_KeyPress);
- //
- // tBMagIn
- //
- this.tBMagIn.Location = new System.Drawing.Point(308, 82);
- this.tBMagIn.Margin = new System.Windows.Forms.Padding(2);
- this.tBMagIn.Name = "tBMagIn";
- this.tBMagIn.Size = new System.Drawing.Size(68, 21);
- this.tBMagIn.TabIndex = 26;
- this.tBMagIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBMagIn_KeyPress);
- //
- // tBrightIn
- //
- this.tBrightIn.Location = new System.Drawing.Point(308, 114);
- this.tBrightIn.Margin = new System.Windows.Forms.Padding(2);
- this.tBrightIn.Name = "tBrightIn";
- this.tBrightIn.Size = new System.Drawing.Size(68, 21);
- this.tBrightIn.TabIndex = 27;
- this.tBrightIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBrightIn_KeyPress);
- //
- // tBContrastIn
- //
- this.tBContrastIn.Location = new System.Drawing.Point(308, 150);
- this.tBContrastIn.Margin = new System.Windows.Forms.Padding(2);
- this.tBContrastIn.Name = "tBContrastIn";
- this.tBContrastIn.Size = new System.Drawing.Size(68, 21);
- this.tBContrastIn.TabIndex = 28;
- this.tBContrastIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBContrastIn_KeyPress);
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Location = new System.Drawing.Point(379, 151);
- this.label14.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(11, 12);
- this.label14.TabIndex = 32;
- this.label14.Text = "%";
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.Location = new System.Drawing.Point(379, 118);
- this.label15.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(11, 12);
- this.label15.TabIndex = 31;
- this.label15.Text = "%";
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.Location = new System.Drawing.Point(379, 89);
- this.label16.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(11, 12);
- this.label16.TabIndex = 30;
- this.label16.Text = "X";
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.Location = new System.Drawing.Point(379, 58);
- this.label17.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(17, 12);
- this.label17.TabIndex = 29;
- this.label17.Text = "mm";
- //
- // button7
- //
- this.button7.Location = new System.Drawing.Point(425, 48);
- this.button7.Margin = new System.Windows.Forms.Padding(2);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(50, 26);
- this.button7.TabIndex = 33;
- this.button7.Text = "设定";
- this.button7.UseVisualStyleBackColor = true;
- this.button7.Click += new System.EventHandler(this.button7_Click);
- //
- // button8
- //
- this.button8.Location = new System.Drawing.Point(425, 78);
- this.button8.Margin = new System.Windows.Forms.Padding(2);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(50, 26);
- this.button8.TabIndex = 34;
- this.button8.Text = "设定";
- this.button8.UseVisualStyleBackColor = true;
- this.button8.Click += new System.EventHandler(this.button8_Click);
- //
- // button9
- //
- this.button9.Location = new System.Drawing.Point(425, 106);
- this.button9.Margin = new System.Windows.Forms.Padding(2);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(50, 26);
- this.button9.TabIndex = 35;
- this.button9.Text = "设定";
- this.button9.UseVisualStyleBackColor = true;
- this.button9.Click += new System.EventHandler(this.button9_Click);
- //
- // button10
- //
- this.button10.Location = new System.Drawing.Point(425, 140);
- this.button10.Margin = new System.Windows.Forms.Padding(2);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(50, 26);
- this.button10.TabIndex = 36;
- this.button10.Text = "设定";
- this.button10.UseVisualStyleBackColor = true;
- this.button10.Click += new System.EventHandler(this.button10_Click);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(50, 182);
- this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(41, 12);
- this.label4.TabIndex = 37;
- this.label4.Text = "样品台";
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(69, 194);
- this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(11, 12);
- this.label5.TabIndex = 38;
- this.label5.Text = "X";
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.Location = new System.Drawing.Point(69, 225);
- this.label18.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(11, 12);
- this.label18.TabIndex = 39;
- this.label18.Text = "Y";
- //
- // label19
- //
- this.label19.AutoSize = true;
- this.label19.Location = new System.Drawing.Point(69, 254);
- this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(11, 12);
- this.label19.TabIndex = 40;
- this.label19.Text = "Z";
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.Location = new System.Drawing.Point(69, 283);
- this.label20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(11, 12);
- this.label20.TabIndex = 41;
- this.label20.Text = "T";
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.Location = new System.Drawing.Point(69, 313);
- this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(11, 12);
- this.label21.TabIndex = 42;
- this.label21.Text = "R";
- //
- // tBX
- //
- this.tBX.Location = new System.Drawing.Point(122, 187);
- this.tBX.Margin = new System.Windows.Forms.Padding(2);
- this.tBX.Name = "tBX";
- this.tBX.ReadOnly = true;
- this.tBX.Size = new System.Drawing.Size(68, 21);
- this.tBX.TabIndex = 43;
- //
- // tBY
- //
- this.tBY.Location = new System.Drawing.Point(122, 222);
- this.tBY.Margin = new System.Windows.Forms.Padding(2);
- this.tBY.Name = "tBY";
- this.tBY.ReadOnly = true;
- this.tBY.Size = new System.Drawing.Size(68, 21);
- this.tBY.TabIndex = 44;
- //
- // tBZ
- //
- this.tBZ.Location = new System.Drawing.Point(122, 254);
- this.tBZ.Margin = new System.Windows.Forms.Padding(2);
- this.tBZ.Name = "tBZ";
- this.tBZ.ReadOnly = true;
- this.tBZ.Size = new System.Drawing.Size(68, 21);
- this.tBZ.TabIndex = 45;
- //
- // tBT
- //
- this.tBT.Location = new System.Drawing.Point(122, 283);
- this.tBT.Margin = new System.Windows.Forms.Padding(2);
- this.tBT.Name = "tBT";
- this.tBT.ReadOnly = true;
- this.tBT.Size = new System.Drawing.Size(68, 21);
- this.tBT.TabIndex = 46;
- //
- // tBR
- //
- this.tBR.Location = new System.Drawing.Point(122, 313);
- this.tBR.Margin = new System.Windows.Forms.Padding(2);
- this.tBR.Name = "tBR";
- this.tBR.ReadOnly = true;
- this.tBR.Size = new System.Drawing.Size(68, 21);
- this.tBR.TabIndex = 47;
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.Location = new System.Drawing.Point(193, 194);
- this.label22.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(17, 12);
- this.label22.TabIndex = 48;
- this.label22.Text = "um";
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.Location = new System.Drawing.Point(193, 230);
- this.label23.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(17, 12);
- this.label23.TabIndex = 49;
- this.label23.Text = "um";
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Location = new System.Drawing.Point(193, 257);
- this.label24.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(17, 12);
- this.label24.TabIndex = 50;
- this.label24.Text = "um";
- //
- // label25
- //
- this.label25.AutoSize = true;
- this.label25.Location = new System.Drawing.Point(193, 286);
- this.label25.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(11, 12);
- this.label25.TabIndex = 51;
- this.label25.Text = "o";
- //
- // label26
- //
- this.label26.AutoSize = true;
- this.label26.Location = new System.Drawing.Point(193, 314);
- this.label26.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(11, 12);
- this.label26.TabIndex = 52;
- this.label26.Text = "o";
- //
- // button11
- //
- this.button11.Location = new System.Drawing.Point(224, 182);
- this.button11.Margin = new System.Windows.Forms.Padding(2);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(50, 26);
- this.button11.TabIndex = 53;
- this.button11.Text = "获取";
- this.button11.UseVisualStyleBackColor = true;
- this.button11.Click += new System.EventHandler(this.button11_Click);
- //
- // button12
- //
- this.button12.Location = new System.Drawing.Point(224, 218);
- this.button12.Margin = new System.Windows.Forms.Padding(2);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(50, 26);
- this.button12.TabIndex = 54;
- this.button12.Text = "获取";
- this.button12.UseVisualStyleBackColor = true;
- this.button12.Click += new System.EventHandler(this.button12_Click);
- //
- // button13
- //
- this.button13.Location = new System.Drawing.Point(224, 247);
- this.button13.Margin = new System.Windows.Forms.Padding(2);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(50, 26);
- this.button13.TabIndex = 55;
- this.button13.Text = "获取";
- this.button13.UseVisualStyleBackColor = true;
- this.button13.Click += new System.EventHandler(this.button13_Click);
- //
- // button14
- //
- this.button14.Location = new System.Drawing.Point(224, 278);
- this.button14.Margin = new System.Windows.Forms.Padding(2);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(50, 26);
- this.button14.TabIndex = 56;
- this.button14.Text = "获取";
- this.button14.UseVisualStyleBackColor = true;
- this.button14.Click += new System.EventHandler(this.button14_Click);
- //
- // button15
- //
- this.button15.Location = new System.Drawing.Point(224, 308);
- this.button15.Margin = new System.Windows.Forms.Padding(2);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(50, 26);
- this.button15.TabIndex = 57;
- this.button15.Text = "获取";
- this.button15.UseVisualStyleBackColor = true;
- this.button15.Click += new System.EventHandler(this.button15_Click);
- //
- // tBXIn
- //
- this.tBXIn.Location = new System.Drawing.Point(308, 187);
- this.tBXIn.Margin = new System.Windows.Forms.Padding(2);
- this.tBXIn.Name = "tBXIn";
- this.tBXIn.Size = new System.Drawing.Size(68, 21);
- this.tBXIn.TabIndex = 58;
- this.tBXIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBXIn_KeyPress);
- //
- // tBYIn
- //
- this.tBYIn.Location = new System.Drawing.Point(308, 222);
- this.tBYIn.Margin = new System.Windows.Forms.Padding(2);
- this.tBYIn.Name = "tBYIn";
- this.tBYIn.Size = new System.Drawing.Size(68, 21);
- this.tBYIn.TabIndex = 59;
- this.tBYIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBYIn_KeyPress);
- //
- // tBZIn
- //
- this.tBZIn.Location = new System.Drawing.Point(308, 252);
- this.tBZIn.Margin = new System.Windows.Forms.Padding(2);
- this.tBZIn.Name = "tBZIn";
- this.tBZIn.Size = new System.Drawing.Size(68, 21);
- this.tBZIn.TabIndex = 60;
- this.tBZIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBZIn_KeyPress);
- //
- // tBTIn
- //
- this.tBTIn.Location = new System.Drawing.Point(308, 278);
- this.tBTIn.Margin = new System.Windows.Forms.Padding(2);
- this.tBTIn.Name = "tBTIn";
- this.tBTIn.Size = new System.Drawing.Size(68, 21);
- this.tBTIn.TabIndex = 61;
- this.tBTIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBTIn_KeyPress);
- //
- // tBRIn
- //
- this.tBRIn.Location = new System.Drawing.Point(308, 308);
- this.tBRIn.Margin = new System.Windows.Forms.Padding(2);
- this.tBRIn.Name = "tBRIn";
- this.tBRIn.Size = new System.Drawing.Size(68, 21);
- this.tBRIn.TabIndex = 62;
- this.tBRIn.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tBRIn_KeyPress);
- //
- // label27
- //
- this.label27.AutoSize = true;
- this.label27.Location = new System.Drawing.Point(379, 194);
- this.label27.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(17, 12);
- this.label27.TabIndex = 63;
- this.label27.Text = "um";
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.Location = new System.Drawing.Point(379, 225);
- this.label28.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(17, 12);
- this.label28.TabIndex = 64;
- this.label28.Text = "um";
- //
- // label29
- //
- this.label29.AutoSize = true;
- this.label29.Location = new System.Drawing.Point(379, 252);
- this.label29.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(17, 12);
- this.label29.TabIndex = 65;
- this.label29.Text = "um";
- //
- // label30
- //
- this.label30.AutoSize = true;
- this.label30.Location = new System.Drawing.Point(379, 284);
- this.label30.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(11, 12);
- this.label30.TabIndex = 66;
- this.label30.Text = "o";
- //
- // label31
- //
- this.label31.AutoSize = true;
- this.label31.Location = new System.Drawing.Point(379, 314);
- this.label31.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label31.Name = "label31";
- this.label31.Size = new System.Drawing.Size(11, 12);
- this.label31.TabIndex = 67;
- this.label31.Text = "o";
- //
- // button16
- //
- this.button16.Location = new System.Drawing.Point(425, 187);
- this.button16.Margin = new System.Windows.Forms.Padding(2);
- this.button16.Name = "button16";
- this.button16.Size = new System.Drawing.Size(50, 59);
- this.button16.TabIndex = 68;
- this.button16.Text = "设定";
- this.button16.UseVisualStyleBackColor = true;
- this.button16.Click += new System.EventHandler(this.button16_Click);
- //
- // button18
- //
- this.button18.Location = new System.Drawing.Point(425, 250);
- this.button18.Margin = new System.Windows.Forms.Padding(2);
- this.button18.Name = "button18";
- this.button18.Size = new System.Drawing.Size(50, 26);
- this.button18.TabIndex = 70;
- this.button18.Text = "设定";
- this.button18.UseVisualStyleBackColor = true;
- this.button18.Click += new System.EventHandler(this.button18_Click);
- //
- // button19
- //
- this.button19.Location = new System.Drawing.Point(425, 280);
- this.button19.Margin = new System.Windows.Forms.Padding(2);
- this.button19.Name = "button19";
- this.button19.Size = new System.Drawing.Size(50, 26);
- this.button19.TabIndex = 71;
- this.button19.Text = "设定";
- this.button19.UseVisualStyleBackColor = true;
- this.button19.Click += new System.EventHandler(this.button19_Click);
- //
- // button20
- //
- this.button20.Location = new System.Drawing.Point(425, 310);
- this.button20.Margin = new System.Windows.Forms.Padding(2);
- this.button20.Name = "button20";
- this.button20.Size = new System.Drawing.Size(50, 26);
- this.button20.TabIndex = 72;
- this.button20.Text = "设定";
- this.button20.UseVisualStyleBackColor = true;
- this.button20.Click += new System.EventHandler(this.button20_Click);
- //
- // button21
- //
- this.button21.Location = new System.Drawing.Point(122, 347);
- this.button21.Margin = new System.Windows.Forms.Padding(2);
- this.button21.Name = "button21";
- this.button21.Size = new System.Drawing.Size(106, 26);
- this.button21.TabIndex = 73;
- this.button21.Text = "获取全部";
- this.button21.UseVisualStyleBackColor = true;
- this.button21.Click += new System.EventHandler(this.button21_Click);
- //
- // button22
- //
- this.button22.Location = new System.Drawing.Point(252, 347);
- this.button22.Margin = new System.Windows.Forms.Padding(2);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(98, 26);
- this.button22.TabIndex = 74;
- this.button22.Text = "设定XY";
- this.button22.UseVisualStyleBackColor = true;
- this.button22.Click += new System.EventHandler(this.button22_Click);
- //
- // button23
- //
- this.button23.Location = new System.Drawing.Point(381, 347);
- this.button23.Margin = new System.Windows.Forms.Padding(2);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(94, 26);
- this.button23.TabIndex = 75;
- this.button23.Text = "设定全部";
- this.button23.UseVisualStyleBackColor = true;
- this.button23.Click += new System.EventHandler(this.button23_Click);
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.button27);
- this.groupBox1.Controls.Add(this.button2);
- this.groupBox1.Controls.Add(this.button23);
- this.groupBox1.Controls.Add(this.label1);
- this.groupBox1.Controls.Add(this.button22);
- this.groupBox1.Controls.Add(this.label2);
- this.groupBox1.Controls.Add(this.button21);
- this.groupBox1.Controls.Add(this.label3);
- this.groupBox1.Controls.Add(this.button20);
- this.groupBox1.Controls.Add(this.label6);
- this.groupBox1.Controls.Add(this.button19);
- this.groupBox1.Controls.Add(this.label7);
- this.groupBox1.Controls.Add(this.button18);
- this.groupBox1.Controls.Add(this.tBHV);
- this.groupBox1.Controls.Add(this.label8);
- this.groupBox1.Controls.Add(this.button16);
- this.groupBox1.Controls.Add(this.button1);
- this.groupBox1.Controls.Add(this.label31);
- this.groupBox1.Controls.Add(this.tBHVIn);
- this.groupBox1.Controls.Add(this.label30);
- this.groupBox1.Controls.Add(this.label9);
- this.groupBox1.Controls.Add(this.label29);
- this.groupBox1.Controls.Add(this.tBWD);
- this.groupBox1.Controls.Add(this.label28);
- this.groupBox1.Controls.Add(this.tBMag);
- this.groupBox1.Controls.Add(this.label27);
- this.groupBox1.Controls.Add(this.tBBright);
- this.groupBox1.Controls.Add(this.tBRIn);
- this.groupBox1.Controls.Add(this.tBContast);
- this.groupBox1.Controls.Add(this.tBTIn);
- this.groupBox1.Controls.Add(this.label10);
- this.groupBox1.Controls.Add(this.tBZIn);
- this.groupBox1.Controls.Add(this.label11);
- this.groupBox1.Controls.Add(this.tBYIn);
- this.groupBox1.Controls.Add(this.label12);
- this.groupBox1.Controls.Add(this.tBXIn);
- this.groupBox1.Controls.Add(this.label13);
- this.groupBox1.Controls.Add(this.button15);
- this.groupBox1.Controls.Add(this.button3);
- this.groupBox1.Controls.Add(this.button14);
- this.groupBox1.Controls.Add(this.button4);
- this.groupBox1.Controls.Add(this.button13);
- this.groupBox1.Controls.Add(this.button5);
- this.groupBox1.Controls.Add(this.button12);
- this.groupBox1.Controls.Add(this.button6);
- this.groupBox1.Controls.Add(this.button11);
- this.groupBox1.Controls.Add(this.tBWDIn);
- this.groupBox1.Controls.Add(this.label26);
- this.groupBox1.Controls.Add(this.tBMagIn);
- this.groupBox1.Controls.Add(this.label25);
- this.groupBox1.Controls.Add(this.tBrightIn);
- this.groupBox1.Controls.Add(this.label24);
- this.groupBox1.Controls.Add(this.tBContrastIn);
- this.groupBox1.Controls.Add(this.label23);
- this.groupBox1.Controls.Add(this.label17);
- this.groupBox1.Controls.Add(this.label22);
- this.groupBox1.Controls.Add(this.label16);
- this.groupBox1.Controls.Add(this.tBR);
- this.groupBox1.Controls.Add(this.label15);
- this.groupBox1.Controls.Add(this.tBT);
- this.groupBox1.Controls.Add(this.label14);
- this.groupBox1.Controls.Add(this.tBZ);
- this.groupBox1.Controls.Add(this.button7);
- this.groupBox1.Controls.Add(this.tBY);
- this.groupBox1.Controls.Add(this.button8);
- this.groupBox1.Controls.Add(this.tBX);
- this.groupBox1.Controls.Add(this.button9);
- this.groupBox1.Controls.Add(this.label21);
- this.groupBox1.Controls.Add(this.button10);
- this.groupBox1.Controls.Add(this.label20);
- this.groupBox1.Controls.Add(this.label4);
- this.groupBox1.Controls.Add(this.label19);
- this.groupBox1.Controls.Add(this.label5);
- this.groupBox1.Controls.Add(this.label18);
- this.groupBox1.Location = new System.Drawing.Point(0, 1);
- this.groupBox1.Margin = new System.Windows.Forms.Padding(2);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Padding = new System.Windows.Forms.Padding(2);
- this.groupBox1.Size = new System.Drawing.Size(499, 391);
- this.groupBox1.TabIndex = 76;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "电镜和样品台控制";
- //
- // button27
- //
- this.button27.Font = new System.Drawing.Font("Microsoft YaHei", 12F);
- this.button27.Location = new System.Drawing.Point(4, 114);
- this.button27.Margin = new System.Windows.Forms.Padding(2);
- this.button27.Name = "button27";
- this.button27.Size = new System.Drawing.Size(39, 143);
- this.button27.TabIndex = 79;
- this.button27.Text = "连接能谱";
- this.button27.UseVisualStyleBackColor = true;
- this.button27.Click += new System.EventHandler(this.button27_Click);
- //
- // 拍图
- //
- this.拍图.Controls.Add(this.cboSource);
- this.拍图.Controls.Add(this.txtBSEDwell);
- this.拍图.Controls.Add(this.txtBSEHeight);
- this.拍图.Controls.Add(this.txtBSEWidth);
- this.拍图.Controls.Add(this.pBImage);
- this.拍图.Controls.Add(this.button24);
- this.拍图.Controls.Add(this.label45);
- this.拍图.Controls.Add(this.label44);
- this.拍图.Controls.Add(this.label43);
- this.拍图.Location = new System.Drawing.Point(503, 8);
- this.拍图.Margin = new System.Windows.Forms.Padding(2);
- this.拍图.Name = "拍图";
- this.拍图.Padding = new System.Windows.Forms.Padding(2);
- this.拍图.Size = new System.Drawing.Size(646, 384);
- this.拍图.TabIndex = 77;
- this.拍图.TabStop = false;
- this.拍图.Text = "拍图";
- //
- // cboSource
- //
- this.cboSource.FormattingEnabled = true;
- this.cboSource.Items.AddRange(new object[] {
- "SE",
- "BSE"});
- this.cboSource.Location = new System.Drawing.Point(80, 22);
- this.cboSource.Name = "cboSource";
- this.cboSource.Size = new System.Drawing.Size(50, 20);
- this.cboSource.TabIndex = 13;
- this.cboSource.Text = "BSE";
- //
- // txtBSEDwell
- //
- this.txtBSEDwell.Location = new System.Drawing.Point(451, 19);
- this.txtBSEDwell.Name = "txtBSEDwell";
- this.txtBSEDwell.Size = new System.Drawing.Size(94, 21);
- this.txtBSEDwell.TabIndex = 3;
- this.txtBSEDwell.Text = "2";
- //
- // txtBSEHeight
- //
- this.txtBSEHeight.Location = new System.Drawing.Point(280, 19);
- this.txtBSEHeight.Name = "txtBSEHeight";
- this.txtBSEHeight.Size = new System.Drawing.Size(94, 21);
- this.txtBSEHeight.TabIndex = 3;
- this.txtBSEHeight.Text = "768";
- //
- // txtBSEWidth
- //
- this.txtBSEWidth.Location = new System.Drawing.Point(157, 19);
- this.txtBSEWidth.Name = "txtBSEWidth";
- this.txtBSEWidth.Size = new System.Drawing.Size(94, 21);
- this.txtBSEWidth.TabIndex = 3;
- this.txtBSEWidth.Text = "1024";
- //
- // pBImage
- //
- this.pBImage.Location = new System.Drawing.Point(36, 51);
- this.pBImage.Margin = new System.Windows.Forms.Padding(2);
- this.pBImage.Name = "pBImage";
- this.pBImage.Size = new System.Drawing.Size(593, 329);
- this.pBImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
- this.pBImage.TabIndex = 1;
- this.pBImage.TabStop = false;
- //
- // button24
- //
- this.button24.Location = new System.Drawing.Point(26, 18);
- this.button24.Margin = new System.Windows.Forms.Padding(2);
- this.button24.Name = "button24";
- this.button24.Size = new System.Drawing.Size(50, 26);
- this.button24.TabIndex = 0;
- this.button24.Text = "拍图";
- this.button24.UseVisualStyleBackColor = true;
- this.button24.Click += new System.EventHandler(this.button24_Click);
- //
- // label45
- //
- this.label45.AutoSize = true;
- this.label45.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.label45.Location = new System.Drawing.Point(405, 22);
- this.label45.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label45.Name = "label45";
- this.label45.Size = new System.Drawing.Size(41, 12);
- this.label45.TabIndex = 12;
- this.label45.Text = "DWell:";
- //
- // label44
- //
- this.label44.AutoSize = true;
- this.label44.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.label44.Location = new System.Drawing.Point(264, 22);
- this.label44.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label44.Name = "label44";
- this.label44.Size = new System.Drawing.Size(17, 12);
- this.label44.TabIndex = 12;
- this.label44.Text = "H:";
- //
- // label43
- //
- this.label43.AutoSize = true;
- this.label43.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.label43.Location = new System.Drawing.Point(135, 22);
- this.label43.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label43.Name = "label43";
- this.label43.Size = new System.Drawing.Size(17, 12);
- this.label43.TabIndex = 12;
- this.label43.Text = "W:";
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.button28);
- this.groupBox2.Controls.Add(this.btnTest);
- this.groupBox2.Controls.Add(this.label42);
- this.groupBox2.Controls.Add(this.button29);
- this.groupBox2.Controls.Add(this.textTime);
- this.groupBox2.Controls.Add(this.label37);
- this.groupBox2.Controls.Add(this.txtarea2l3);
- this.groupBox2.Controls.Add(this.label38);
- this.groupBox2.Controls.Add(this.txtarea2l2);
- this.groupBox2.Controls.Add(this.label40);
- this.groupBox2.Controls.Add(this.txtarea2y3);
- this.groupBox2.Controls.Add(this.txtarea2x3);
- this.groupBox2.Controls.Add(this.label41);
- this.groupBox2.Controls.Add(this.txtarea2y2);
- this.groupBox2.Controls.Add(this.label39);
- this.groupBox2.Controls.Add(this.txtarea2x2);
- this.groupBox2.Controls.Add(this.textRegionX1);
- this.groupBox2.Controls.Add(this.txtarea2l1);
- this.groupBox2.Controls.Add(this.textRegionY1);
- this.groupBox2.Controls.Add(this.txtarea1l3);
- this.groupBox2.Controls.Add(this.textRegionwidth1);
- this.groupBox2.Controls.Add(this.txtarea2y1);
- this.groupBox2.Controls.Add(this.textRegionHeight);
- this.groupBox2.Controls.Add(this.txtarea2x1);
- this.groupBox2.Controls.Add(this.txtarea1y3);
- this.groupBox2.Controls.Add(this.txtarea1x3);
- this.groupBox2.Controls.Add(this.txtarea1l2);
- this.groupBox2.Controls.Add(this.txtarea1l1);
- this.groupBox2.Controls.Add(this.txtarea1y2);
- this.groupBox2.Controls.Add(this.txtarea1x2);
- this.groupBox2.Controls.Add(this.txtarea1y1);
- this.groupBox2.Controls.Add(this.txtarea1x1);
- this.groupBox2.Controls.Add(this.label36);
- this.groupBox2.Controls.Add(this.txtpy5);
- this.groupBox2.Controls.Add(this.txtpx5);
- this.groupBox2.Controls.Add(this.txtpy4);
- this.groupBox2.Controls.Add(this.txtpx4);
- this.groupBox2.Controls.Add(this.txtpy3);
- this.groupBox2.Controls.Add(this.txtpx3);
- this.groupBox2.Controls.Add(this.txtpy2);
- this.groupBox2.Controls.Add(this.txtpx2);
- this.groupBox2.Controls.Add(this.label35);
- this.groupBox2.Controls.Add(this.label34);
- this.groupBox2.Controls.Add(this.label33);
- this.groupBox2.Controls.Add(this.txtpy1);
- this.groupBox2.Controls.Add(this.txtpx1);
- this.groupBox2.Controls.Add(this.label32);
- this.groupBox2.Controls.Add(this.dataGridView1);
- this.groupBox2.Controls.Add(this.chart1);
- this.groupBox2.Controls.Add(this.button26);
- this.groupBox2.Controls.Add(this.button25);
- this.groupBox2.Location = new System.Drawing.Point(9, 396);
- this.groupBox2.Margin = new System.Windows.Forms.Padding(2);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Padding = new System.Windows.Forms.Padding(2);
- this.groupBox2.Size = new System.Drawing.Size(1164, 429);
- this.groupBox2.TabIndex = 78;
- this.groupBox2.TabStop = false;
- this.groupBox2.Text = "能谱";
- //
- // button28
- //
- this.button28.Font = new System.Drawing.Font("Microsoft YaHei", 12F);
- this.button28.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.button28.Location = new System.Drawing.Point(501, 147);
- this.button28.Margin = new System.Windows.Forms.Padding(2);
- this.button28.Name = "button28";
- this.button28.Size = new System.Drawing.Size(41, 142);
- this.button28.TabIndex = 116;
- this.button28.Text = "面扫多点";
- this.button28.UseVisualStyleBackColor = true;
- this.button28.Click += new System.EventHandler(this.button28_Click);
- //
- // btnTest
- //
- this.btnTest.Font = new System.Drawing.Font("Microsoft YaHei", 12F);
- this.btnTest.Location = new System.Drawing.Point(499, 26);
- this.btnTest.Margin = new System.Windows.Forms.Padding(2);
- this.btnTest.Name = "btnTest";
- this.btnTest.Size = new System.Drawing.Size(41, 119);
- this.btnTest.TabIndex = 116;
- this.btnTest.Text = "点扫多点";
- this.btnTest.UseVisualStyleBackColor = true;
- this.btnTest.Click += new System.EventHandler(this.btnTest_Click);
- //
- // label42
- //
- this.label42.AutoSize = true;
- this.label42.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.label42.Location = new System.Drawing.Point(360, 385);
- this.label42.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label42.Name = "label42";
- this.label42.Size = new System.Drawing.Size(29, 12);
- this.label42.TabIndex = 82;
- this.label42.Text = "Time";
- //
- // button29
- //
- this.button29.Font = new System.Drawing.Font("Microsoft YaHei", 12F);
- this.button29.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.button29.Location = new System.Drawing.Point(501, 293);
- this.button29.Margin = new System.Windows.Forms.Padding(2);
- this.button29.Name = "button29";
- this.button29.Size = new System.Drawing.Size(39, 125);
- this.button29.TabIndex = 1;
- this.button29.Text = "矩形面采集";
- this.button29.UseVisualStyleBackColor = true;
- this.button29.Click += new System.EventHandler(this.button29_Click);
- //
- // textTime
- //
- this.textTime.Location = new System.Drawing.Point(353, 397);
- this.textTime.Margin = new System.Windows.Forms.Padding(2);
- this.textTime.Name = "textTime";
- this.textTime.Size = new System.Drawing.Size(42, 21);
- this.textTime.TabIndex = 101;
- this.textTime.Text = "1500";
- this.textTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label37
- //
- this.label37.AutoSize = true;
- this.label37.Location = new System.Drawing.Point(305, 220);
- this.label37.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label37.Name = "label37";
- this.label37.Size = new System.Drawing.Size(47, 12);
- this.label37.TabIndex = 115;
- this.label37.Text = "Areas2:";
- //
- // txtarea2l3
- //
- this.txtarea2l3.Location = new System.Drawing.Point(457, 268);
- this.txtarea2l3.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea2l3.Name = "txtarea2l3";
- this.txtarea2l3.Size = new System.Drawing.Size(42, 21);
- this.txtarea2l3.TabIndex = 114;
- this.txtarea2l3.Text = "55";
- this.txtarea2l3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label38
- //
- this.label38.AutoSize = true;
- this.label38.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.label38.Location = new System.Drawing.Point(362, 294);
- this.label38.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label38.Name = "label38";
- this.label38.Size = new System.Drawing.Size(11, 12);
- this.label38.TabIndex = 82;
- this.label38.Text = "X";
- //
- // txtarea2l2
- //
- this.txtarea2l2.Location = new System.Drawing.Point(458, 243);
- this.txtarea2l2.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea2l2.Name = "txtarea2l2";
- this.txtarea2l2.Size = new System.Drawing.Size(42, 21);
- this.txtarea2l2.TabIndex = 113;
- this.txtarea2l2.Text = "44";
- this.txtarea2l2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label40
- //
- this.label40.AutoSize = true;
- this.label40.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.label40.Location = new System.Drawing.Point(352, 339);
- this.label40.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label40.Name = "label40";
- this.label40.Size = new System.Drawing.Size(29, 12);
- this.label40.TabIndex = 82;
- this.label40.Text = "Wide";
- //
- // txtarea2y3
- //
- this.txtarea2y3.Location = new System.Drawing.Point(403, 268);
- this.txtarea2y3.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea2y3.Name = "txtarea2y3";
- this.txtarea2y3.Size = new System.Drawing.Size(42, 21);
- this.txtarea2y3.TabIndex = 112;
- this.txtarea2y3.Text = "79";
- this.txtarea2y3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtarea2x3
- //
- this.txtarea2x3.Location = new System.Drawing.Point(356, 268);
- this.txtarea2x3.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea2x3.Name = "txtarea2x3";
- this.txtarea2x3.Size = new System.Drawing.Size(42, 21);
- this.txtarea2x3.TabIndex = 111;
- this.txtarea2x3.Text = "66";
- this.txtarea2x3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label41
- //
- this.label41.AutoSize = true;
- this.label41.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.label41.Location = new System.Drawing.Point(406, 339);
- this.label41.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label41.Name = "label41";
- this.label41.Size = new System.Drawing.Size(35, 12);
- this.label41.TabIndex = 82;
- this.label41.Text = "Heigh";
- //
- // txtarea2y2
- //
- this.txtarea2y2.Location = new System.Drawing.Point(404, 243);
- this.txtarea2y2.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea2y2.Name = "txtarea2y2";
- this.txtarea2y2.Size = new System.Drawing.Size(42, 21);
- this.txtarea2y2.TabIndex = 110;
- this.txtarea2y2.Text = "78";
- this.txtarea2y2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label39
- //
- this.label39.AutoSize = true;
- this.label39.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.label39.Location = new System.Drawing.Point(419, 294);
- this.label39.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label39.Name = "label39";
- this.label39.Size = new System.Drawing.Size(11, 12);
- this.label39.TabIndex = 82;
- this.label39.Text = "Y";
- //
- // txtarea2x2
- //
- this.txtarea2x2.Location = new System.Drawing.Point(357, 243);
- this.txtarea2x2.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea2x2.Name = "txtarea2x2";
- this.txtarea2x2.Size = new System.Drawing.Size(42, 21);
- this.txtarea2x2.TabIndex = 109;
- this.txtarea2x2.Text = "19";
- this.txtarea2x2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // textRegionX1
- //
- this.textRegionX1.Location = new System.Drawing.Point(351, 308);
- this.textRegionX1.Margin = new System.Windows.Forms.Padding(2);
- this.textRegionX1.Name = "textRegionX1";
- this.textRegionX1.Size = new System.Drawing.Size(42, 21);
- this.textRegionX1.TabIndex = 101;
- this.textRegionX1.Text = "1";
- this.textRegionX1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtarea2l1
- //
- this.txtarea2l1.Location = new System.Drawing.Point(458, 218);
- this.txtarea2l1.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea2l1.Name = "txtarea2l1";
- this.txtarea2l1.Size = new System.Drawing.Size(42, 21);
- this.txtarea2l1.TabIndex = 108;
- this.txtarea2l1.Text = "33";
- this.txtarea2l1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // textRegionY1
- //
- this.textRegionY1.Location = new System.Drawing.Point(404, 308);
- this.textRegionY1.Margin = new System.Windows.Forms.Padding(2);
- this.textRegionY1.Name = "textRegionY1";
- this.textRegionY1.Size = new System.Drawing.Size(42, 21);
- this.textRegionY1.TabIndex = 101;
- this.textRegionY1.Text = "1";
- this.textRegionY1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtarea1l3
- //
- this.txtarea1l3.Location = new System.Drawing.Point(458, 195);
- this.txtarea1l3.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea1l3.Name = "txtarea1l3";
- this.txtarea1l3.Size = new System.Drawing.Size(42, 21);
- this.txtarea1l3.TabIndex = 107;
- this.txtarea1l3.Text = "44";
- this.txtarea1l3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // textRegionwidth1
- //
- this.textRegionwidth1.Location = new System.Drawing.Point(351, 355);
- this.textRegionwidth1.Margin = new System.Windows.Forms.Padding(2);
- this.textRegionwidth1.Name = "textRegionwidth1";
- this.textRegionwidth1.Size = new System.Drawing.Size(42, 21);
- this.textRegionwidth1.TabIndex = 101;
- this.textRegionwidth1.Text = "2";
- this.textRegionwidth1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtarea2y1
- //
- this.txtarea2y1.Location = new System.Drawing.Point(404, 218);
- this.txtarea2y1.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea2y1.Name = "txtarea2y1";
- this.txtarea2y1.Size = new System.Drawing.Size(42, 21);
- this.txtarea2y1.TabIndex = 106;
- this.txtarea2y1.Text = "77";
- this.txtarea2y1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // textRegionHeight
- //
- this.textRegionHeight.Location = new System.Drawing.Point(404, 355);
- this.textRegionHeight.Margin = new System.Windows.Forms.Padding(2);
- this.textRegionHeight.Name = "textRegionHeight";
- this.textRegionHeight.Size = new System.Drawing.Size(42, 21);
- this.textRegionHeight.TabIndex = 101;
- this.textRegionHeight.Text = "5";
- this.textRegionHeight.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtarea2x1
- //
- this.txtarea2x1.Location = new System.Drawing.Point(357, 218);
- this.txtarea2x1.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea2x1.Name = "txtarea2x1";
- this.txtarea2x1.Size = new System.Drawing.Size(42, 21);
- this.txtarea2x1.TabIndex = 105;
- this.txtarea2x1.Text = "5";
- this.txtarea2x1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtarea1y3
- //
- this.txtarea1y3.Location = new System.Drawing.Point(404, 195);
- this.txtarea1y3.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea1y3.Name = "txtarea1y3";
- this.txtarea1y3.Size = new System.Drawing.Size(42, 21);
- this.txtarea1y3.TabIndex = 104;
- this.txtarea1y3.Text = "34";
- this.txtarea1y3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtarea1x3
- //
- this.txtarea1x3.Location = new System.Drawing.Point(357, 195);
- this.txtarea1x3.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea1x3.Name = "txtarea1x3";
- this.txtarea1x3.Size = new System.Drawing.Size(42, 21);
- this.txtarea1x3.TabIndex = 103;
- this.txtarea1x3.Text = "55";
- this.txtarea1x3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtarea1l2
- //
- this.txtarea1l2.Location = new System.Drawing.Point(458, 170);
- this.txtarea1l2.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea1l2.Name = "txtarea1l2";
- this.txtarea1l2.Size = new System.Drawing.Size(42, 21);
- this.txtarea1l2.TabIndex = 102;
- this.txtarea1l2.Text = "25";
- this.txtarea1l2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtarea1l1
- //
- this.txtarea1l1.Location = new System.Drawing.Point(458, 147);
- this.txtarea1l1.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea1l1.Name = "txtarea1l1";
- this.txtarea1l1.Size = new System.Drawing.Size(42, 21);
- this.txtarea1l1.TabIndex = 101;
- this.txtarea1l1.Text = "20";
- this.txtarea1l1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtarea1y2
- //
- this.txtarea1y2.Location = new System.Drawing.Point(404, 170);
- this.txtarea1y2.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea1y2.Name = "txtarea1y2";
- this.txtarea1y2.Size = new System.Drawing.Size(42, 21);
- this.txtarea1y2.TabIndex = 100;
- this.txtarea1y2.Text = "33";
- this.txtarea1y2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtarea1x2
- //
- this.txtarea1x2.Location = new System.Drawing.Point(357, 170);
- this.txtarea1x2.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea1x2.Name = "txtarea1x2";
- this.txtarea1x2.Size = new System.Drawing.Size(42, 21);
- this.txtarea1x2.TabIndex = 99;
- this.txtarea1x2.Text = "11";
- this.txtarea1x2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtarea1y1
- //
- this.txtarea1y1.Location = new System.Drawing.Point(404, 147);
- this.txtarea1y1.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea1y1.Name = "txtarea1y1";
- this.txtarea1y1.Size = new System.Drawing.Size(42, 21);
- this.txtarea1y1.TabIndex = 98;
- this.txtarea1y1.Text = "32";
- this.txtarea1y1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtarea1x1
- //
- this.txtarea1x1.Location = new System.Drawing.Point(357, 147);
- this.txtarea1x1.Margin = new System.Windows.Forms.Padding(2);
- this.txtarea1x1.Name = "txtarea1x1";
- this.txtarea1x1.Size = new System.Drawing.Size(42, 21);
- this.txtarea1x1.TabIndex = 97;
- this.txtarea1x1.Text = "32";
- this.txtarea1x1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label36
- //
- this.label36.AutoSize = true;
- this.label36.Location = new System.Drawing.Point(307, 149);
- this.label36.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label36.Name = "label36";
- this.label36.Size = new System.Drawing.Size(47, 12);
- this.label36.TabIndex = 96;
- this.label36.Text = "Areas1:";
- //
- // txtpy5
- //
- this.txtpy5.Location = new System.Drawing.Point(404, 121);
- this.txtpy5.Margin = new System.Windows.Forms.Padding(2);
- this.txtpy5.Name = "txtpy5";
- this.txtpy5.Size = new System.Drawing.Size(42, 21);
- this.txtpy5.TabIndex = 95;
- this.txtpy5.Text = "211";
- this.txtpy5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtpx5
- //
- this.txtpx5.Location = new System.Drawing.Point(357, 121);
- this.txtpx5.Margin = new System.Windows.Forms.Padding(2);
- this.txtpx5.Name = "txtpx5";
- this.txtpx5.Size = new System.Drawing.Size(42, 21);
- this.txtpx5.TabIndex = 94;
- this.txtpx5.Text = "333";
- this.txtpx5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtpy4
- //
- this.txtpy4.Location = new System.Drawing.Point(404, 96);
- this.txtpy4.Margin = new System.Windows.Forms.Padding(2);
- this.txtpy4.Name = "txtpy4";
- this.txtpy4.Size = new System.Drawing.Size(42, 21);
- this.txtpy4.TabIndex = 93;
- this.txtpy4.Text = "222";
- this.txtpy4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtpx4
- //
- this.txtpx4.Location = new System.Drawing.Point(357, 96);
- this.txtpx4.Margin = new System.Windows.Forms.Padding(2);
- this.txtpx4.Name = "txtpx4";
- this.txtpx4.Size = new System.Drawing.Size(42, 21);
- this.txtpx4.TabIndex = 92;
- this.txtpx4.Text = "111";
- this.txtpx4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtpy3
- //
- this.txtpy3.Location = new System.Drawing.Point(404, 72);
- this.txtpy3.Margin = new System.Windows.Forms.Padding(2);
- this.txtpy3.Name = "txtpy3";
- this.txtpy3.Size = new System.Drawing.Size(42, 21);
- this.txtpy3.TabIndex = 91;
- this.txtpy3.Text = "65";
- this.txtpy3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtpx3
- //
- this.txtpx3.Location = new System.Drawing.Point(357, 72);
- this.txtpx3.Margin = new System.Windows.Forms.Padding(2);
- this.txtpx3.Name = "txtpx3";
- this.txtpx3.Size = new System.Drawing.Size(42, 21);
- this.txtpx3.TabIndex = 90;
- this.txtpx3.Text = "55";
- this.txtpx3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtpy2
- //
- this.txtpy2.Location = new System.Drawing.Point(404, 47);
- this.txtpy2.Margin = new System.Windows.Forms.Padding(2);
- this.txtpy2.Name = "txtpy2";
- this.txtpy2.Size = new System.Drawing.Size(42, 21);
- this.txtpy2.TabIndex = 89;
- this.txtpy2.Text = "32";
- this.txtpy2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtpx2
- //
- this.txtpx2.Location = new System.Drawing.Point(357, 47);
- this.txtpx2.Margin = new System.Windows.Forms.Padding(2);
- this.txtpx2.Name = "txtpx2";
- this.txtpx2.Size = new System.Drawing.Size(42, 21);
- this.txtpx2.TabIndex = 88;
- this.txtpx2.Text = "44";
- this.txtpx2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label35
- //
- this.label35.AutoSize = true;
- this.label35.Location = new System.Drawing.Point(459, 7);
- this.label35.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(41, 12);
- this.label35.TabIndex = 87;
- this.label35.Text = "Length";
- //
- // label34
- //
- this.label34.AutoSize = true;
- this.label34.Location = new System.Drawing.Point(419, 7);
- this.label34.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label34.Name = "label34";
- this.label34.Size = new System.Drawing.Size(11, 12);
- this.label34.TabIndex = 86;
- this.label34.Text = "Y";
- //
- // label33
- //
- this.label33.AutoSize = true;
- this.label33.Location = new System.Drawing.Point(373, 7);
- this.label33.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(11, 12);
- this.label33.TabIndex = 85;
- this.label33.Text = "X";
- //
- // txtpy1
- //
- this.txtpy1.Location = new System.Drawing.Point(404, 22);
- this.txtpy1.Margin = new System.Windows.Forms.Padding(2);
- this.txtpy1.Name = "txtpy1";
- this.txtpy1.Size = new System.Drawing.Size(42, 21);
- this.txtpy1.TabIndex = 84;
- this.txtpy1.Text = "33";
- this.txtpy1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // txtpx1
- //
- this.txtpx1.Location = new System.Drawing.Point(357, 22);
- this.txtpx1.Margin = new System.Windows.Forms.Padding(2);
- this.txtpx1.Name = "txtpx1";
- this.txtpx1.Size = new System.Drawing.Size(42, 21);
- this.txtpx1.TabIndex = 83;
- this.txtpx1.Text = "22";
- this.txtpx1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- //
- // label32
- //
- this.label32.AutoSize = true;
- this.label32.Location = new System.Drawing.Point(307, 26);
- this.label32.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label32.Name = "label32";
- this.label32.Size = new System.Drawing.Size(47, 12);
- this.label32.TabIndex = 82;
- this.label32.Text = "points:";
- //
- // dataGridView1
- //
- this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.元素,
- this.含量});
- this.dataGridView1.Location = new System.Drawing.Point(11, 51);
- this.dataGridView1.Margin = new System.Windows.Forms.Padding(2);
- this.dataGridView1.Name = "dataGridView1";
- this.dataGridView1.RowTemplate.Height = 30;
- this.dataGridView1.Size = new System.Drawing.Size(247, 373);
- this.dataGridView1.TabIndex = 79;
- //
- // 元素
- //
- this.元素.HeaderText = "元素";
- this.元素.Name = "元素";
- //
- // 含量
- //
- this.含量.HeaderText = "含量";
- this.含量.Name = "含量";
- //
- // chart1
- //
- chartArea1.Name = "ChartArea1";
- this.chart1.ChartAreas.Add(chartArea1);
- legend1.Alignment = System.Drawing.StringAlignment.Center;
- legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
- legend1.Name = "Legend1";
- this.chart1.Legends.Add(legend1);
- this.chart1.Location = new System.Drawing.Point(554, 31);
- this.chart1.Margin = new System.Windows.Forms.Padding(2);
- this.chart1.Name = "chart1";
- series1.ChartArea = "ChartArea1";
- series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
- series1.Legend = "Legend1";
- series1.Name = "Series1";
- series2.ChartArea = "ChartArea1";
- series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline;
- series2.Legend = "Legend1";
- series2.Name = "Series2";
- this.chart1.Series.Add(series1);
- this.chart1.Series.Add(series2);
- this.chart1.Size = new System.Drawing.Size(593, 352);
- this.chart1.TabIndex = 3;
- this.chart1.Text = "chart1";
- //
- // button26
- //
- this.button26.Location = new System.Drawing.Point(145, 17);
- this.button26.Margin = new System.Windows.Forms.Padding(2);
- this.button26.Name = "button26";
- this.button26.Size = new System.Drawing.Size(82, 30);
- this.button26.TabIndex = 1;
- this.button26.Text = "面采集";
- this.button26.UseVisualStyleBackColor = true;
- this.button26.Click += new System.EventHandler(this.button26_Click);
- //
- // button25
- //
- this.button25.Location = new System.Drawing.Point(46, 17);
- this.button25.Margin = new System.Windows.Forms.Padding(2);
- this.button25.Name = "button25";
- this.button25.Size = new System.Drawing.Size(75, 30);
- this.button25.TabIndex = 0;
- this.button25.Text = "点采集";
- this.button25.UseVisualStyleBackColor = true;
- this.button25.Click += new System.EventHandler(this.button25_Click);
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.AutoScroll = true;
- this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
- this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.ClientSize = new System.Drawing.Size(1186, 697);
- this.Controls.Add(this.拍图);
- this.Controls.Add(this.groupBox1);
- this.Controls.Add(this.groupBox2);
- this.Margin = new System.Windows.Forms.Padding(2);
- this.Name = "Form1";
- this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
- this.Load += new System.EventHandler(this.Form1_Load);
- this.groupBox1.ResumeLayout(false);
- this.groupBox1.PerformLayout();
- this.拍图.ResumeLayout(false);
- this.拍图.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pBImage)).EndInit();
- this.groupBox2.ResumeLayout(false);
- this.groupBox2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.TextBox tBHV;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.TextBox tBHVIn;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.TextBox tBWD;
- private System.Windows.Forms.TextBox tBMag;
- private System.Windows.Forms.TextBox tBBright;
- private System.Windows.Forms.TextBox tBContast;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Label label12;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.Button button5;
- private System.Windows.Forms.Button button6;
- private System.Windows.Forms.TextBox tBWDIn;
- private System.Windows.Forms.TextBox tBMagIn;
- private System.Windows.Forms.TextBox tBrightIn;
- private System.Windows.Forms.TextBox tBContrastIn;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.Label label15;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.Button button7;
- private System.Windows.Forms.Button button8;
- private System.Windows.Forms.Button button9;
- private System.Windows.Forms.Button button10;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Label label18;
- private System.Windows.Forms.Label label19;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.Label label21;
- private System.Windows.Forms.TextBox tBX;
- private System.Windows.Forms.TextBox tBY;
- private System.Windows.Forms.TextBox tBZ;
- private System.Windows.Forms.TextBox tBT;
- private System.Windows.Forms.TextBox tBR;
- private System.Windows.Forms.Label label22;
- private System.Windows.Forms.Label label23;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.Label label25;
- private System.Windows.Forms.Label label26;
- private System.Windows.Forms.Button button11;
- private System.Windows.Forms.Button button12;
- private System.Windows.Forms.Button button13;
- private System.Windows.Forms.Button button14;
- private System.Windows.Forms.Button button15;
- private System.Windows.Forms.TextBox tBXIn;
- private System.Windows.Forms.TextBox tBYIn;
- private System.Windows.Forms.TextBox tBZIn;
- private System.Windows.Forms.TextBox tBTIn;
- private System.Windows.Forms.TextBox tBRIn;
- private System.Windows.Forms.Label label27;
- private System.Windows.Forms.Label label28;
- private System.Windows.Forms.Label label29;
- private System.Windows.Forms.Label label30;
- private System.Windows.Forms.Label label31;
- private System.Windows.Forms.Button button16;
- private System.Windows.Forms.Button button18;
- private System.Windows.Forms.Button button19;
- private System.Windows.Forms.Button button20;
- private System.Windows.Forms.Button button21;
- private System.Windows.Forms.Button button22;
- private System.Windows.Forms.Button button23;
- private System.Windows.Forms.GroupBox groupBox1;
- private System.Windows.Forms.GroupBox 拍图;
- private System.Windows.Forms.Button button24;
- private System.Windows.Forms.PictureBox pBImage;
- private System.Windows.Forms.GroupBox groupBox2;
- private System.Windows.Forms.DataGridView dataGridView1;
- private System.Windows.Forms.DataGridViewTextBoxColumn 元素;
- private System.Windows.Forms.DataGridViewTextBoxColumn 含量;
- private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
- private System.Windows.Forms.Button button26;
- private System.Windows.Forms.Button button25;
- private System.Windows.Forms.Button btnTest;
- private System.Windows.Forms.Label label37;
- private System.Windows.Forms.TextBox txtarea2l3;
- private System.Windows.Forms.TextBox txtarea2l2;
- private System.Windows.Forms.TextBox txtarea2y3;
- private System.Windows.Forms.TextBox txtarea2x3;
- private System.Windows.Forms.TextBox txtarea2y2;
- private System.Windows.Forms.TextBox txtarea2x2;
- private System.Windows.Forms.TextBox txtarea2l1;
- private System.Windows.Forms.TextBox txtarea1l3;
- private System.Windows.Forms.TextBox txtarea2y1;
- private System.Windows.Forms.TextBox txtarea2x1;
- private System.Windows.Forms.TextBox txtarea1y3;
- private System.Windows.Forms.TextBox txtarea1x3;
- private System.Windows.Forms.TextBox txtarea1l2;
- private System.Windows.Forms.TextBox txtarea1l1;
- private System.Windows.Forms.TextBox txtarea1y2;
- private System.Windows.Forms.TextBox txtarea1x2;
- private System.Windows.Forms.TextBox txtarea1y1;
- private System.Windows.Forms.TextBox txtarea1x1;
- private System.Windows.Forms.Label label36;
- private System.Windows.Forms.TextBox txtpy5;
- private System.Windows.Forms.TextBox txtpx5;
- private System.Windows.Forms.TextBox txtpy4;
- private System.Windows.Forms.TextBox txtpx4;
- private System.Windows.Forms.TextBox txtpy3;
- private System.Windows.Forms.TextBox txtpx3;
- private System.Windows.Forms.TextBox txtpy2;
- private System.Windows.Forms.TextBox txtpx2;
- private System.Windows.Forms.Label label35;
- private System.Windows.Forms.Label label34;
- private System.Windows.Forms.Label label33;
- private System.Windows.Forms.TextBox txtpy1;
- private System.Windows.Forms.TextBox txtpx1;
- private System.Windows.Forms.Label label32;
- private System.Windows.Forms.Button button27;
- private System.Windows.Forms.TextBox textRegionHeight;
- private System.Windows.Forms.TextBox textTime;
- private System.Windows.Forms.TextBox textRegionwidth1;
- private System.Windows.Forms.TextBox textRegionY1;
- private System.Windows.Forms.TextBox textRegionX1;
- private System.Windows.Forms.Label label39;
- private System.Windows.Forms.Label label41;
- private System.Windows.Forms.Label label42;
- private System.Windows.Forms.Label label40;
- private System.Windows.Forms.Label label38;
- private System.Windows.Forms.Button button29;
- private System.Windows.Forms.TextBox txtBSEWidth;
- private System.Windows.Forms.TextBox txtBSEHeight;
- private System.Windows.Forms.Label label44;
- private System.Windows.Forms.Label label43;
- private System.Windows.Forms.TextBox txtBSEDwell;
- private System.Windows.Forms.Label label45;
- private System.Windows.Forms.Button button28;
- private System.Windows.Forms.ComboBox cboSource;
- }
- }
|