|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980 |
- namespace CNAS_BalanceClient
- {
- partial class frmBalanceMain
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
-
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows 窗体设计器生成的代码
-
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmBalanceMain));
- this.pnlAll = new System.Windows.Forms.Panel();
- this.pnlCenter = new System.Windows.Forms.Panel();
- this.pnlBalance = new System.Windows.Forms.Panel();
- this.panel2 = new System.Windows.Forms.Panel();
- this.tabBalance = new System.Windows.Forms.TabControl();
- this.tabpAllWater = new System.Windows.Forms.TabPage();
- this.dgvQuanShuiFen = new System.Windows.Forms.DataGridView();
- this.ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Sample_Number = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Instrument_Number = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Crucible_Number = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Empty_Crucible_Weight = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Sample_Weight = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.AddSample_Weight = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Drying_Weight = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SecondDrying_Weight = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.ThirdDrying_Weight = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Mt = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Auto_Code = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Granularity = new System.Windows.Forms.DataGridViewComboBoxColumn();
- this.tabpWater = new System.Windows.Forms.TabPage();
- this.dgvShuiFen = new System.Windows.Forms.DataGridView();
- this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DecrementValue1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Mad = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tabpAsh = new System.Windows.Forms.TabPage();
- this.dgvHuiFen = new System.Windows.Forms.DataGridView();
- this.ID3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DecrementValue2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.AAD = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tabpVoliate = new System.Windows.Forms.TabPage();
- this.dgvHuiFaFen = new System.Windows.Forms.DataGridView();
- this.ID4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.VR = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.MAD2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.VAD = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tabpCrucible = new System.Windows.Forms.TabPage();
- this.panel3 = new System.Windows.Forms.Panel();
- this.panel7 = new System.Windows.Forms.Panel();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.panel9 = new System.Windows.Forms.Panel();
- this.tabShelf = new System.Windows.Forms.TabControl();
- this.tabPage1 = new System.Windows.Forms.TabPage();
- this.panel10 = new System.Windows.Forms.Panel();
- this.dgvCrucibleShelf = new System.Windows.Forms.DataGridView();
- this.Shelf_ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Shelf_SampleNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Shelf_WeighingType = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Shelf_SampleWeight = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Shelf_Operator = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Shelf_CrucibleNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.cmsShelf = new System.Windows.Forms.ContextMenuStrip(this.components);
- this.btnDeleteShelf = new System.Windows.Forms.ToolStripMenuItem();
- this.panel8 = new System.Windows.Forms.Panel();
- this.btnCrucible_D = new System.Windows.Forms.Button();
- this.btnCrucible_C = new System.Windows.Forms.Button();
- this.btnCrucible_B = new System.Windows.Forms.Button();
- this.btnCrucible_A = new System.Windows.Forms.Button();
- this.tabPage2 = new System.Windows.Forms.TabPage();
- this.pnlShelfHistoryBody = new System.Windows.Forms.Panel();
- this.groupBox3 = new System.Windows.Forms.GroupBox();
- this.dgvShelfFind = new System.Windows.Forms.DataGridView();
- this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn54 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn55 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn56 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn57 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn58 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pnlShelfHistoryTop = new System.Windows.Forms.Panel();
- this.pnlCenterTop = new System.Windows.Forms.Panel();
- this.btnFind = new System.Windows.Forms.Button();
- this.txtShelfFind = new System.Windows.Forms.TextBox();
- this.label9 = new System.Windows.Forms.Label();
- this.dtpEndDate = new System.Windows.Forms.DateTimePicker();
- this.dtpStartTime = new System.Windows.Forms.DateTimePicker();
- this.label11 = new System.Windows.Forms.Label();
- this.panel4 = new System.Windows.Forms.Panel();
- this.panel5 = new System.Windows.Forms.Panel();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.tabCrucibleType = new System.Windows.Forms.TabControl();
- this.tabHeatValue = new System.Windows.Forms.TabPage();
- this.dgvWeighing = new System.Windows.Forms.DataGridView();
- this.Column18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SampleCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Count = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tabSulfurValue = new System.Windows.Forms.TabPage();
- this.dgvCrucibleSulfur = new System.Windows.Forms.DataGridView();
- this.ID1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tabElementAynic = new System.Windows.Forms.TabPage();
- this.dgvCrucibleElement = new System.Windows.Forms.DataGridView();
- this.ID2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.panel6 = new System.Windows.Forms.Panel();
- this.btnAddReady = new System.Windows.Forms.Button();
- this.txtSampleCode = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.panel1 = new System.Windows.Forms.Panel();
- this.btnCodeOK = new System.Windows.Forms.Button();
- this.txtCode = new System.Windows.Forms.TextBox();
- this.label1 = new System.Windows.Forms.Label();
- this.toolStrip1 = new System.Windows.Forms.ToolStrip();
- this.tsbOpenPort = new System.Windows.Forms.ToolStripButton();
- this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
- this.tsbSave = new System.Windows.Forms.ToolStripButton();
- this.tsbAllSave = new System.Windows.Forms.ToolStripButton();
- this.tsbDelete = new System.Windows.Forms.ToolStripButton();
- this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
- this.tsbUpload = new System.Windows.Forms.ToolStripButton();
- this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
- this.tsbHistory = new System.Windows.Forms.ToolStripButton();
- this.menuStrip1 = new System.Windows.Forms.MenuStrip();
- this.数据ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmMapping = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmPortConfig = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmHelper = new System.Windows.Forms.ToolStripMenuItem();
- this.pnlBottom = new System.Windows.Forms.Panel();
- this.panel11 = new System.Windows.Forms.Panel();
- this.lblCNASDb = new System.Windows.Forms.Label();
- this.pnlSerialPortStatus = new System.Windows.Forms.Panel();
- this.lblPort = new System.Windows.Forms.Label();
- this.pnlTop = new System.Windows.Forms.Panel();
- this.pnlRight = new System.Windows.Forms.Panel();
- this.pnlLeft = new System.Windows.Forms.Panel();
- this.sPortBalance = new System.IO.Ports.SerialPort(this.components);
- this.pnlAll.SuspendLayout();
- this.pnlCenter.SuspendLayout();
- this.pnlBalance.SuspendLayout();
- this.panel2.SuspendLayout();
- this.tabBalance.SuspendLayout();
- this.tabpAllWater.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvQuanShuiFen)).BeginInit();
- this.tabpWater.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvShuiFen)).BeginInit();
- this.tabpAsh.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvHuiFen)).BeginInit();
- this.tabpVoliate.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvHuiFaFen)).BeginInit();
- this.tabpCrucible.SuspendLayout();
- this.panel3.SuspendLayout();
- this.panel7.SuspendLayout();
- this.groupBox2.SuspendLayout();
- this.panel9.SuspendLayout();
- this.tabShelf.SuspendLayout();
- this.tabPage1.SuspendLayout();
- this.panel10.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvCrucibleShelf)).BeginInit();
- this.cmsShelf.SuspendLayout();
- this.panel8.SuspendLayout();
- this.tabPage2.SuspendLayout();
- this.pnlShelfHistoryBody.SuspendLayout();
- this.groupBox3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvShelfFind)).BeginInit();
- this.pnlShelfHistoryTop.SuspendLayout();
- this.pnlCenterTop.SuspendLayout();
- this.panel4.SuspendLayout();
- this.panel5.SuspendLayout();
- this.groupBox1.SuspendLayout();
- this.tabCrucibleType.SuspendLayout();
- this.tabHeatValue.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvWeighing)).BeginInit();
- this.tabSulfurValue.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvCrucibleSulfur)).BeginInit();
- this.tabElementAynic.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvCrucibleElement)).BeginInit();
- this.panel6.SuspendLayout();
- this.panel1.SuspendLayout();
- this.toolStrip1.SuspendLayout();
- this.menuStrip1.SuspendLayout();
- this.pnlBottom.SuspendLayout();
- this.panel11.SuspendLayout();
- this.pnlSerialPortStatus.SuspendLayout();
- this.SuspendLayout();
- //
- // pnlAll
- //
- this.pnlAll.Controls.Add(this.pnlCenter);
- this.pnlAll.Controls.Add(this.pnlBottom);
- this.pnlAll.Controls.Add(this.pnlTop);
- this.pnlAll.Controls.Add(this.pnlRight);
- this.pnlAll.Controls.Add(this.pnlLeft);
- this.pnlAll.Dock = System.Windows.Forms.DockStyle.Fill;
- this.pnlAll.Location = new System.Drawing.Point(0, 0);
- this.pnlAll.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.pnlAll.Name = "pnlAll";
- this.pnlAll.Size = new System.Drawing.Size(1138, 633);
- this.pnlAll.TabIndex = 0;
- //
- // pnlCenter
- //
- this.pnlCenter.Controls.Add(this.pnlBalance);
- this.pnlCenter.Controls.Add(this.toolStrip1);
- this.pnlCenter.Controls.Add(this.menuStrip1);
- this.pnlCenter.Dock = System.Windows.Forms.DockStyle.Fill;
- this.pnlCenter.Location = new System.Drawing.Point(2, 5);
- this.pnlCenter.Name = "pnlCenter";
- this.pnlCenter.Size = new System.Drawing.Size(1134, 589);
- this.pnlCenter.TabIndex = 4;
- //
- // pnlBalance
- //
- this.pnlBalance.Controls.Add(this.panel2);
- this.pnlBalance.Controls.Add(this.panel1);
- this.pnlBalance.Dock = System.Windows.Forms.DockStyle.Fill;
- this.pnlBalance.Location = new System.Drawing.Point(0, 50);
- this.pnlBalance.Name = "pnlBalance";
- this.pnlBalance.Size = new System.Drawing.Size(1134, 539);
- this.pnlBalance.TabIndex = 2;
- //
- // panel2
- //
- this.panel2.Controls.Add(this.tabBalance);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel2.Location = new System.Drawing.Point(0, 34);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(1134, 505);
- this.panel2.TabIndex = 2;
- //
- // tabBalance
- //
- this.tabBalance.Controls.Add(this.tabpAllWater);
- this.tabBalance.Controls.Add(this.tabpWater);
- this.tabBalance.Controls.Add(this.tabpAsh);
- this.tabBalance.Controls.Add(this.tabpVoliate);
- this.tabBalance.Controls.Add(this.tabpCrucible);
- this.tabBalance.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tabBalance.Location = new System.Drawing.Point(0, 0);
- this.tabBalance.Name = "tabBalance";
- this.tabBalance.SelectedIndex = 0;
- this.tabBalance.Size = new System.Drawing.Size(1134, 505);
- this.tabBalance.TabIndex = 0;
- this.tabBalance.Selected += new System.Windows.Forms.TabControlEventHandler(this.tabBalance_Selected);
- //
- // tabpAllWater
- //
- this.tabpAllWater.Controls.Add(this.dgvQuanShuiFen);
- this.tabpAllWater.Location = new System.Drawing.Point(4, 26);
- this.tabpAllWater.Name = "tabpAllWater";
- this.tabpAllWater.Padding = new System.Windows.Forms.Padding(3);
- this.tabpAllWater.Size = new System.Drawing.Size(1126, 475);
- this.tabpAllWater.TabIndex = 0;
- this.tabpAllWater.Text = "全水分";
- this.tabpAllWater.UseVisualStyleBackColor = true;
- //
- // dgvQuanShuiFen
- //
- this.dgvQuanShuiFen.AllowUserToAddRows = false;
- this.dgvQuanShuiFen.BackgroundColor = System.Drawing.Color.White;
- this.dgvQuanShuiFen.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvQuanShuiFen.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.ID,
- this.Sample_Number,
- this.Instrument_Number,
- this.Crucible_Number,
- this.Empty_Crucible_Weight,
- this.Sample_Weight,
- this.AddSample_Weight,
- this.Drying_Weight,
- this.SecondDrying_Weight,
- this.ThirdDrying_Weight,
- this.Mt,
- this.Auto_Code,
- this.Granularity});
- this.dgvQuanShuiFen.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvQuanShuiFen.Location = new System.Drawing.Point(3, 3);
- this.dgvQuanShuiFen.Name = "dgvQuanShuiFen";
- dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.DimGray;
- dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black;
- this.dgvQuanShuiFen.RowsDefaultCellStyle = dataGridViewCellStyle2;
- this.dgvQuanShuiFen.RowTemplate.Height = 23;
- this.dgvQuanShuiFen.Size = new System.Drawing.Size(1120, 469);
- this.dgvQuanShuiFen.TabIndex = 0;
- this.dgvQuanShuiFen.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvQuanShuiFen_CellEndEdit);
- this.dgvQuanShuiFen.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dgvQuanShuiFen_CellFormatting);
- this.dgvQuanShuiFen.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvQuanShuiFen_RowPostPaint);
- //
- // ID
- //
- this.ID.DataPropertyName = "GUID";
- this.ID.HeaderText = "编号";
- this.ID.Name = "ID";
- this.ID.Visible = false;
- this.ID.Width = 55;
- //
- // Sample_Number
- //
- this.Sample_Number.DataPropertyName = "Sample_Number";
- this.Sample_Number.HeaderText = "样品编号";
- this.Sample_Number.Name = "Sample_Number";
- this.Sample_Number.ReadOnly = true;
- //
- // Instrument_Number
- //
- this.Instrument_Number.DataPropertyName = "Instrument_Number";
- this.Instrument_Number.HeaderText = "仪器编号";
- this.Instrument_Number.Name = "Instrument_Number";
- //
- // Crucible_Number
- //
- this.Crucible_Number.DataPropertyName = "Crucible_Number";
- this.Crucible_Number.HeaderText = "坩埚号";
- this.Crucible_Number.Name = "Crucible_Number";
- //
- // Empty_Crucible_Weight
- //
- this.Empty_Crucible_Weight.DataPropertyName = "Empty_Crucible_Weight";
- this.Empty_Crucible_Weight.HeaderText = "空坩埚重(g)";
- this.Empty_Crucible_Weight.Name = "Empty_Crucible_Weight";
- this.Empty_Crucible_Weight.ReadOnly = true;
- //
- // Sample_Weight
- //
- this.Sample_Weight.DataPropertyName = "Sample_Weight";
- this.Sample_Weight.HeaderText = "样重(g)";
- this.Sample_Weight.Name = "Sample_Weight";
- this.Sample_Weight.ReadOnly = true;
- this.Sample_Weight.Width = 80;
- //
- // AddSample_Weight
- //
- this.AddSample_Weight.DataPropertyName = "AddSample_Weight";
- this.AddSample_Weight.HeaderText = "加样重(g)";
- this.AddSample_Weight.Name = "AddSample_Weight";
- this.AddSample_Weight.ReadOnly = true;
- this.AddSample_Weight.Width = 90;
- //
- // Drying_Weight
- //
- this.Drying_Weight.DataPropertyName = "Drying_Weight";
- this.Drying_Weight.HeaderText = "烘干重(g)";
- this.Drying_Weight.Name = "Drying_Weight";
- this.Drying_Weight.ReadOnly = true;
- this.Drying_Weight.Width = 90;
- //
- // SecondDrying_Weight
- //
- this.SecondDrying_Weight.DataPropertyName = "SecondDrying_Weight";
- this.SecondDrying_Weight.HeaderText = "二次烘干重(g)";
- this.SecondDrying_Weight.Name = "SecondDrying_Weight";
- this.SecondDrying_Weight.ReadOnly = true;
- this.SecondDrying_Weight.Width = 120;
- //
- // ThirdDrying_Weight
- //
- this.ThirdDrying_Weight.DataPropertyName = "ThirdDrying_Weight";
- this.ThirdDrying_Weight.HeaderText = "三次烘干重(g)";
- this.ThirdDrying_Weight.Name = "ThirdDrying_Weight";
- this.ThirdDrying_Weight.ReadOnly = true;
- this.ThirdDrying_Weight.Width = 120;
- //
- // Mt
- //
- this.Mt.DataPropertyName = "Mt";
- this.Mt.HeaderText = "Mt(%)";
- this.Mt.Name = "Mt";
- this.Mt.ReadOnly = true;
- this.Mt.Width = 50;
- //
- // Auto_Code
- //
- this.Auto_Code.DataPropertyName = "Auto_Code";
- this.Auto_Code.HeaderText = "自动编号";
- this.Auto_Code.Name = "Auto_Code";
- this.Auto_Code.ReadOnly = true;
- //
- // Granularity
- //
- this.Granularity.DataPropertyName = "Granularity";
- dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.DimGray;
- dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
- this.Granularity.DefaultCellStyle = dataGridViewCellStyle1;
- this.Granularity.DisplayStyle = System.Windows.Forms.DataGridViewComboBoxDisplayStyle.Nothing;
- this.Granularity.HeaderText = "颗粒度";
- this.Granularity.Items.AddRange(new object[] {
- "6mm",
- "13mm"});
- this.Granularity.Name = "Granularity";
- //
- // tabpWater
- //
- this.tabpWater.Controls.Add(this.dgvShuiFen);
- this.tabpWater.Location = new System.Drawing.Point(4, 26);
- this.tabpWater.Name = "tabpWater";
- this.tabpWater.Padding = new System.Windows.Forms.Padding(3);
- this.tabpWater.Size = new System.Drawing.Size(1126, 475);
- this.tabpWater.TabIndex = 1;
- this.tabpWater.Text = "水分";
- this.tabpWater.UseVisualStyleBackColor = true;
- //
- // dgvShuiFen
- //
- this.dgvShuiFen.AllowUserToAddRows = false;
- this.dgvShuiFen.BackgroundColor = System.Drawing.Color.White;
- this.dgvShuiFen.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvShuiFen.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dataGridViewTextBoxColumn1,
- this.dataGridViewTextBoxColumn2,
- this.dataGridViewTextBoxColumn3,
- this.dataGridViewTextBoxColumn4,
- this.dataGridViewTextBoxColumn5,
- this.dataGridViewTextBoxColumn6,
- this.dataGridViewTextBoxColumn7,
- this.dataGridViewTextBoxColumn8,
- this.dataGridViewTextBoxColumn9,
- this.dataGridViewTextBoxColumn10,
- this.DecrementValue1,
- this.Mad,
- this.dataGridViewTextBoxColumn12});
- this.dgvShuiFen.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvShuiFen.Location = new System.Drawing.Point(3, 3);
- this.dgvShuiFen.Name = "dgvShuiFen";
- dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.DimGray;
- dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.Black;
- this.dgvShuiFen.RowsDefaultCellStyle = dataGridViewCellStyle4;
- this.dgvShuiFen.RowTemplate.Height = 23;
- this.dgvShuiFen.Size = new System.Drawing.Size(1120, 469);
- this.dgvShuiFen.TabIndex = 1;
- this.dgvShuiFen.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.dgvShuiFen_CellBeginEdit);
- this.dgvShuiFen.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvShuiFen_CellEndEdit);
- this.dgvShuiFen.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dgvShuiFen_CellFormatting);
- this.dgvShuiFen.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.dgvShuiFen_DataError);
- this.dgvShuiFen.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.dgvShuiFen_EditingControlShowing);
- this.dgvShuiFen.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvShuiFen_RowPostPaint);
- //
- // dataGridViewTextBoxColumn1
- //
- this.dataGridViewTextBoxColumn1.DataPropertyName = "GUID";
- this.dataGridViewTextBoxColumn1.HeaderText = "编号";
- this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
- this.dataGridViewTextBoxColumn1.ReadOnly = true;
- this.dataGridViewTextBoxColumn1.Visible = false;
- this.dataGridViewTextBoxColumn1.Width = 55;
- //
- // dataGridViewTextBoxColumn2
- //
- this.dataGridViewTextBoxColumn2.DataPropertyName = "Sample_Number";
- this.dataGridViewTextBoxColumn2.HeaderText = "样品编号";
- this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
- this.dataGridViewTextBoxColumn2.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn3
- //
- this.dataGridViewTextBoxColumn3.DataPropertyName = "Instrument_Number";
- this.dataGridViewTextBoxColumn3.HeaderText = "仪器编号";
- this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
- //
- // dataGridViewTextBoxColumn4
- //
- this.dataGridViewTextBoxColumn4.DataPropertyName = "Crucible_Number";
- this.dataGridViewTextBoxColumn4.HeaderText = "坩埚号";
- this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
- //
- // dataGridViewTextBoxColumn5
- //
- this.dataGridViewTextBoxColumn5.DataPropertyName = "Empty_Crucible_Weight";
- this.dataGridViewTextBoxColumn5.HeaderText = "空坩埚重(g)";
- this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
- this.dataGridViewTextBoxColumn5.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn6
- //
- this.dataGridViewTextBoxColumn6.DataPropertyName = "Sample_Weight";
- this.dataGridViewTextBoxColumn6.HeaderText = "样重(g)";
- this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
- this.dataGridViewTextBoxColumn6.ReadOnly = true;
- this.dataGridViewTextBoxColumn6.Width = 80;
- //
- // dataGridViewTextBoxColumn7
- //
- this.dataGridViewTextBoxColumn7.DataPropertyName = "AddSample_Weight";
- this.dataGridViewTextBoxColumn7.HeaderText = "加样重(g)";
- this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
- this.dataGridViewTextBoxColumn7.ReadOnly = true;
- this.dataGridViewTextBoxColumn7.Width = 90;
- //
- // dataGridViewTextBoxColumn8
- //
- this.dataGridViewTextBoxColumn8.DataPropertyName = "Drying_Weight";
- this.dataGridViewTextBoxColumn8.HeaderText = "烘干重(g)";
- this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
- this.dataGridViewTextBoxColumn8.ReadOnly = true;
- this.dataGridViewTextBoxColumn8.Width = 90;
- //
- // dataGridViewTextBoxColumn9
- //
- this.dataGridViewTextBoxColumn9.DataPropertyName = "SecondDrying_Weight";
- this.dataGridViewTextBoxColumn9.HeaderText = "二次烘干重(g)";
- this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
- this.dataGridViewTextBoxColumn9.ReadOnly = true;
- this.dataGridViewTextBoxColumn9.Width = 120;
- //
- // dataGridViewTextBoxColumn10
- //
- this.dataGridViewTextBoxColumn10.DataPropertyName = "ThirdDrying_Weight";
- this.dataGridViewTextBoxColumn10.HeaderText = "三次烘干重(g)";
- this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
- this.dataGridViewTextBoxColumn10.ReadOnly = true;
- this.dataGridViewTextBoxColumn10.Width = 120;
- //
- // DecrementValue1
- //
- this.DecrementValue1.DataPropertyName = "DecrementValue";
- this.DecrementValue1.HeaderText = "减量";
- this.DecrementValue1.Name = "DecrementValue1";
- this.DecrementValue1.ReadOnly = true;
- //
- // Mad
- //
- this.Mad.DataPropertyName = "Mad";
- dataGridViewCellStyle3.Format = "N2";
- dataGridViewCellStyle3.NullValue = "0";
- this.Mad.DefaultCellStyle = dataGridViewCellStyle3;
- this.Mad.HeaderText = "Mad(%)";
- this.Mad.Name = "Mad";
- this.Mad.Width = 50;
- //
- // dataGridViewTextBoxColumn12
- //
- this.dataGridViewTextBoxColumn12.DataPropertyName = "Auto_Code";
- this.dataGridViewTextBoxColumn12.HeaderText = "自动编号";
- this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
- this.dataGridViewTextBoxColumn12.ReadOnly = true;
- //
- // tabpAsh
- //
- this.tabpAsh.Controls.Add(this.dgvHuiFen);
- this.tabpAsh.Location = new System.Drawing.Point(4, 26);
- this.tabpAsh.Name = "tabpAsh";
- this.tabpAsh.Size = new System.Drawing.Size(1126, 475);
- this.tabpAsh.TabIndex = 2;
- this.tabpAsh.Text = "灰分";
- this.tabpAsh.UseVisualStyleBackColor = true;
- //
- // dgvHuiFen
- //
- this.dgvHuiFen.AllowUserToAddRows = false;
- this.dgvHuiFen.BackgroundColor = System.Drawing.Color.White;
- this.dgvHuiFen.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvHuiFen.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.ID3,
- this.dataGridViewTextBoxColumn14,
- this.dataGridViewTextBoxColumn15,
- this.dataGridViewTextBoxColumn16,
- this.dataGridViewTextBoxColumn17,
- this.dataGridViewTextBoxColumn18,
- this.dataGridViewTextBoxColumn19,
- this.dataGridViewTextBoxColumn20,
- this.dataGridViewTextBoxColumn21,
- this.dataGridViewTextBoxColumn22,
- this.DecrementValue2,
- this.AAD,
- this.Column17});
- this.dgvHuiFen.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvHuiFen.Location = new System.Drawing.Point(0, 0);
- this.dgvHuiFen.Name = "dgvHuiFen";
- dataGridViewCellStyle5.SelectionBackColor = System.Drawing.Color.DimGray;
- dataGridViewCellStyle5.SelectionForeColor = System.Drawing.Color.Black;
- this.dgvHuiFen.RowsDefaultCellStyle = dataGridViewCellStyle5;
- this.dgvHuiFen.RowTemplate.Height = 23;
- this.dgvHuiFen.Size = new System.Drawing.Size(1126, 475);
- this.dgvHuiFen.TabIndex = 2;
- this.dgvHuiFen.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvHuiFen_CellEndEdit);
- this.dgvHuiFen.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dgvHuiFen_CellFormatting);
- this.dgvHuiFen.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvHuiFen_RowPostPaint);
- //
- // ID3
- //
- this.ID3.DataPropertyName = "GUID";
- this.ID3.HeaderText = "编号";
- this.ID3.Name = "ID3";
- this.ID3.ReadOnly = true;
- this.ID3.Visible = false;
- this.ID3.Width = 55;
- //
- // dataGridViewTextBoxColumn14
- //
- this.dataGridViewTextBoxColumn14.DataPropertyName = "Sample_Number";
- this.dataGridViewTextBoxColumn14.HeaderText = "样品编号";
- this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
- this.dataGridViewTextBoxColumn14.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn15
- //
- this.dataGridViewTextBoxColumn15.DataPropertyName = "Instrument_Number";
- this.dataGridViewTextBoxColumn15.HeaderText = "仪器编号";
- this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
- //
- // dataGridViewTextBoxColumn16
- //
- this.dataGridViewTextBoxColumn16.DataPropertyName = "Crucible_Number";
- this.dataGridViewTextBoxColumn16.HeaderText = "坩埚号";
- this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
- //
- // dataGridViewTextBoxColumn17
- //
- this.dataGridViewTextBoxColumn17.DataPropertyName = "Empty_Crucible_Weight";
- this.dataGridViewTextBoxColumn17.HeaderText = "空坩埚重(g)";
- this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
- this.dataGridViewTextBoxColumn17.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn18
- //
- this.dataGridViewTextBoxColumn18.DataPropertyName = "Sample_Weight";
- this.dataGridViewTextBoxColumn18.HeaderText = "样重(g)";
- this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
- this.dataGridViewTextBoxColumn18.ReadOnly = true;
- this.dataGridViewTextBoxColumn18.Width = 80;
- //
- // dataGridViewTextBoxColumn19
- //
- this.dataGridViewTextBoxColumn19.DataPropertyName = "AddSample_Weight";
- this.dataGridViewTextBoxColumn19.HeaderText = "加样重(g)";
- this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
- this.dataGridViewTextBoxColumn19.ReadOnly = true;
- this.dataGridViewTextBoxColumn19.Width = 90;
- //
- // dataGridViewTextBoxColumn20
- //
- this.dataGridViewTextBoxColumn20.DataPropertyName = "BurningResidue_Weight";
- this.dataGridViewTextBoxColumn20.HeaderText = "烧残重(g)";
- this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
- this.dataGridViewTextBoxColumn20.ReadOnly = true;
- this.dataGridViewTextBoxColumn20.Width = 90;
- //
- // dataGridViewTextBoxColumn21
- //
- this.dataGridViewTextBoxColumn21.DataPropertyName = "SecondBurningResidue_Weight";
- this.dataGridViewTextBoxColumn21.HeaderText = "二次灼烧残重(g)";
- this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
- this.dataGridViewTextBoxColumn21.ReadOnly = true;
- this.dataGridViewTextBoxColumn21.Width = 120;
- //
- // dataGridViewTextBoxColumn22
- //
- this.dataGridViewTextBoxColumn22.DataPropertyName = "ThirdBurningResidue_Weight";
- this.dataGridViewTextBoxColumn22.HeaderText = "三次灼烧重(g)";
- this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
- this.dataGridViewTextBoxColumn22.ReadOnly = true;
- this.dataGridViewTextBoxColumn22.Width = 120;
- //
- // DecrementValue2
- //
- this.DecrementValue2.DataPropertyName = "DecrementValue";
- this.DecrementValue2.HeaderText = "减量";
- this.DecrementValue2.Name = "DecrementValue2";
- this.DecrementValue2.ReadOnly = true;
- //
- // AAD
- //
- this.AAD.DataPropertyName = "AAD";
- this.AAD.HeaderText = "Aad(%)";
- this.AAD.Name = "AAD";
- this.AAD.ReadOnly = true;
- //
- // Column17
- //
- this.Column17.DataPropertyName = "Auto_Code";
- this.Column17.HeaderText = "自动编号";
- this.Column17.Name = "Column17";
- this.Column17.ReadOnly = true;
- //
- // tabpVoliate
- //
- this.tabpVoliate.Controls.Add(this.dgvHuiFaFen);
- this.tabpVoliate.Location = new System.Drawing.Point(4, 26);
- this.tabpVoliate.Name = "tabpVoliate";
- this.tabpVoliate.Size = new System.Drawing.Size(1126, 475);
- this.tabpVoliate.TabIndex = 3;
- this.tabpVoliate.Text = "挥发分";
- this.tabpVoliate.UseVisualStyleBackColor = true;
- //
- // dgvHuiFaFen
- //
- this.dgvHuiFaFen.AllowUserToAddRows = false;
- this.dgvHuiFaFen.BackgroundColor = System.Drawing.Color.White;
- this.dgvHuiFaFen.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvHuiFaFen.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.ID4,
- this.dataGridViewTextBoxColumn24,
- this.dataGridViewTextBoxColumn25,
- this.dataGridViewTextBoxColumn26,
- this.dataGridViewTextBoxColumn27,
- this.dataGridViewTextBoxColumn28,
- this.dataGridViewTextBoxColumn29,
- this.dataGridViewTextBoxColumn30,
- this.VR,
- this.MAD2,
- this.VAD,
- this.Column13,
- this.Column14});
- this.dgvHuiFaFen.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvHuiFaFen.Location = new System.Drawing.Point(0, 0);
- this.dgvHuiFaFen.Name = "dgvHuiFaFen";
- dataGridViewCellStyle7.SelectionBackColor = System.Drawing.Color.DimGray;
- dataGridViewCellStyle7.SelectionForeColor = System.Drawing.Color.Black;
- this.dgvHuiFaFen.RowsDefaultCellStyle = dataGridViewCellStyle7;
- this.dgvHuiFaFen.RowTemplate.Height = 23;
- this.dgvHuiFaFen.Size = new System.Drawing.Size(1126, 475);
- this.dgvHuiFaFen.TabIndex = 2;
- this.dgvHuiFaFen.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.dgvHuiFaFen_CellBeginEdit);
- this.dgvHuiFaFen.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvHuiFaFen_CellEndEdit);
- this.dgvHuiFaFen.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dgvHuiFaFen_CellFormatting);
- this.dgvHuiFaFen.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.dgvHuiFaFen_DataError);
- this.dgvHuiFaFen.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.dgvHuiFaFen_EditingControlShowing);
- this.dgvHuiFaFen.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvHuiFaFen_RowPostPaint);
- //
- // ID4
- //
- this.ID4.DataPropertyName = "GUID";
- this.ID4.HeaderText = "编号";
- this.ID4.Name = "ID4";
- this.ID4.ReadOnly = true;
- this.ID4.Visible = false;
- this.ID4.Width = 55;
- //
- // dataGridViewTextBoxColumn24
- //
- this.dataGridViewTextBoxColumn24.DataPropertyName = "Sample_Number";
- this.dataGridViewTextBoxColumn24.HeaderText = "样品编号";
- this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
- this.dataGridViewTextBoxColumn24.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn25
- //
- this.dataGridViewTextBoxColumn25.DataPropertyName = "Instrument_Number";
- this.dataGridViewTextBoxColumn25.HeaderText = "仪器编号";
- this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
- //
- // dataGridViewTextBoxColumn26
- //
- this.dataGridViewTextBoxColumn26.DataPropertyName = "Crucible_Number";
- this.dataGridViewTextBoxColumn26.HeaderText = "坩埚号";
- this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
- //
- // dataGridViewTextBoxColumn27
- //
- this.dataGridViewTextBoxColumn27.DataPropertyName = "Empty_Crucible_Weight";
- this.dataGridViewTextBoxColumn27.HeaderText = "空坩埚重(g)";
- this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
- this.dataGridViewTextBoxColumn27.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn28
- //
- this.dataGridViewTextBoxColumn28.DataPropertyName = "Sample_Weight";
- this.dataGridViewTextBoxColumn28.HeaderText = "样重(g)";
- this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
- this.dataGridViewTextBoxColumn28.ReadOnly = true;
- this.dataGridViewTextBoxColumn28.Width = 80;
- //
- // dataGridViewTextBoxColumn29
- //
- this.dataGridViewTextBoxColumn29.DataPropertyName = "AddSample_Weight";
- this.dataGridViewTextBoxColumn29.HeaderText = "加样重(g)";
- this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
- this.dataGridViewTextBoxColumn29.ReadOnly = true;
- this.dataGridViewTextBoxColumn29.Width = 90;
- //
- // dataGridViewTextBoxColumn30
- //
- this.dataGridViewTextBoxColumn30.DataPropertyName = "Drying_Weight";
- this.dataGridViewTextBoxColumn30.HeaderText = "烧残重(g)";
- this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
- this.dataGridViewTextBoxColumn30.ReadOnly = true;
- this.dataGridViewTextBoxColumn30.Width = 90;
- //
- // VR
- //
- this.VR.DataPropertyName = "VR";
- this.VR.HeaderText = "Vr(%)";
- this.VR.Name = "VR";
- this.VR.ReadOnly = true;
- //
- // MAD2
- //
- this.MAD2.DataPropertyName = "MAD";
- dataGridViewCellStyle6.Format = "N2";
- dataGridViewCellStyle6.NullValue = "0";
- this.MAD2.DefaultCellStyle = dataGridViewCellStyle6;
- this.MAD2.HeaderText = "Mad(%)";
- this.MAD2.Name = "MAD2";
- //
- // VAD
- //
- this.VAD.DataPropertyName = "VAD";
- this.VAD.HeaderText = "Vad(%)";
- this.VAD.Name = "VAD";
- this.VAD.ReadOnly = true;
- //
- // Column13
- //
- this.Column13.DataPropertyName = "Cinder_Characteristics";
- this.Column13.HeaderText = "焦渣特征";
- this.Column13.Name = "Column13";
- //
- // Column14
- //
- this.Column14.DataPropertyName = "Auto_Code";
- this.Column14.HeaderText = "自动编号";
- this.Column14.Name = "Column14";
- this.Column14.ReadOnly = true;
- //
- // tabpCrucible
- //
- this.tabpCrucible.Controls.Add(this.panel3);
- this.tabpCrucible.Location = new System.Drawing.Point(4, 26);
- this.tabpCrucible.Name = "tabpCrucible";
- this.tabpCrucible.Padding = new System.Windows.Forms.Padding(3);
- this.tabpCrucible.Size = new System.Drawing.Size(1126, 475);
- this.tabpCrucible.TabIndex = 4;
- this.tabpCrucible.Text = "天平称量_坩埚";
- this.tabpCrucible.UseVisualStyleBackColor = true;
- //
- // panel3
- //
- this.panel3.Controls.Add(this.panel7);
- this.panel3.Controls.Add(this.panel4);
- this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel3.Location = new System.Drawing.Point(3, 3);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(1120, 469);
- this.panel3.TabIndex = 0;
- //
- // panel7
- //
- this.panel7.Controls.Add(this.groupBox2);
- this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel7.Location = new System.Drawing.Point(287, 0);
- this.panel7.Name = "panel7";
- this.panel7.Size = new System.Drawing.Size(833, 469);
- this.panel7.TabIndex = 1;
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.panel9);
- this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.groupBox2.Location = new System.Drawing.Point(0, 0);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Size = new System.Drawing.Size(833, 469);
- this.groupBox2.TabIndex = 0;
- this.groupBox2.TabStop = false;
- this.groupBox2.Text = "已称量数据";
- //
- // panel9
- //
- this.panel9.Controls.Add(this.tabShelf);
- this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel9.Location = new System.Drawing.Point(3, 19);
- this.panel9.Name = "panel9";
- this.panel9.Size = new System.Drawing.Size(827, 447);
- this.panel9.TabIndex = 1;
- //
- // tabShelf
- //
- this.tabShelf.Controls.Add(this.tabPage1);
- this.tabShelf.Controls.Add(this.tabPage2);
- this.tabShelf.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tabShelf.Location = new System.Drawing.Point(0, 0);
- this.tabShelf.Name = "tabShelf";
- this.tabShelf.SelectedIndex = 0;
- this.tabShelf.Size = new System.Drawing.Size(827, 447);
- this.tabShelf.TabIndex = 0;
- this.tabShelf.Selected += new System.Windows.Forms.TabControlEventHandler(this.tabShelf_Selected);
- //
- // tabPage1
- //
- this.tabPage1.Controls.Add(this.panel10);
- this.tabPage1.Controls.Add(this.panel8);
- this.tabPage1.Location = new System.Drawing.Point(4, 26);
- this.tabPage1.Name = "tabPage1";
- this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage1.Size = new System.Drawing.Size(819, 417);
- this.tabPage1.TabIndex = 0;
- this.tabPage1.Text = "今日称量数据";
- this.tabPage1.UseVisualStyleBackColor = true;
- //
- // panel10
- //
- this.panel10.Controls.Add(this.dgvCrucibleShelf);
- this.panel10.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel10.Location = new System.Drawing.Point(3, 50);
- this.panel10.Name = "panel10";
- this.panel10.Size = new System.Drawing.Size(813, 364);
- this.panel10.TabIndex = 2;
- //
- // dgvCrucibleShelf
- //
- this.dgvCrucibleShelf.AllowUserToAddRows = false;
- this.dgvCrucibleShelf.BackgroundColor = System.Drawing.Color.White;
- this.dgvCrucibleShelf.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvCrucibleShelf.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.Shelf_ID,
- this.Shelf_SampleNumber,
- this.Shelf_WeighingType,
- this.Shelf_SampleWeight,
- this.Shelf_Operator,
- this.Shelf_CrucibleNumber});
- this.dgvCrucibleShelf.ContextMenuStrip = this.cmsShelf;
- this.dgvCrucibleShelf.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvCrucibleShelf.Location = new System.Drawing.Point(0, 0);
- this.dgvCrucibleShelf.Name = "dgvCrucibleShelf";
- this.dgvCrucibleShelf.RowTemplate.Height = 23;
- this.dgvCrucibleShelf.Size = new System.Drawing.Size(813, 364);
- this.dgvCrucibleShelf.TabIndex = 0;
- this.dgvCrucibleShelf.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvCrucibleShelf_RowPostPaint);
- //
- // Shelf_ID
- //
- this.Shelf_ID.DataPropertyName = "GUID";
- this.Shelf_ID.HeaderText = "ID";
- this.Shelf_ID.Name = "Shelf_ID";
- this.Shelf_ID.ReadOnly = true;
- this.Shelf_ID.Visible = false;
- //
- // Shelf_SampleNumber
- //
- this.Shelf_SampleNumber.DataPropertyName = "Sample_Number";
- this.Shelf_SampleNumber.HeaderText = "样品编码";
- this.Shelf_SampleNumber.Name = "Shelf_SampleNumber";
- this.Shelf_SampleNumber.ReadOnly = true;
- this.Shelf_SampleNumber.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.Shelf_SampleNumber.Width = 150;
- //
- // Shelf_WeighingType
- //
- this.Shelf_WeighingType.DataPropertyName = "WeighingType";
- this.Shelf_WeighingType.HeaderText = "称量类型";
- this.Shelf_WeighingType.Name = "Shelf_WeighingType";
- this.Shelf_WeighingType.ReadOnly = true;
- this.Shelf_WeighingType.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.Shelf_WeighingType.Width = 120;
- //
- // Shelf_SampleWeight
- //
- this.Shelf_SampleWeight.DataPropertyName = "Sample_Weight";
- this.Shelf_SampleWeight.HeaderText = "重量(g)";
- this.Shelf_SampleWeight.Name = "Shelf_SampleWeight";
- this.Shelf_SampleWeight.ReadOnly = true;
- this.Shelf_SampleWeight.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.Shelf_SampleWeight.Width = 120;
- //
- // Shelf_Operator
- //
- this.Shelf_Operator.DataPropertyName = "Operator";
- this.Shelf_Operator.HeaderText = "创建人";
- this.Shelf_Operator.Name = "Shelf_Operator";
- this.Shelf_Operator.ReadOnly = true;
- this.Shelf_Operator.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.Shelf_Operator.Width = 120;
- //
- // Shelf_CrucibleNumber
- //
- this.Shelf_CrucibleNumber.DataPropertyName = "Crucible_Number";
- this.Shelf_CrucibleNumber.HeaderText = "坩埚号";
- this.Shelf_CrucibleNumber.Name = "Shelf_CrucibleNumber";
- this.Shelf_CrucibleNumber.ReadOnly = true;
- this.Shelf_CrucibleNumber.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.Shelf_CrucibleNumber.Width = 120;
- //
- // cmsShelf
- //
- this.cmsShelf.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.btnDeleteShelf});
- this.cmsShelf.Name = "cmsShelf";
- this.cmsShelf.Size = new System.Drawing.Size(101, 26);
- //
- // btnDeleteShelf
- //
- this.btnDeleteShelf.Name = "btnDeleteShelf";
- this.btnDeleteShelf.Size = new System.Drawing.Size(100, 22);
- this.btnDeleteShelf.Text = "移除";
- this.btnDeleteShelf.Click += new System.EventHandler(this.btnDeleteShelf_Click);
- //
- // panel8
- //
- this.panel8.Controls.Add(this.btnCrucible_D);
- this.panel8.Controls.Add(this.btnCrucible_C);
- this.panel8.Controls.Add(this.btnCrucible_B);
- this.panel8.Controls.Add(this.btnCrucible_A);
- this.panel8.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel8.Location = new System.Drawing.Point(3, 3);
- this.panel8.Name = "panel8";
- this.panel8.Size = new System.Drawing.Size(813, 47);
- this.panel8.TabIndex = 1;
- //
- // btnCrucible_D
- //
- this.btnCrucible_D.Location = new System.Drawing.Point(263, 11);
- this.btnCrucible_D.Name = "btnCrucible_D";
- this.btnCrucible_D.Size = new System.Drawing.Size(78, 23);
- this.btnCrucible_D.TabIndex = 7;
- this.btnCrucible_D.Text = "D号坩埚架";
- this.btnCrucible_D.UseVisualStyleBackColor = true;
- this.btnCrucible_D.Click += new System.EventHandler(this.btnCrucible_D_Click);
- //
- // btnCrucible_C
- //
- this.btnCrucible_C.Location = new System.Drawing.Point(179, 11);
- this.btnCrucible_C.Name = "btnCrucible_C";
- this.btnCrucible_C.Size = new System.Drawing.Size(78, 23);
- this.btnCrucible_C.TabIndex = 6;
- this.btnCrucible_C.Text = "C号坩埚架";
- this.btnCrucible_C.UseVisualStyleBackColor = true;
- this.btnCrucible_C.Click += new System.EventHandler(this.btnCrucible_C_Click);
- //
- // btnCrucible_B
- //
- this.btnCrucible_B.Location = new System.Drawing.Point(96, 11);
- this.btnCrucible_B.Name = "btnCrucible_B";
- this.btnCrucible_B.Size = new System.Drawing.Size(78, 23);
- this.btnCrucible_B.TabIndex = 5;
- this.btnCrucible_B.Text = "B号坩埚架";
- this.btnCrucible_B.UseVisualStyleBackColor = true;
- this.btnCrucible_B.Click += new System.EventHandler(this.btnCrucible_B_Click);
- //
- // btnCrucible_A
- //
- this.btnCrucible_A.Location = new System.Drawing.Point(12, 11);
- this.btnCrucible_A.Name = "btnCrucible_A";
- this.btnCrucible_A.Size = new System.Drawing.Size(78, 23);
- this.btnCrucible_A.TabIndex = 4;
- this.btnCrucible_A.Text = "A号坩埚架";
- this.btnCrucible_A.UseVisualStyleBackColor = true;
- this.btnCrucible_A.Click += new System.EventHandler(this.btnCrucible_A_Click);
- //
- // tabPage2
- //
- this.tabPage2.Controls.Add(this.pnlShelfHistoryBody);
- this.tabPage2.Controls.Add(this.pnlShelfHistoryTop);
- this.tabPage2.Location = new System.Drawing.Point(4, 26);
- this.tabPage2.Name = "tabPage2";
- this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage2.Size = new System.Drawing.Size(819, 419);
- this.tabPage2.TabIndex = 1;
- this.tabPage2.Text = "查询称量数据";
- this.tabPage2.UseVisualStyleBackColor = true;
- //
- // pnlShelfHistoryBody
- //
- this.pnlShelfHistoryBody.Controls.Add(this.groupBox3);
- this.pnlShelfHistoryBody.Dock = System.Windows.Forms.DockStyle.Fill;
- this.pnlShelfHistoryBody.Location = new System.Drawing.Point(3, 67);
- this.pnlShelfHistoryBody.Name = "pnlShelfHistoryBody";
- this.pnlShelfHistoryBody.Size = new System.Drawing.Size(813, 349);
- this.pnlShelfHistoryBody.TabIndex = 1;
- //
- // groupBox3
- //
- this.groupBox3.Controls.Add(this.dgvShelfFind);
- this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.groupBox3.Location = new System.Drawing.Point(0, 0);
- this.groupBox3.Name = "groupBox3";
- this.groupBox3.Size = new System.Drawing.Size(813, 349);
- this.groupBox3.TabIndex = 0;
- this.groupBox3.TabStop = false;
- this.groupBox3.Text = "查询结果";
- //
- // dgvShelfFind
- //
- this.dgvShelfFind.AllowUserToAddRows = false;
- this.dgvShelfFind.BackgroundColor = System.Drawing.Color.White;
- this.dgvShelfFind.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvShelfFind.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dataGridViewTextBoxColumn11,
- this.dataGridViewTextBoxColumn54,
- this.dataGridViewTextBoxColumn55,
- this.dataGridViewTextBoxColumn56,
- this.dataGridViewTextBoxColumn57,
- this.dataGridViewTextBoxColumn58});
- this.dgvShelfFind.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvShelfFind.Location = new System.Drawing.Point(3, 19);
- this.dgvShelfFind.Name = "dgvShelfFind";
- this.dgvShelfFind.RowTemplate.Height = 23;
- this.dgvShelfFind.Size = new System.Drawing.Size(807, 327);
- this.dgvShelfFind.TabIndex = 1;
- this.dgvShelfFind.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvShelfFind_RowPostPaint);
- //
- // dataGridViewTextBoxColumn11
- //
- this.dataGridViewTextBoxColumn11.DataPropertyName = "GUID";
- this.dataGridViewTextBoxColumn11.HeaderText = "ID";
- this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
- this.dataGridViewTextBoxColumn11.ReadOnly = true;
- this.dataGridViewTextBoxColumn11.Visible = false;
- //
- // dataGridViewTextBoxColumn54
- //
- this.dataGridViewTextBoxColumn54.DataPropertyName = "Sample_Number";
- this.dataGridViewTextBoxColumn54.HeaderText = "样品编码";
- this.dataGridViewTextBoxColumn54.Name = "dataGridViewTextBoxColumn54";
- this.dataGridViewTextBoxColumn54.ReadOnly = true;
- this.dataGridViewTextBoxColumn54.Width = 150;
- //
- // dataGridViewTextBoxColumn55
- //
- this.dataGridViewTextBoxColumn55.DataPropertyName = "WeighingType";
- this.dataGridViewTextBoxColumn55.HeaderText = "称量类型";
- this.dataGridViewTextBoxColumn55.Name = "dataGridViewTextBoxColumn55";
- this.dataGridViewTextBoxColumn55.ReadOnly = true;
- this.dataGridViewTextBoxColumn55.Width = 120;
- //
- // dataGridViewTextBoxColumn56
- //
- this.dataGridViewTextBoxColumn56.DataPropertyName = "Sample_Weight";
- this.dataGridViewTextBoxColumn56.HeaderText = "重量(g)";
- this.dataGridViewTextBoxColumn56.Name = "dataGridViewTextBoxColumn56";
- this.dataGridViewTextBoxColumn56.ReadOnly = true;
- this.dataGridViewTextBoxColumn56.Width = 120;
- //
- // dataGridViewTextBoxColumn57
- //
- this.dataGridViewTextBoxColumn57.DataPropertyName = "Operator";
- this.dataGridViewTextBoxColumn57.HeaderText = "创建人";
- this.dataGridViewTextBoxColumn57.Name = "dataGridViewTextBoxColumn57";
- this.dataGridViewTextBoxColumn57.ReadOnly = true;
- this.dataGridViewTextBoxColumn57.Width = 120;
- //
- // dataGridViewTextBoxColumn58
- //
- this.dataGridViewTextBoxColumn58.DataPropertyName = "Crucible_Number";
- this.dataGridViewTextBoxColumn58.HeaderText = "坩埚号";
- this.dataGridViewTextBoxColumn58.Name = "dataGridViewTextBoxColumn58";
- this.dataGridViewTextBoxColumn58.ReadOnly = true;
- this.dataGridViewTextBoxColumn58.Width = 120;
- //
- // pnlShelfHistoryTop
- //
- this.pnlShelfHistoryTop.Controls.Add(this.pnlCenterTop);
- this.pnlShelfHistoryTop.Dock = System.Windows.Forms.DockStyle.Top;
- this.pnlShelfHistoryTop.Location = new System.Drawing.Point(3, 3);
- this.pnlShelfHistoryTop.Name = "pnlShelfHistoryTop";
- this.pnlShelfHistoryTop.Size = new System.Drawing.Size(813, 64);
- this.pnlShelfHistoryTop.TabIndex = 0;
- //
- // pnlCenterTop
- //
- this.pnlCenterTop.Controls.Add(this.btnFind);
- this.pnlCenterTop.Controls.Add(this.txtShelfFind);
- this.pnlCenterTop.Controls.Add(this.label9);
- this.pnlCenterTop.Controls.Add(this.dtpEndDate);
- this.pnlCenterTop.Controls.Add(this.dtpStartTime);
- this.pnlCenterTop.Controls.Add(this.label11);
- this.pnlCenterTop.Dock = System.Windows.Forms.DockStyle.Top;
- this.pnlCenterTop.Location = new System.Drawing.Point(0, 0);
- this.pnlCenterTop.Name = "pnlCenterTop";
- this.pnlCenterTop.Size = new System.Drawing.Size(813, 48);
- this.pnlCenterTop.TabIndex = 1;
- //
- // btnFind
- //
- this.btnFind.Location = new System.Drawing.Point(646, 11);
- this.btnFind.Name = "btnFind";
- this.btnFind.Size = new System.Drawing.Size(75, 25);
- this.btnFind.TabIndex = 10;
- this.btnFind.Text = "查询";
- this.btnFind.UseVisualStyleBackColor = true;
- this.btnFind.Click += new System.EventHandler(this.btnFind_Click);
- //
- // txtShelfFind
- //
- this.txtShelfFind.Location = new System.Drawing.Point(429, 13);
- this.txtShelfFind.Name = "txtShelfFind";
- this.txtShelfFind.Size = new System.Drawing.Size(173, 23);
- this.txtShelfFind.TabIndex = 6;
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Location = new System.Drawing.Point(366, 15);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(56, 17);
- this.label9.TabIndex = 5;
- this.label9.Text = "样品编码";
- //
- // dtpEndDate
- //
- this.dtpEndDate.CustomFormat = "yyyy-MM-dd HH:mm";
- this.dtpEndDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtpEndDate.Location = new System.Drawing.Point(214, 11);
- this.dtpEndDate.Name = "dtpEndDate";
- this.dtpEndDate.Size = new System.Drawing.Size(139, 23);
- this.dtpEndDate.TabIndex = 2;
- //
- // dtpStartTime
- //
- this.dtpStartTime.CustomFormat = "yyyy-MM-dd HH:mm";
- this.dtpStartTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtpStartTime.Location = new System.Drawing.Point(69, 11);
- this.dtpStartTime.Name = "dtpStartTime";
- this.dtpStartTime.Size = new System.Drawing.Size(139, 23);
- this.dtpStartTime.TabIndex = 1;
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Location = new System.Drawing.Point(6, 15);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(56, 17);
- this.label11.TabIndex = 0;
- this.label11.Text = "称量日期";
- //
- // panel4
- //
- this.panel4.Controls.Add(this.panel5);
- this.panel4.Controls.Add(this.panel6);
- this.panel4.Dock = System.Windows.Forms.DockStyle.Left;
- this.panel4.Location = new System.Drawing.Point(0, 0);
- this.panel4.Name = "panel4";
- this.panel4.Size = new System.Drawing.Size(287, 469);
- this.panel4.TabIndex = 0;
- //
- // panel5
- //
- this.panel5.Controls.Add(this.groupBox1);
- this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel5.Location = new System.Drawing.Point(0, 47);
- this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(287, 422);
- this.panel5.TabIndex = 1;
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.tabCrucibleType);
- this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.groupBox1.Location = new System.Drawing.Point(0, 0);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Size = new System.Drawing.Size(287, 422);
- this.groupBox1.TabIndex = 1;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "待称量区";
- //
- // tabCrucibleType
- //
- this.tabCrucibleType.Controls.Add(this.tabHeatValue);
- this.tabCrucibleType.Controls.Add(this.tabSulfurValue);
- this.tabCrucibleType.Controls.Add(this.tabElementAynic);
- this.tabCrucibleType.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tabCrucibleType.Location = new System.Drawing.Point(3, 19);
- this.tabCrucibleType.Name = "tabCrucibleType";
- this.tabCrucibleType.SelectedIndex = 0;
- this.tabCrucibleType.Size = new System.Drawing.Size(281, 400);
- this.tabCrucibleType.TabIndex = 1;
- this.tabCrucibleType.Selected += new System.Windows.Forms.TabControlEventHandler(this.tabCrucibleType_Selected);
- //
- // tabHeatValue
- //
- this.tabHeatValue.Controls.Add(this.dgvWeighing);
- this.tabHeatValue.Location = new System.Drawing.Point(4, 26);
- this.tabHeatValue.Name = "tabHeatValue";
- this.tabHeatValue.Padding = new System.Windows.Forms.Padding(3);
- this.tabHeatValue.Size = new System.Drawing.Size(273, 370);
- this.tabHeatValue.TabIndex = 0;
- this.tabHeatValue.Text = "热值";
- this.tabHeatValue.UseVisualStyleBackColor = true;
- //
- // dgvWeighing
- //
- this.dgvWeighing.AllowUserToAddRows = false;
- this.dgvWeighing.BackgroundColor = System.Drawing.Color.White;
- this.dgvWeighing.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvWeighing.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.Column18,
- this.SampleCode,
- this.Count});
- this.dgvWeighing.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvWeighing.Location = new System.Drawing.Point(3, 3);
- this.dgvWeighing.Name = "dgvWeighing";
- this.dgvWeighing.RowTemplate.Height = 23;
- this.dgvWeighing.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvWeighing.Size = new System.Drawing.Size(267, 364);
- this.dgvWeighing.TabIndex = 0;
- this.dgvWeighing.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvWeighing_RowPostPaint);
- //
- // Column18
- //
- this.Column18.DataPropertyName = "GUID";
- this.Column18.HeaderText = "ID";
- this.Column18.Name = "Column18";
- this.Column18.ReadOnly = true;
- this.Column18.Visible = false;
- //
- // SampleCode
- //
- this.SampleCode.DataPropertyName = "Sample_Number";
- this.SampleCode.HeaderText = "样品编号";
- this.SampleCode.Name = "SampleCode";
- this.SampleCode.ReadOnly = true;
- //
- // Count
- //
- this.Count.DataPropertyName = "DataMold";
- this.Count.HeaderText = "次数";
- this.Count.Name = "Count";
- this.Count.ReadOnly = true;
- //
- // tabSulfurValue
- //
- this.tabSulfurValue.Controls.Add(this.dgvCrucibleSulfur);
- this.tabSulfurValue.Location = new System.Drawing.Point(4, 26);
- this.tabSulfurValue.Name = "tabSulfurValue";
- this.tabSulfurValue.Padding = new System.Windows.Forms.Padding(3);
- this.tabSulfurValue.Size = new System.Drawing.Size(273, 372);
- this.tabSulfurValue.TabIndex = 1;
- this.tabSulfurValue.Text = "硫分";
- this.tabSulfurValue.UseVisualStyleBackColor = true;
- //
- // dgvCrucibleSulfur
- //
- this.dgvCrucibleSulfur.AllowUserToAddRows = false;
- this.dgvCrucibleSulfur.BackgroundColor = System.Drawing.Color.White;
- this.dgvCrucibleSulfur.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvCrucibleSulfur.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.ID1,
- this.dataGridViewTextBoxColumn13,
- this.dataGridViewTextBoxColumn23});
- this.dgvCrucibleSulfur.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvCrucibleSulfur.Location = new System.Drawing.Point(3, 3);
- this.dgvCrucibleSulfur.Name = "dgvCrucibleSulfur";
- this.dgvCrucibleSulfur.RowTemplate.Height = 23;
- this.dgvCrucibleSulfur.Size = new System.Drawing.Size(267, 366);
- this.dgvCrucibleSulfur.TabIndex = 1;
- this.dgvCrucibleSulfur.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvCrucibleSulfur_RowPostPaint);
- //
- // ID1
- //
- this.ID1.DataPropertyName = "ID";
- this.ID1.HeaderText = "ID";
- this.ID1.Name = "ID1";
- this.ID1.Visible = false;
- //
- // dataGridViewTextBoxColumn13
- //
- this.dataGridViewTextBoxColumn13.DataPropertyName = "Sample_Number";
- this.dataGridViewTextBoxColumn13.HeaderText = "样品编号";
- this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
- this.dataGridViewTextBoxColumn13.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn23
- //
- this.dataGridViewTextBoxColumn23.DataPropertyName = "DataMold";
- this.dataGridViewTextBoxColumn23.HeaderText = "次数";
- this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
- this.dataGridViewTextBoxColumn23.ReadOnly = true;
- //
- // tabElementAynic
- //
- this.tabElementAynic.Controls.Add(this.dgvCrucibleElement);
- this.tabElementAynic.Location = new System.Drawing.Point(4, 26);
- this.tabElementAynic.Name = "tabElementAynic";
- this.tabElementAynic.Size = new System.Drawing.Size(273, 372);
- this.tabElementAynic.TabIndex = 2;
- this.tabElementAynic.Text = "元素分析";
- this.tabElementAynic.UseVisualStyleBackColor = true;
- //
- // dgvCrucibleElement
- //
- this.dgvCrucibleElement.AllowUserToAddRows = false;
- this.dgvCrucibleElement.BackgroundColor = System.Drawing.Color.White;
- this.dgvCrucibleElement.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvCrucibleElement.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.ID2,
- this.dataGridViewTextBoxColumn31,
- this.dataGridViewTextBoxColumn32});
- this.dgvCrucibleElement.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvCrucibleElement.Location = new System.Drawing.Point(0, 0);
- this.dgvCrucibleElement.Name = "dgvCrucibleElement";
- this.dgvCrucibleElement.RowTemplate.Height = 23;
- this.dgvCrucibleElement.Size = new System.Drawing.Size(273, 372);
- this.dgvCrucibleElement.TabIndex = 1;
- this.dgvCrucibleElement.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvCrucibleElement_RowPostPaint);
- //
- // ID2
- //
- this.ID2.DataPropertyName = "ID";
- this.ID2.HeaderText = "ID";
- this.ID2.Name = "ID2";
- this.ID2.ReadOnly = true;
- this.ID2.Visible = false;
- //
- // dataGridViewTextBoxColumn31
- //
- this.dataGridViewTextBoxColumn31.DataPropertyName = "Sample_Number";
- this.dataGridViewTextBoxColumn31.HeaderText = "样品编号";
- this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
- this.dataGridViewTextBoxColumn31.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn32
- //
- this.dataGridViewTextBoxColumn32.DataPropertyName = "DataMold";
- this.dataGridViewTextBoxColumn32.HeaderText = "次数";
- this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
- this.dataGridViewTextBoxColumn32.ReadOnly = true;
- //
- // panel6
- //
- this.panel6.Controls.Add(this.btnAddReady);
- this.panel6.Controls.Add(this.txtSampleCode);
- this.panel6.Controls.Add(this.label2);
- this.panel6.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel6.Location = new System.Drawing.Point(0, 0);
- this.panel6.Name = "panel6";
- this.panel6.Size = new System.Drawing.Size(287, 47);
- this.panel6.TabIndex = 0;
- //
- // btnAddReady
- //
- this.btnAddReady.Location = new System.Drawing.Point(217, 10);
- this.btnAddReady.Name = "btnAddReady";
- this.btnAddReady.Size = new System.Drawing.Size(67, 23);
- this.btnAddReady.TabIndex = 3;
- this.btnAddReady.Text = "准备称量";
- this.btnAddReady.UseVisualStyleBackColor = true;
- this.btnAddReady.Click += new System.EventHandler(this.btnAddReady_Click);
- //
- // txtSampleCode
- //
- this.txtSampleCode.Location = new System.Drawing.Point(63, 10);
- this.txtSampleCode.Name = "txtSampleCode";
- this.txtSampleCode.Size = new System.Drawing.Size(148, 23);
- this.txtSampleCode.TabIndex = 2;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(2, 13);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(68, 17);
- this.label2.TabIndex = 1;
- this.label2.Text = "样品编码:";
- //
- // panel1
- //
- this.panel1.Controls.Add(this.btnCodeOK);
- this.panel1.Controls.Add(this.txtCode);
- this.panel1.Controls.Add(this.label1);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1134, 34);
- this.panel1.TabIndex = 1;
- //
- // btnCodeOK
- //
- this.btnCodeOK.Location = new System.Drawing.Point(277, 7);
- this.btnCodeOK.Name = "btnCodeOK";
- this.btnCodeOK.Size = new System.Drawing.Size(62, 23);
- this.btnCodeOK.TabIndex = 2;
- this.btnCodeOK.Text = "确定";
- this.btnCodeOK.UseVisualStyleBackColor = true;
- this.btnCodeOK.Click += new System.EventHandler(this.btnCodeOK_Click);
- //
- // txtCode
- //
- this.txtCode.Location = new System.Drawing.Point(82, 6);
- this.txtCode.Name = "txtCode";
- this.txtCode.Size = new System.Drawing.Size(187, 23);
- this.txtCode.TabIndex = 1;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(3, 9);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(80, 17);
- this.label1.TabIndex = 0;
- this.label1.Text = "请输入条码:";
- //
- // toolStrip1
- //
- this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.tsbOpenPort,
- this.toolStripSeparator2,
- this.tsbSave,
- this.tsbAllSave,
- this.tsbDelete,
- this.toolStripSeparator1,
- this.tsbUpload,
- this.toolStripSeparator3,
- this.tsbHistory});
- this.toolStrip1.Location = new System.Drawing.Point(0, 25);
- this.toolStrip1.Name = "toolStrip1";
- this.toolStrip1.Size = new System.Drawing.Size(1134, 25);
- this.toolStrip1.TabIndex = 1;
- this.toolStrip1.Text = "toolStrip1";
- //
- // tsbOpenPort
- //
- this.tsbOpenPort.Image = ((System.Drawing.Image)(resources.GetObject("tsbOpenPort.Image")));
- this.tsbOpenPort.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbOpenPort.Name = "tsbOpenPort";
- this.tsbOpenPort.Size = new System.Drawing.Size(76, 22);
- this.tsbOpenPort.Text = "打开串口";
- this.tsbOpenPort.Click += new System.EventHandler(this.tsbOpenPort_Click);
- //
- // toolStripSeparator2
- //
- this.toolStripSeparator2.Name = "toolStripSeparator2";
- this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
- //
- // tsbSave
- //
- this.tsbSave.Image = ((System.Drawing.Image)(resources.GetObject("tsbSave.Image")));
- this.tsbSave.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbSave.Name = "tsbSave";
- this.tsbSave.Size = new System.Drawing.Size(52, 22);
- this.tsbSave.Text = "保存";
- this.tsbSave.Click += new System.EventHandler(this.tsbSave_Click);
- //
- // tsbAllSave
- //
- this.tsbAllSave.Image = ((System.Drawing.Image)(resources.GetObject("tsbAllSave.Image")));
- this.tsbAllSave.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbAllSave.Name = "tsbAllSave";
- this.tsbAllSave.Size = new System.Drawing.Size(76, 22);
- this.tsbAllSave.Text = "全部保存";
- this.tsbAllSave.Click += new System.EventHandler(this.tsbAllSave_Click);
- //
- // tsbDelete
- //
- this.tsbDelete.Image = ((System.Drawing.Image)(resources.GetObject("tsbDelete.Image")));
- this.tsbDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbDelete.Name = "tsbDelete";
- this.tsbDelete.Size = new System.Drawing.Size(52, 22);
- this.tsbDelete.Text = "废样";
- this.tsbDelete.Click += new System.EventHandler(this.tsbDelete_Click);
- //
- // toolStripSeparator1
- //
- this.toolStripSeparator1.Name = "toolStripSeparator1";
- this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
- //
- // tsbUpload
- //
- this.tsbUpload.Image = ((System.Drawing.Image)(resources.GetObject("tsbUpload.Image")));
- this.tsbUpload.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbUpload.Name = "tsbUpload";
- this.tsbUpload.Size = new System.Drawing.Size(76, 22);
- this.tsbUpload.Text = "上传数据";
- this.tsbUpload.Click += new System.EventHandler(this.tsbUpload_Click);
- //
- // toolStripSeparator3
- //
- this.toolStripSeparator3.Name = "toolStripSeparator3";
- this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
- //
- // tsbHistory
- //
- this.tsbHistory.Image = ((System.Drawing.Image)(resources.GetObject("tsbHistory.Image")));
- this.tsbHistory.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbHistory.Name = "tsbHistory";
- this.tsbHistory.Size = new System.Drawing.Size(76, 22);
- this.tsbHistory.Text = "查询历史";
- this.tsbHistory.Click += new System.EventHandler(this.tsbHistory_Click);
- //
- // menuStrip1
- //
- this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.数据ToolStripMenuItem,
- this.tsmHelper});
- this.menuStrip1.Location = new System.Drawing.Point(0, 0);
- this.menuStrip1.Name = "menuStrip1";
- this.menuStrip1.Size = new System.Drawing.Size(1134, 25);
- this.menuStrip1.TabIndex = 0;
- this.menuStrip1.Text = "menuStrip1";
- //
- // 数据ToolStripMenuItem
- //
- this.数据ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.tsmMapping,
- this.tsmPortConfig});
- this.数据ToolStripMenuItem.Name = "数据ToolStripMenuItem";
- this.数据ToolStripMenuItem.Size = new System.Drawing.Size(61, 21);
- this.数据ToolStripMenuItem.Text = "数据(&D)";
- //
- // tsmMapping
- //
- this.tsmMapping.Image = ((System.Drawing.Image)(resources.GetObject("tsmMapping.Image")));
- this.tsmMapping.Name = "tsmMapping";
- this.tsmMapping.Size = new System.Drawing.Size(180, 22);
- this.tsmMapping.Text = "字段映射";
- this.tsmMapping.Click += new System.EventHandler(this.tsmMapping_Click);
- //
- // tsmPortConfig
- //
- this.tsmPortConfig.Image = ((System.Drawing.Image)(resources.GetObject("tsmPortConfig.Image")));
- this.tsmPortConfig.Name = "tsmPortConfig";
- this.tsmPortConfig.Size = new System.Drawing.Size(180, 22);
- this.tsmPortConfig.Text = "串口设置";
- this.tsmPortConfig.Click += new System.EventHandler(this.tsmPortConfig_Click);
- //
- // tsmHelper
- //
- this.tsmHelper.Name = "tsmHelper";
- this.tsmHelper.Size = new System.Drawing.Size(61, 21);
- this.tsmHelper.Text = "帮助(&H)";
- this.tsmHelper.Click += new System.EventHandler(this.tsmHelper_Click);
- //
- // pnlBottom
- //
- this.pnlBottom.Controls.Add(this.panel11);
- this.pnlBottom.Controls.Add(this.pnlSerialPortStatus);
- this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.pnlBottom.Location = new System.Drawing.Point(2, 594);
- this.pnlBottom.Name = "pnlBottom";
- this.pnlBottom.Size = new System.Drawing.Size(1134, 39);
- this.pnlBottom.TabIndex = 3;
- //
- // panel11
- //
- this.panel11.Controls.Add(this.lblCNASDb);
- this.panel11.Dock = System.Windows.Forms.DockStyle.Left;
- this.panel11.Location = new System.Drawing.Point(157, 0);
- this.panel11.Name = "panel11";
- this.panel11.Size = new System.Drawing.Size(311, 39);
- this.panel11.TabIndex = 1;
- //
- // lblCNASDb
- //
- this.lblCNASDb.AutoSize = true;
- this.lblCNASDb.ForeColor = System.Drawing.Color.Red;
- this.lblCNASDb.Location = new System.Drawing.Point(6, 11);
- this.lblCNASDb.Name = "lblCNASDb";
- this.lblCNASDb.Size = new System.Drawing.Size(158, 17);
- this.lblCNASDb.TabIndex = 1;
- this.lblCNASDb.Text = "CNAS数据库无法正常连接...";
- this.lblCNASDb.Visible = false;
- //
- // pnlSerialPortStatus
- //
- this.pnlSerialPortStatus.Controls.Add(this.lblPort);
- this.pnlSerialPortStatus.Dock = System.Windows.Forms.DockStyle.Left;
- this.pnlSerialPortStatus.Location = new System.Drawing.Point(0, 0);
- this.pnlSerialPortStatus.Name = "pnlSerialPortStatus";
- this.pnlSerialPortStatus.Size = new System.Drawing.Size(157, 39);
- this.pnlSerialPortStatus.TabIndex = 0;
- //
- // lblPort
- //
- this.lblPort.AutoSize = true;
- this.lblPort.ForeColor = System.Drawing.Color.Red;
- this.lblPort.Location = new System.Drawing.Point(8, 11);
- this.lblPort.Name = "lblPort";
- this.lblPort.Size = new System.Drawing.Size(77, 17);
- this.lblPort.TabIndex = 0;
- this.lblPort.Text = "串口已关闭...";
- //
- // pnlTop
- //
- this.pnlTop.Dock = System.Windows.Forms.DockStyle.Top;
- this.pnlTop.Location = new System.Drawing.Point(2, 0);
- this.pnlTop.Name = "pnlTop";
- this.pnlTop.Size = new System.Drawing.Size(1134, 5);
- this.pnlTop.TabIndex = 2;
- //
- // pnlRight
- //
- this.pnlRight.Dock = System.Windows.Forms.DockStyle.Right;
- this.pnlRight.Location = new System.Drawing.Point(1136, 0);
- this.pnlRight.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.pnlRight.Name = "pnlRight";
- this.pnlRight.Size = new System.Drawing.Size(2, 633);
- this.pnlRight.TabIndex = 1;
- //
- // pnlLeft
- //
- this.pnlLeft.Dock = System.Windows.Forms.DockStyle.Left;
- this.pnlLeft.Location = new System.Drawing.Point(0, 0);
- this.pnlLeft.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.pnlLeft.Name = "pnlLeft";
- this.pnlLeft.Size = new System.Drawing.Size(2, 633);
- this.pnlLeft.TabIndex = 0;
- //
- // sPortBalance
- //
- this.sPortBalance.DataReceived += new System.IO.Ports.SerialDataReceivedEventHandler(this.sPortBalance_DataReceived);
- //
- // frmBalanceMain
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1138, 633);
- this.Controls.Add(this.pnlAll);
- this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MainMenuStrip = this.menuStrip1;
- this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.Name = "frmBalanceMain";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "天平端客户端";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmBalanceMain_FormClosing);
- this.Load += new System.EventHandler(this.frmBalanceMain_Load);
- this.pnlAll.ResumeLayout(false);
- this.pnlCenter.ResumeLayout(false);
- this.pnlCenter.PerformLayout();
- this.pnlBalance.ResumeLayout(false);
- this.panel2.ResumeLayout(false);
- this.tabBalance.ResumeLayout(false);
- this.tabpAllWater.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvQuanShuiFen)).EndInit();
- this.tabpWater.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvShuiFen)).EndInit();
- this.tabpAsh.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvHuiFen)).EndInit();
- this.tabpVoliate.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvHuiFaFen)).EndInit();
- this.tabpCrucible.ResumeLayout(false);
- this.panel3.ResumeLayout(false);
- this.panel7.ResumeLayout(false);
- this.groupBox2.ResumeLayout(false);
- this.panel9.ResumeLayout(false);
- this.tabShelf.ResumeLayout(false);
- this.tabPage1.ResumeLayout(false);
- this.panel10.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvCrucibleShelf)).EndInit();
- this.cmsShelf.ResumeLayout(false);
- this.panel8.ResumeLayout(false);
- this.tabPage2.ResumeLayout(false);
- this.pnlShelfHistoryBody.ResumeLayout(false);
- this.groupBox3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvShelfFind)).EndInit();
- this.pnlShelfHistoryTop.ResumeLayout(false);
- this.pnlCenterTop.ResumeLayout(false);
- this.pnlCenterTop.PerformLayout();
- this.panel4.ResumeLayout(false);
- this.panel5.ResumeLayout(false);
- this.groupBox1.ResumeLayout(false);
- this.tabCrucibleType.ResumeLayout(false);
- this.tabHeatValue.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvWeighing)).EndInit();
- this.tabSulfurValue.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvCrucibleSulfur)).EndInit();
- this.tabElementAynic.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvCrucibleElement)).EndInit();
- this.panel6.ResumeLayout(false);
- this.panel6.PerformLayout();
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- this.toolStrip1.ResumeLayout(false);
- this.toolStrip1.PerformLayout();
- this.menuStrip1.ResumeLayout(false);
- this.menuStrip1.PerformLayout();
- this.pnlBottom.ResumeLayout(false);
- this.panel11.ResumeLayout(false);
- this.panel11.PerformLayout();
- this.pnlSerialPortStatus.ResumeLayout(false);
- this.pnlSerialPortStatus.PerformLayout();
- this.ResumeLayout(false);
-
- }
-
- #endregion
-
- private System.Windows.Forms.Panel pnlAll;
- private System.Windows.Forms.Panel pnlRight;
- private System.Windows.Forms.Panel pnlLeft;
- private System.Windows.Forms.Panel pnlCenter;
- private System.Windows.Forms.Panel pnlBottom;
- private System.Windows.Forms.Panel pnlTop;
- private System.Windows.Forms.ToolStrip toolStrip1;
- private System.Windows.Forms.ToolStripButton tsbSave;
- private System.Windows.Forms.ToolStripButton tsbAllSave;
- private System.Windows.Forms.ToolStripButton tsbDelete;
- private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
- private System.Windows.Forms.ToolStripButton tsbUpload;
- private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
- private System.Windows.Forms.ToolStripButton tsbOpenPort;
- private System.Windows.Forms.MenuStrip menuStrip1;
- private System.Windows.Forms.ToolStripMenuItem 数据ToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem tsmHelper;
- private System.Windows.Forms.Panel pnlBalance;
- private System.Windows.Forms.TabControl tabBalance;
- private System.Windows.Forms.TabPage tabpAllWater;
- private System.Windows.Forms.TabPage tabpWater;
- private System.Windows.Forms.TabPage tabpAsh;
- private System.Windows.Forms.TabPage tabpVoliate;
- private System.Windows.Forms.DataGridView dgvQuanShuiFen;
- private System.IO.Ports.SerialPort sPortBalance;
- private System.Windows.Forms.ToolStripMenuItem tsmMapping;
- private System.Windows.Forms.DataGridView dgvShuiFen;
- private System.Windows.Forms.DataGridView dgvHuiFen;
- private System.Windows.Forms.DataGridView dgvHuiFaFen;
- private System.Windows.Forms.Panel panel2;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Button btnCodeOK;
- private System.Windows.Forms.TextBox txtCode;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TabPage tabpCrucible;
- private System.Windows.Forms.Panel panel3;
- private System.Windows.Forms.Panel panel4;
- private System.Windows.Forms.Panel panel7;
- private System.Windows.Forms.GroupBox groupBox2;
- private System.Windows.Forms.Panel panel5;
- private System.Windows.Forms.GroupBox groupBox1;
- private System.Windows.Forms.TabControl tabCrucibleType;
- private System.Windows.Forms.TabPage tabHeatValue;
- private System.Windows.Forms.DataGridView dgvWeighing;
- private System.Windows.Forms.TabPage tabSulfurValue;
- private System.Windows.Forms.DataGridView dgvCrucibleSulfur;
- private System.Windows.Forms.TabPage tabElementAynic;
- private System.Windows.Forms.DataGridView dgvCrucibleElement;
- private System.Windows.Forms.Panel panel6;
- private System.Windows.Forms.Button btnAddReady;
- private System.Windows.Forms.TextBox txtSampleCode;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Panel panel9;
- private System.Windows.Forms.TabControl tabShelf;
- private System.Windows.Forms.TabPage tabPage1;
- private System.Windows.Forms.Panel panel10;
- private System.Windows.Forms.Panel panel8;
- private System.Windows.Forms.Button btnCrucible_D;
- private System.Windows.Forms.Button btnCrucible_C;
- private System.Windows.Forms.Button btnCrucible_B;
- private System.Windows.Forms.Button btnCrucible_A;
- private System.Windows.Forms.TabPage tabPage2;
- private System.Windows.Forms.DataGridView dgvCrucibleShelf;
- private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
- private System.Windows.Forms.ToolStripButton tsbHistory;
- private System.Windows.Forms.Panel pnlShelfHistoryBody;
- private System.Windows.Forms.GroupBox groupBox3;
- private System.Windows.Forms.Panel pnlShelfHistoryTop;
- private System.Windows.Forms.Panel pnlCenterTop;
- private System.Windows.Forms.Button btnFind;
- private System.Windows.Forms.TextBox txtShelfFind;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.DateTimePicker dtpEndDate;
- private System.Windows.Forms.DateTimePicker dtpStartTime;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.DataGridView dgvShelfFind;
- private System.Windows.Forms.DataGridViewTextBoxColumn ID1;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
- private System.Windows.Forms.DataGridViewTextBoxColumn ID2;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn31;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn32;
- private System.Windows.Forms.Panel panel11;
- private System.Windows.Forms.Panel pnlSerialPortStatus;
- private System.Windows.Forms.Label lblPort;
- private System.Windows.Forms.Label lblCNASDb;
- private System.Windows.Forms.ContextMenuStrip cmsShelf;
- private System.Windows.Forms.ToolStripMenuItem btnDeleteShelf;
- private System.Windows.Forms.DataGridViewTextBoxColumn ID;
- private System.Windows.Forms.DataGridViewTextBoxColumn Sample_Number;
- private System.Windows.Forms.DataGridViewTextBoxColumn Instrument_Number;
- private System.Windows.Forms.DataGridViewTextBoxColumn Crucible_Number;
- private System.Windows.Forms.DataGridViewTextBoxColumn Empty_Crucible_Weight;
- private System.Windows.Forms.DataGridViewTextBoxColumn Sample_Weight;
- private System.Windows.Forms.DataGridViewTextBoxColumn AddSample_Weight;
- private System.Windows.Forms.DataGridViewTextBoxColumn Drying_Weight;
- private System.Windows.Forms.DataGridViewTextBoxColumn SecondDrying_Weight;
- private System.Windows.Forms.DataGridViewTextBoxColumn ThirdDrying_Weight;
- private System.Windows.Forms.DataGridViewTextBoxColumn Mt;
- private System.Windows.Forms.DataGridViewTextBoxColumn Auto_Code;
- private System.Windows.Forms.DataGridViewComboBoxColumn Granularity;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
- private System.Windows.Forms.DataGridViewTextBoxColumn DecrementValue1;
- private System.Windows.Forms.DataGridViewTextBoxColumn Mad;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
- private System.Windows.Forms.DataGridViewTextBoxColumn ID3;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
- private System.Windows.Forms.DataGridViewTextBoxColumn DecrementValue2;
- private System.Windows.Forms.DataGridViewTextBoxColumn AAD;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column17;
- private System.Windows.Forms.DataGridViewTextBoxColumn ID4;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn25;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn30;
- private System.Windows.Forms.DataGridViewTextBoxColumn VR;
- private System.Windows.Forms.DataGridViewTextBoxColumn MAD2;
- private System.Windows.Forms.DataGridViewTextBoxColumn VAD;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column13;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column14;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn54;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn55;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn56;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn57;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn58;
- private System.Windows.Forms.DataGridViewTextBoxColumn Column18;
- private System.Windows.Forms.DataGridViewTextBoxColumn SampleCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn Count;
- private System.Windows.Forms.ToolStripMenuItem tsmPortConfig;
- private System.Windows.Forms.DataGridViewTextBoxColumn Shelf_ID;
- private System.Windows.Forms.DataGridViewTextBoxColumn Shelf_SampleNumber;
- private System.Windows.Forms.DataGridViewTextBoxColumn Shelf_WeighingType;
- private System.Windows.Forms.DataGridViewTextBoxColumn Shelf_SampleWeight;
- private System.Windows.Forms.DataGridViewTextBoxColumn Shelf_Operator;
- private System.Windows.Forms.DataGridViewTextBoxColumn Shelf_CrucibleNumber;
- }
- }
-
|