| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022 |
- namespace Core.StlMes.Client.ZGMil.Result
- {
- partial class FrmSendCheckConsign
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table5", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BATCH_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SAMPLE_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PIPE_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DESC_POSITION");
- Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table6", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SIC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_CODE_MIN");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_NAME_MIN");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LENGTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DESC_LENGTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RATE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DESC_RATE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DESC_COUNT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("POSITION");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DESC_POSITION");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_NAME");
- Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table4", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BATCH_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("START_PIPE_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("END_PIPE_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PIPE_NUM");
- Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table7", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BATCH_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SAMPLE_NO");
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance149 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table3", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDER_NO");
- Infragistics.Win.Appearance appearance150 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance151 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance152 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance153 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance154 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance155 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance156 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance157 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance158 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance159 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance160 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand6 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRODUCT_ORDER_NO");
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance137 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance138 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance139 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance140 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance141 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance142 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance143 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance144 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance145 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance146 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance147 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance148 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand7 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LOT_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_STOVE_NO");
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.panel4 = new System.Windows.Forms.Panel();
- this.panel5 = new System.Windows.Forms.Panel();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet1 = new System.Data.DataSet();
- this.dataTable1 = new System.Data.DataTable();
- this.dataColumn1 = new System.Data.DataColumn();
- this.dataColumn2 = new System.Data.DataColumn();
- this.dataTable2 = new System.Data.DataTable();
- this.dataColumn3 = new System.Data.DataColumn();
- this.dataTable3 = new System.Data.DataTable();
- this.dataColumn4 = new System.Data.DataColumn();
- this.dataTable4 = new System.Data.DataTable();
- this.dataColumn16 = new System.Data.DataColumn();
- this.dataColumn20 = new System.Data.DataColumn();
- this.dataColumn11 = new System.Data.DataColumn();
- this.dataColumn12 = new System.Data.DataColumn();
- this.dataTable5 = new System.Data.DataTable();
- this.dataColumn5 = new System.Data.DataColumn();
- this.dataColumn6 = new System.Data.DataColumn();
- this.dataColumn7 = new System.Data.DataColumn();
- this.dataColumn8 = new System.Data.DataColumn();
- this.dataTable6 = new System.Data.DataTable();
- this.dataColumn9 = new System.Data.DataColumn();
- this.dataColumn10 = new System.Data.DataColumn();
- this.dataColumn15 = new System.Data.DataColumn();
- this.dataColumn17 = new System.Data.DataColumn();
- this.dataColumn18 = new System.Data.DataColumn();
- this.dataColumn19 = new System.Data.DataColumn();
- this.dataColumn21 = new System.Data.DataColumn();
- this.dataColumn22 = new System.Data.DataColumn();
- this.dataColumn23 = new System.Data.DataColumn();
- this.dataColumn24 = new System.Data.DataColumn();
- this.dataColumn25 = new System.Data.DataColumn();
- this.dataColumn26 = new System.Data.DataColumn();
- this.dataTable7 = new System.Data.DataTable();
- this.dataColumn13 = new System.Data.DataColumn();
- this.dataColumn14 = new System.Data.DataColumn();
- this.ultraGrid6 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraGrid7 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.panel9 = new System.Windows.Forms.Panel();
- this.btnDeleteSample = new System.Windows.Forms.Button();
- this.CHKISALL = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraSAMPLE_NO = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraBATCH_NO = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.panel7 = new System.Windows.Forms.Panel();
- this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.panel8 = new System.Windows.Forms.Panel();
- this.CHKSHOWSAMPLE_NO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.CHKSHOWBATCH_NO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.btnConfirm = new System.Windows.Forms.Button();
- this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
- this.panel6 = new System.Windows.Forms.Panel();
- this.ultraTextEditor4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
- this.txtBATCH_MAX = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.txtCONSIGN_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
- this.txtCONSIGN_TIME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtSTEEL_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.txtPRODUCT_STD = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
- this.txtSTEEL_GRADE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtHEAT_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.txtCHECK_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.panel1 = new System.Windows.Forms.Panel();
- this.panel3 = new System.Windows.Forms.Panel();
- this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.panel2 = new System.Windows.Forms.Panel();
- this.chkCHECK_NO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.chkHEAT_NO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txtQuerySTOVE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtQueryLOT_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
- this.dateEnd = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.chkCONSIGN_TIME = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.dateBegin = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultraTabPageControl1.SuspendLayout();
- this.panel4.SuspendLayout();
- this.panel5.SuspendLayout();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).BeginInit();
- this.panel9.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.CHKISALL)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraBATCH_NO)).BeginInit();
- this.panel7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
- this.ultraGroupBox3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
- this.panel8.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.CHKSHOWSAMPLE_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.CHKSHOWBATCH_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
- this.ultraGroupBox2.SuspendLayout();
- this.panel6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_NAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_TIME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPRODUCT_STD)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_GRADE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtHEAT_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCHECK_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
- this.panel1.SuspendLayout();
- this.panel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
- this.ultraTabControl1.SuspendLayout();
- this.panel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chkCHECK_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkHEAT_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtQuerySTOVE_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtQueryLOT_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dateEnd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkCONSIGN_TIME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dateBegin)).BeginInit();
- this.SuspendLayout();
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.panel4);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 23);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(1322, 438);
- //
- // panel4
- //
- this.panel4.Controls.Add(this.panel5);
- this.panel4.Controls.Add(this.ultraGroupBox1);
- this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel4.Location = new System.Drawing.Point(0, 0);
- this.panel4.Name = "panel4";
- this.panel4.Size = new System.Drawing.Size(1322, 438);
- this.panel4.TabIndex = 21;
- //
- // panel5
- //
- this.panel5.Controls.Add(this.splitContainer1);
- this.panel5.Controls.Add(this.panel7);
- this.panel5.Controls.Add(this.ultraGroupBox2);
- this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel5.Location = new System.Drawing.Point(232, 0);
- this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(1090, 438);
- this.panel5.TabIndex = 20;
- //
- // splitContainer1
- //
- this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.Location = new System.Drawing.Point(160, 106);
- this.splitContainer1.Name = "splitContainer1";
- this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this.ultraGrid5);
- this.splitContainer1.Panel1.Controls.Add(this.ultraGrid6);
- this.splitContainer1.Panel1.Controls.Add(this.ultraGrid4);
- this.splitContainer1.Panel1Collapsed = true;
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.ultraGrid7);
- this.splitContainer1.Panel2.Controls.Add(this.panel9);
- this.splitContainer1.Size = new System.Drawing.Size(930, 332);
- this.splitContainer1.SplitterDistance = 145;
- this.splitContainer1.SplitterWidth = 1;
- this.splitContainer1.TabIndex = 2;
- //
- // ultraGrid5
- //
- this.ultraGrid5.DataMember = "Table5";
- this.ultraGrid5.DataSource = this.dataSet1;
- appearance39.BackColor = System.Drawing.SystemColors.Window;
- appearance39.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid5.DisplayLayout.Appearance = appearance39;
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn3.Header.VisiblePosition = 2;
- ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn4.Header.VisiblePosition = 3;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4});
- ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid5.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGrid5.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid5.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance40.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance40.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance40.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance40.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.GroupByBox.Appearance = appearance40;
- appearance41.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid5.DisplayLayout.GroupByBox.BandLabelAppearance = appearance41;
- this.ultraGrid5.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance42.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance42.BackColor2 = System.Drawing.SystemColors.Control;
- appearance42.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance42.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid5.DisplayLayout.GroupByBox.PromptAppearance = appearance42;
- this.ultraGrid5.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid5.DisplayLayout.MaxRowScrollRegions = 1;
- appearance43.BackColor = System.Drawing.SystemColors.Window;
- appearance43.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid5.DisplayLayout.Override.ActiveCellAppearance = appearance43;
- appearance44.BackColor = System.Drawing.SystemColors.Highlight;
- appearance44.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid5.DisplayLayout.Override.ActiveRowAppearance = appearance44;
- this.ultraGrid5.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid5.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid5.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid5.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance45.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.Override.CardAreaAppearance = appearance45;
- appearance46.BorderColor = System.Drawing.Color.Silver;
- appearance46.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid5.DisplayLayout.Override.CellAppearance = appearance46;
- this.ultraGrid5.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid5.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid5.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance47.BackColor = System.Drawing.SystemColors.Control;
- appearance47.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance47.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance47.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance47.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.Override.GroupByRowAppearance = appearance47;
- appearance48.TextHAlignAsString = "Left";
- this.ultraGrid5.DisplayLayout.Override.HeaderAppearance = appearance48;
- this.ultraGrid5.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid5.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance49.BackColor = System.Drawing.SystemColors.Window;
- appearance49.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid5.DisplayLayout.Override.RowAppearance = appearance49;
- this.ultraGrid5.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance50.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid5.DisplayLayout.Override.TemplateAddRowAppearance = appearance50;
- this.ultraGrid5.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid5.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid5.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid5.Location = new System.Drawing.Point(300, 0);
- this.ultraGrid5.Name = "ultraGrid5";
- this.ultraGrid5.Size = new System.Drawing.Size(0, 145);
- this.ultraGrid5.TabIndex = 32;
- this.ultraGrid5.Text = "试样号队列";
- //
- // dataSet1
- //
- this.dataSet1.DataSetName = "NewDataSet";
- this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable1,
- this.dataTable2,
- this.dataTable3,
- this.dataTable4,
- this.dataTable5,
- this.dataTable6,
- this.dataTable7});
- //
- // dataTable1
- //
- this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn1,
- this.dataColumn2});
- this.dataTable1.TableName = "Table1";
- //
- // dataColumn1
- //
- this.dataColumn1.Caption = "生产批号";
- this.dataColumn1.ColumnName = "LOT_NO";
- //
- // dataColumn2
- //
- this.dataColumn2.Caption = "炉号";
- this.dataColumn2.ColumnName = "JUDGE_STOVE_NO";
- //
- // dataTable2
- //
- this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn3});
- this.dataTable2.TableName = "Table2";
- //
- // dataColumn3
- //
- this.dataColumn3.Caption = "生产合同号";
- this.dataColumn3.ColumnName = "PRODUCT_ORDER_NO";
- //
- // dataTable3
- //
- this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn4});
- this.dataTable3.TableName = "Table3";
- //
- // dataColumn4
- //
- this.dataColumn4.Caption = "销售合同号";
- this.dataColumn4.ColumnName = "ORDER_NO";
- //
- // dataTable4
- //
- this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn16,
- this.dataColumn20,
- this.dataColumn11,
- this.dataColumn12});
- this.dataTable4.TableName = "Table4";
- //
- // dataColumn16
- //
- this.dataColumn16.Caption = "性能批号";
- this.dataColumn16.ColumnName = "BATCH_NO";
- //
- // dataColumn20
- //
- this.dataColumn20.Caption = "起始管号";
- this.dataColumn20.ColumnName = "START_PIPE_NO";
- //
- // dataColumn11
- //
- this.dataColumn11.Caption = "结束管号";
- this.dataColumn11.ColumnName = "END_PIPE_NO";
- //
- // dataColumn12
- //
- this.dataColumn12.Caption = "有效管数";
- this.dataColumn12.ColumnName = "PIPE_NUM";
- //
- // dataTable5
- //
- this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn5,
- this.dataColumn6,
- this.dataColumn7,
- this.dataColumn8});
- this.dataTable5.TableName = "Table5";
- //
- // dataColumn5
- //
- this.dataColumn5.Caption = "性能批号";
- this.dataColumn5.ColumnName = "BATCH_NO";
- //
- // dataColumn6
- //
- this.dataColumn6.Caption = "试样号";
- this.dataColumn6.ColumnName = "SAMPLE_NO";
- //
- // dataColumn7
- //
- this.dataColumn7.Caption = "管号";
- this.dataColumn7.ColumnName = "PIPE_NO";
- //
- // dataColumn8
- //
- this.dataColumn8.Caption = "取样位置";
- this.dataColumn8.ColumnName = "DESC_POSITION";
- //
- // dataTable6
- //
- this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn9,
- this.dataColumn10,
- this.dataColumn15,
- this.dataColumn17,
- this.dataColumn18,
- this.dataColumn19,
- this.dataColumn21,
- this.dataColumn22,
- this.dataColumn23,
- this.dataColumn24,
- this.dataColumn25,
- this.dataColumn26});
- this.dataTable6.TableName = "Table6";
- //
- // dataColumn9
- //
- this.dataColumn9.Caption = "取样码索引号";
- this.dataColumn9.ColumnName = "SIC";
- //
- // dataColumn10
- //
- this.dataColumn10.Caption = "取样码";
- this.dataColumn10.ColumnName = "PHY_CODE_MIN";
- //
- // dataColumn15
- //
- this.dataColumn15.Caption = "取样码";
- this.dataColumn15.ColumnName = "PHY_NAME_MIN";
- //
- // dataColumn17
- //
- this.dataColumn17.Caption = "取样长度";
- this.dataColumn17.ColumnName = "LENGTH";
- //
- // dataColumn18
- //
- this.dataColumn18.Caption = "取样长度";
- this.dataColumn18.ColumnName = "DESC_LENGTH";
- //
- // dataColumn19
- //
- this.dataColumn19.Caption = "取样频次";
- this.dataColumn19.ColumnName = "RATE";
- //
- // dataColumn21
- //
- this.dataColumn21.Caption = "取样频次";
- this.dataColumn21.ColumnName = "DESC_RATE";
- //
- // dataColumn22
- //
- this.dataColumn22.Caption = "取样数量";
- this.dataColumn22.ColumnName = "DESC_COUNT";
- //
- // dataColumn23
- //
- this.dataColumn23.Caption = "取样位置";
- this.dataColumn23.ColumnName = "POSITION";
- //
- // dataColumn24
- //
- this.dataColumn24.Caption = "取样位置";
- this.dataColumn24.ColumnName = "DESC_POSITION";
- //
- // dataColumn25
- //
- this.dataColumn25.Caption = "标准代码";
- this.dataColumn25.ColumnName = "STD_CODE";
- //
- // dataColumn26
- //
- this.dataColumn26.Caption = "标准名称";
- this.dataColumn26.ColumnName = "STD_NAME";
- //
- // dataTable7
- //
- this.dataTable7.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn13,
- this.dataColumn14});
- this.dataTable7.TableName = "Table7";
- //
- // dataColumn13
- //
- this.dataColumn13.Caption = "性能批号";
- this.dataColumn13.ColumnName = "BATCH_NO";
- //
- // dataColumn14
- //
- this.dataColumn14.Caption = "试样号";
- this.dataColumn14.ColumnName = "SAMPLE_NO";
- //
- // ultraGrid6
- //
- this.ultraGrid6.DataMember = "Table6";
- this.ultraGrid6.DataSource = this.dataSet1;
- appearance93.BackColor = System.Drawing.SystemColors.Window;
- appearance93.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid6.DisplayLayout.Appearance = appearance93;
- ultraGridColumn5.Header.VisiblePosition = 0;
- ultraGridColumn5.Hidden = true;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn6.Header.VisiblePosition = 1;
- ultraGridColumn6.Hidden = true;
- ultraGridColumn6.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn7.Header.VisiblePosition = 2;
- ultraGridColumn7.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn8.Header.VisiblePosition = 3;
- ultraGridColumn8.Hidden = true;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn9.Header.VisiblePosition = 4;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn10.Header.VisiblePosition = 5;
- ultraGridColumn10.Hidden = true;
- ultraGridColumn10.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn11.Header.VisiblePosition = 6;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn12.Header.VisiblePosition = 7;
- ultraGridColumn12.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn13.Header.VisiblePosition = 8;
- ultraGridColumn13.Hidden = true;
- ultraGridColumn13.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn14.Header.VisiblePosition = 9;
- ultraGridColumn14.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn15.Header.VisiblePosition = 10;
- ultraGridColumn15.Hidden = true;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn16.Header.VisiblePosition = 11;
- ultraGridColumn16.Hidden = true;
- ultraGridColumn16.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8,
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16});
- ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid6.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGrid6.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid6.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance94.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance94.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance94.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance94.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid6.DisplayLayout.GroupByBox.Appearance = appearance94;
- appearance95.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid6.DisplayLayout.GroupByBox.BandLabelAppearance = appearance95;
- this.ultraGrid6.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance97.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance97.BackColor2 = System.Drawing.SystemColors.Control;
- appearance97.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance97.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid6.DisplayLayout.GroupByBox.PromptAppearance = appearance97;
- this.ultraGrid6.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid6.DisplayLayout.MaxRowScrollRegions = 1;
- appearance98.BackColor = System.Drawing.SystemColors.Window;
- appearance98.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid6.DisplayLayout.Override.ActiveCellAppearance = appearance98;
- appearance99.BackColor = System.Drawing.SystemColors.Highlight;
- appearance99.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid6.DisplayLayout.Override.ActiveRowAppearance = appearance99;
- this.ultraGrid6.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid6.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid6.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid6.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance100.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid6.DisplayLayout.Override.CardAreaAppearance = appearance100;
- appearance101.BorderColor = System.Drawing.Color.Silver;
- appearance101.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid6.DisplayLayout.Override.CellAppearance = appearance101;
- this.ultraGrid6.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid6.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid6.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance102.BackColor = System.Drawing.SystemColors.Control;
- appearance102.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance102.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance102.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance102.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid6.DisplayLayout.Override.GroupByRowAppearance = appearance102;
- appearance104.TextHAlignAsString = "Left";
- this.ultraGrid6.DisplayLayout.Override.HeaderAppearance = appearance104;
- this.ultraGrid6.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid6.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance105.BackColor = System.Drawing.SystemColors.Window;
- appearance105.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid6.DisplayLayout.Override.RowAppearance = appearance105;
- this.ultraGrid6.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance108.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid6.DisplayLayout.Override.TemplateAddRowAppearance = appearance108;
- this.ultraGrid6.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid6.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid6.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid6.Dock = System.Windows.Forms.DockStyle.Right;
- this.ultraGrid6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid6.Location = new System.Drawing.Point(-230, 0);
- this.ultraGrid6.Name = "ultraGrid6";
- this.ultraGrid6.Size = new System.Drawing.Size(380, 145);
- this.ultraGrid6.TabIndex = 31;
- this.ultraGrid6.Text = "取样要求";
- //
- // ultraGrid4
- //
- this.ultraGrid4.DataMember = "Table4";
- this.ultraGrid4.DataSource = this.dataSet1;
- appearance51.BackColor = System.Drawing.SystemColors.Window;
- appearance51.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid4.DisplayLayout.Appearance = appearance51;
- ultraGridColumn17.Header.VisiblePosition = 0;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn18.Header.VisiblePosition = 1;
- ultraGridColumn18.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn19.Header.VisiblePosition = 2;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn20.Header.VisiblePosition = 3;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20});
- ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.ultraGrid4.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance52.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance52.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance52.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance52.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.GroupByBox.Appearance = appearance52;
- appearance53.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid4.DisplayLayout.GroupByBox.BandLabelAppearance = appearance53;
- this.ultraGrid4.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance54.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance54.BackColor2 = System.Drawing.SystemColors.Control;
- appearance54.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance54.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid4.DisplayLayout.GroupByBox.PromptAppearance = appearance54;
- this.ultraGrid4.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid4.DisplayLayout.MaxRowScrollRegions = 1;
- appearance55.BackColor = System.Drawing.SystemColors.Window;
- appearance55.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid4.DisplayLayout.Override.ActiveCellAppearance = appearance55;
- appearance56.BackColor = System.Drawing.SystemColors.Highlight;
- appearance56.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid4.DisplayLayout.Override.ActiveRowAppearance = appearance56;
- this.ultraGrid4.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid4.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid4.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid4.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance57.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance57;
- appearance58.BorderColor = System.Drawing.Color.Silver;
- appearance58.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid4.DisplayLayout.Override.CellAppearance = appearance58;
- this.ultraGrid4.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid4.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid4.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance59.BackColor = System.Drawing.SystemColors.Control;
- appearance59.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance59.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance59.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance59.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.Override.GroupByRowAppearance = appearance59;
- appearance60.TextHAlignAsString = "Left";
- this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance60;
- this.ultraGrid4.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid4.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance61.BackColor = System.Drawing.SystemColors.Window;
- appearance61.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance61;
- this.ultraGrid4.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid4.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- appearance62.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid4.DisplayLayout.Override.TemplateAddRowAppearance = appearance62;
- this.ultraGrid4.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid4.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid4.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Left;
- this.ultraGrid4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid4.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid4.Name = "ultraGrid4";
- this.ultraGrid4.Size = new System.Drawing.Size(300, 145);
- this.ultraGrid4.TabIndex = 29;
- this.ultraGrid4.Text = "性能批号队列";
- this.ultraGrid4.AfterRowActivate += new System.EventHandler(this.ultraGrid4_AfterRowActivate);
- //
- // ultraGrid7
- //
- this.ultraGrid7.DataMember = "Table7";
- this.ultraGrid7.DataSource = this.dataSet1;
- appearance63.BackColor = System.Drawing.SystemColors.Window;
- appearance63.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid7.DisplayLayout.Appearance = appearance63;
- ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn21.Header.VisiblePosition = 0;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn22.Header.VisiblePosition = 1;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand4.Columns.AddRange(new object[] {
- ultraGridColumn21,
- ultraGridColumn22});
- appearance1.TextHAlignAsString = "Center";
- ultraGridBand4.Override.RowAppearance = appearance1;
- ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid7.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
- this.ultraGrid7.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid7.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance70.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance70.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance70.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance70.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid7.DisplayLayout.GroupByBox.Appearance = appearance70;
- appearance71.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid7.DisplayLayout.GroupByBox.BandLabelAppearance = appearance71;
- this.ultraGrid7.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance72.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance72.BackColor2 = System.Drawing.SystemColors.Control;
- appearance72.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance72.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid7.DisplayLayout.GroupByBox.PromptAppearance = appearance72;
- this.ultraGrid7.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid7.DisplayLayout.MaxRowScrollRegions = 1;
- appearance73.BackColor = System.Drawing.SystemColors.Window;
- appearance73.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid7.DisplayLayout.Override.ActiveCellAppearance = appearance73;
- appearance74.BackColor = System.Drawing.SystemColors.Highlight;
- appearance74.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid7.DisplayLayout.Override.ActiveRowAppearance = appearance74;
- this.ultraGrid7.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid7.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid7.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance75.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid7.DisplayLayout.Override.CardAreaAppearance = appearance75;
- appearance76.BorderColor = System.Drawing.Color.Silver;
- appearance76.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid7.DisplayLayout.Override.CellAppearance = appearance76;
- this.ultraGrid7.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid7.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid7.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance77.BackColor = System.Drawing.SystemColors.Control;
- appearance77.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance77.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance77.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance77.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid7.DisplayLayout.Override.GroupByRowAppearance = appearance77;
- appearance78.TextHAlignAsString = "Left";
- this.ultraGrid7.DisplayLayout.Override.HeaderAppearance = appearance78;
- this.ultraGrid7.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid7.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance79.BackColor = System.Drawing.SystemColors.Window;
- appearance79.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid7.DisplayLayout.Override.RowAppearance = appearance79;
- this.ultraGrid7.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance80.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid7.DisplayLayout.Override.TemplateAddRowAppearance = appearance80;
- this.ultraGrid7.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid7.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid7.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid7.Location = new System.Drawing.Point(0, 40);
- this.ultraGrid7.Name = "ultraGrid7";
- this.ultraGrid7.Size = new System.Drawing.Size(930, 292);
- this.ultraGrid7.TabIndex = 31;
- this.ultraGrid7.Text = "委托要求";
- //
- // panel9
- //
- this.panel9.Controls.Add(this.btnDeleteSample);
- this.panel9.Controls.Add(this.CHKISALL);
- this.panel9.Controls.Add(this.ultraSAMPLE_NO);
- this.panel9.Controls.Add(this.ultraLabel16);
- this.panel9.Controls.Add(this.ultraLabel19);
- this.panel9.Controls.Add(this.ultraBATCH_NO);
- this.panel9.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel9.Location = new System.Drawing.Point(0, 0);
- this.panel9.Name = "panel9";
- this.panel9.Size = new System.Drawing.Size(930, 40);
- this.panel9.TabIndex = 30;
- //
- // btnDeleteSample
- //
- this.btnDeleteSample.Location = new System.Drawing.Point(340, 9);
- this.btnDeleteSample.Name = "btnDeleteSample";
- this.btnDeleteSample.Size = new System.Drawing.Size(75, 23);
- this.btnDeleteSample.TabIndex = 225;
- this.btnDeleteSample.Text = "-试样号";
- this.btnDeleteSample.UseVisualStyleBackColor = true;
- this.btnDeleteSample.Click += new System.EventHandler(this.btnDeleteSample_Click);
- //
- // CHKISALL
- //
- this.CHKISALL.AutoSize = true;
- this.CHKISALL.Checked = true;
- this.CHKISALL.CheckState = System.Windows.Forms.CheckState.Checked;
- this.CHKISALL.Location = new System.Drawing.Point(266, 12);
- this.CHKISALL.Margin = new System.Windows.Forms.Padding(2);
- this.CHKISALL.Name = "CHKISALL";
- this.CHKISALL.Size = new System.Drawing.Size(71, 19);
- this.CHKISALL.TabIndex = 224;
- this.CHKISALL.Text = "增加全部";
- this.CHKISALL.CheckedChanged += new System.EventHandler(this.CHKISALL_CheckedChanged);
- //
- // ultraSAMPLE_NO
- //
- this.ultraSAMPLE_NO.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.ultraSAMPLE_NO.Location = new System.Drawing.Point(180, 11);
- this.ultraSAMPLE_NO.Name = "ultraSAMPLE_NO";
- this.ultraSAMPLE_NO.Size = new System.Drawing.Size(82, 21);
- this.ultraSAMPLE_NO.TabIndex = 219;
- this.ultraSAMPLE_NO.TextChanged += new System.EventHandler(this.ultraSAMPLE_NO_TextChanged);
- //
- // ultraLabel16
- //
- appearance15.TextHAlignAsString = "Right";
- appearance15.TextVAlignAsString = "Middle";
- this.ultraLabel16.Appearance = appearance15;
- this.ultraLabel16.AutoSize = true;
- this.ultraLabel16.Location = new System.Drawing.Point(134, 14);
- this.ultraLabel16.Name = "ultraLabel16";
- this.ultraLabel16.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel16.TabIndex = 218;
- this.ultraLabel16.Text = "试样号";
- //
- // ultraLabel19
- //
- appearance65.TextHAlignAsString = "Right";
- appearance65.TextVAlignAsString = "Middle";
- this.ultraLabel19.Appearance = appearance65;
- this.ultraLabel19.AutoSize = true;
- this.ultraLabel19.Location = new System.Drawing.Point(12, 14);
- this.ultraLabel19.Name = "ultraLabel19";
- this.ultraLabel19.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel19.TabIndex = 217;
- this.ultraLabel19.Text = "性能批号";
- //
- // ultraBATCH_NO
- //
- this.ultraBATCH_NO.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.ultraBATCH_NO.Location = new System.Drawing.Point(70, 11);
- this.ultraBATCH_NO.Name = "ultraBATCH_NO";
- this.ultraBATCH_NO.Size = new System.Drawing.Size(60, 21);
- this.ultraBATCH_NO.TabIndex = 216;
- this.ultraBATCH_NO.TextChanged += new System.EventHandler(this.ultraBATCH_NO_TextChanged);
- //
- // panel7
- //
- this.panel7.Controls.Add(this.ultraGroupBox3);
- this.panel7.Controls.Add(this.panel8);
- this.panel7.Dock = System.Windows.Forms.DockStyle.Left;
- this.panel7.Location = new System.Drawing.Point(0, 106);
- this.panel7.Name = "panel7";
- this.panel7.Size = new System.Drawing.Size(160, 332);
- this.panel7.TabIndex = 1;
- //
- // ultraGroupBox3
- //
- this.ultraGroupBox3.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox3.Controls.Add(this.ultraGrid3);
- this.ultraGroupBox3.Controls.Add(this.ultraGrid2);
- this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox3.Location = new System.Drawing.Point(0, 80);
- this.ultraGroupBox3.Name = "ultraGroupBox3";
- this.ultraGroupBox3.Size = new System.Drawing.Size(160, 252);
- this.ultraGroupBox3.TabIndex = 157;
- this.ultraGroupBox3.Text = "生产合同、销售合同队列";
- //
- // ultraGrid3
- //
- this.ultraGrid3.DataMember = "Table3";
- this.ultraGrid3.DataSource = this.dataSet1;
- appearance149.BackColor = System.Drawing.SystemColors.Window;
- appearance149.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid3.DisplayLayout.Appearance = appearance149;
- ultraGridColumn23.Header.VisiblePosition = 0;
- ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(130, 0);
- ultraGridBand5.Columns.AddRange(new object[] {
- ultraGridColumn23});
- ultraGridBand5.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
- this.ultraGrid3.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance150.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance150.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance150.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance150.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.GroupByBox.Appearance = appearance150;
- appearance151.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid3.DisplayLayout.GroupByBox.BandLabelAppearance = appearance151;
- this.ultraGrid3.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance152.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance152.BackColor2 = System.Drawing.SystemColors.Control;
- appearance152.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance152.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid3.DisplayLayout.GroupByBox.PromptAppearance = appearance152;
- this.ultraGrid3.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid3.DisplayLayout.MaxRowScrollRegions = 1;
- appearance153.BackColor = System.Drawing.SystemColors.Window;
- appearance153.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid3.DisplayLayout.Override.ActiveCellAppearance = appearance153;
- appearance154.BackColor = System.Drawing.SystemColors.Highlight;
- appearance154.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance154;
- this.ultraGrid3.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid3.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid3.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid3.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance155.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance155;
- appearance156.BorderColor = System.Drawing.Color.Silver;
- appearance156.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance156;
- this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid3.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid3.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance157.BackColor = System.Drawing.SystemColors.Control;
- appearance157.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance157.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance157.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance157.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.Override.GroupByRowAppearance = appearance157;
- appearance158.TextHAlignAsString = "Left";
- this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance158;
- this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid3.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance159.BackColor = System.Drawing.SystemColors.Window;
- appearance159.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance159;
- this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance160.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid3.DisplayLayout.Override.TemplateAddRowAppearance = appearance160;
- this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid3.Location = new System.Drawing.Point(1, 149);
- this.ultraGrid3.Name = "ultraGrid3";
- this.ultraGrid3.Size = new System.Drawing.Size(158, 102);
- this.ultraGrid3.TabIndex = 28;
- this.ultraGrid3.Text = "生产合同队列";
- //
- // ultraGrid2
- //
- this.ultraGrid2.DataMember = "Table2";
- this.ultraGrid2.DataSource = this.dataSet1;
- appearance14.BackColor = System.Drawing.SystemColors.Window;
- appearance14.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid2.DisplayLayout.Appearance = appearance14;
- ultraGridColumn24.Header.VisiblePosition = 0;
- ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(130, 0);
- ultraGridBand6.Columns.AddRange(new object[] {
- ultraGridColumn24});
- ultraGridBand6.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand6);
- this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance16.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance16.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance16.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance16.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance16;
- appearance17.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance17;
- this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance18.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance18.BackColor2 = System.Drawing.SystemColors.Control;
- appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance18.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance18;
- this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
- appearance19.BackColor = System.Drawing.SystemColors.Window;
- appearance19.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance19;
- appearance20.BackColor = System.Drawing.SystemColors.Highlight;
- appearance20.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance20;
- this.ultraGrid2.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid2.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance21.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance21;
- appearance23.BorderColor = System.Drawing.Color.Silver;
- appearance23.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance23;
- this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid2.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance24.BackColor = System.Drawing.SystemColors.Control;
- appearance24.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance24.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance24.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance24.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance24;
- appearance25.TextHAlignAsString = "Left";
- this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance25;
- this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance26.BackColor = System.Drawing.SystemColors.Window;
- appearance26.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance26;
- this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance27.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance27;
- this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid2.Location = new System.Drawing.Point(1, 18);
- this.ultraGrid2.Name = "ultraGrid2";
- this.ultraGrid2.Size = new System.Drawing.Size(158, 131);
- this.ultraGrid2.TabIndex = 27;
- this.ultraGrid2.Text = "生产合同队列";
- this.ultraGrid2.AfterRowActivate += new System.EventHandler(this.ultraGrid2_AfterRowActivate);
- //
- // panel8
- //
- this.panel8.Controls.Add(this.CHKSHOWSAMPLE_NO);
- this.panel8.Controls.Add(this.CHKSHOWBATCH_NO);
- this.panel8.Controls.Add(this.btnConfirm);
- this.panel8.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel8.Location = new System.Drawing.Point(0, 0);
- this.panel8.Name = "panel8";
- this.panel8.Size = new System.Drawing.Size(160, 80);
- this.panel8.TabIndex = 156;
- //
- // CHKSHOWSAMPLE_NO
- //
- this.CHKSHOWSAMPLE_NO.AutoSize = true;
- this.CHKSHOWSAMPLE_NO.Location = new System.Drawing.Point(26, 29);
- this.CHKSHOWSAMPLE_NO.Margin = new System.Windows.Forms.Padding(2);
- this.CHKSHOWSAMPLE_NO.Name = "CHKSHOWSAMPLE_NO";
- this.CHKSHOWSAMPLE_NO.Size = new System.Drawing.Size(108, 19);
- this.CHKSHOWSAMPLE_NO.TabIndex = 226;
- this.CHKSHOWSAMPLE_NO.Text = "显示全部试样号";
- this.CHKSHOWSAMPLE_NO.CheckedChanged += new System.EventHandler(this.CHKSHOWSAMPLE_NO_CheckedChanged);
- //
- // CHKSHOWBATCH_NO
- //
- this.CHKSHOWBATCH_NO.AutoSize = true;
- this.CHKSHOWBATCH_NO.Location = new System.Drawing.Point(27, 6);
- this.CHKSHOWBATCH_NO.Margin = new System.Windows.Forms.Padding(2);
- this.CHKSHOWBATCH_NO.Name = "CHKSHOWBATCH_NO";
- this.CHKSHOWBATCH_NO.Size = new System.Drawing.Size(108, 19);
- this.CHKSHOWBATCH_NO.TabIndex = 225;
- this.CHKSHOWBATCH_NO.Text = "显示全部性能批";
- this.CHKSHOWBATCH_NO.CheckedChanged += new System.EventHandler(this.CHKSHOWBATCH_NO_CheckedChanged);
- //
- // btnConfirm
- //
- this.btnConfirm.AutoSize = true;
- this.btnConfirm.Location = new System.Drawing.Point(21, 51);
- this.btnConfirm.Name = "btnConfirm";
- this.btnConfirm.Size = new System.Drawing.Size(115, 24);
- this.btnConfirm.TabIndex = 219;
- this.btnConfirm.Text = "查看取样要求明细";
- this.btnConfirm.UseVisualStyleBackColor = true;
- this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
- //
- // ultraGroupBox2
- //
- this.ultraGroupBox2.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox2.Controls.Add(this.panel6);
- this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox2.Name = "ultraGroupBox2";
- this.ultraGroupBox2.Size = new System.Drawing.Size(1090, 106);
- this.ultraGroupBox2.TabIndex = 0;
- this.ultraGroupBox2.Text = "基本信息";
- //
- // panel6
- //
- this.panel6.Controls.Add(this.ultraTextEditor4);
- this.panel6.Controls.Add(this.ultraTextEditor1);
- this.panel6.Controls.Add(this.ultraTextEditor2);
- this.panel6.Controls.Add(this.ultraLabel13);
- this.panel6.Controls.Add(this.ultraTextEditor3);
- this.panel6.Controls.Add(this.ultraLabel14);
- this.panel6.Controls.Add(this.ultraLabel17);
- this.panel6.Controls.Add(this.ultraLabel7);
- this.panel6.Controls.Add(this.txtBATCH_MAX);
- this.panel6.Controls.Add(this.ultraLabel2);
- this.panel6.Controls.Add(this.txtCONSIGN_NAME);
- this.panel6.Controls.Add(this.ultraLabel10);
- this.panel6.Controls.Add(this.txtCONSIGN_TIME);
- this.panel6.Controls.Add(this.txtSTEEL_NO);
- this.panel6.Controls.Add(this.ultraLabel11);
- this.panel6.Controls.Add(this.ultraLabel3);
- this.panel6.Controls.Add(this.txtPRODUCT_STD);
- this.panel6.Controls.Add(this.ultraLabel6);
- this.panel6.Controls.Add(this.txtSTEEL_GRADE);
- this.panel6.Controls.Add(this.txtHEAT_NO);
- this.panel6.Controls.Add(this.ultraLabel5);
- this.panel6.Controls.Add(this.ultraLabel4);
- this.panel6.Controls.Add(this.txtCHECK_NO);
- this.panel6.Controls.Add(this.ultraLabel1);
- this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel6.Location = new System.Drawing.Point(1, 18);
- this.panel6.Name = "panel6";
- this.panel6.Size = new System.Drawing.Size(1088, 87);
- this.panel6.TabIndex = 24;
- //
- // ultraTextEditor4
- //
- this.ultraTextEditor4.Location = new System.Drawing.Point(648, 59);
- this.ultraTextEditor4.MaxLength = 200;
- this.ultraTextEditor4.Name = "ultraTextEditor4";
- this.ultraTextEditor4.Size = new System.Drawing.Size(100, 21);
- this.ultraTextEditor4.TabIndex = 154;
- //
- // ultraTextEditor1
- //
- this.ultraTextEditor1.Location = new System.Drawing.Point(242, 34);
- this.ultraTextEditor1.MaxLength = 200;
- this.ultraTextEditor1.Name = "ultraTextEditor1";
- this.ultraTextEditor1.Size = new System.Drawing.Size(141, 21);
- this.ultraTextEditor1.TabIndex = 153;
- //
- // ultraTextEditor2
- //
- this.ultraTextEditor2.Location = new System.Drawing.Point(242, 59);
- this.ultraTextEditor2.Name = "ultraTextEditor2";
- this.ultraTextEditor2.Size = new System.Drawing.Size(141, 21);
- this.ultraTextEditor2.TabIndex = 152;
- //
- // ultraLabel13
- //
- appearance137.TextHAlignAsString = "Right";
- appearance137.TextVAlignAsString = "Middle";
- this.ultraLabel13.Appearance = appearance137;
- this.ultraLabel13.AutoSize = true;
- this.ultraLabel13.Location = new System.Drawing.Point(184, 62);
- this.ultraLabel13.Name = "ultraLabel13";
- this.ultraLabel13.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel13.TabIndex = 151;
- this.ultraLabel13.Text = "标准类别";
- //
- // ultraTextEditor3
- //
- this.ultraTextEditor3.Location = new System.Drawing.Point(241, 9);
- this.ultraTextEditor3.MaxLength = 200;
- this.ultraTextEditor3.Name = "ultraTextEditor3";
- this.ultraTextEditor3.Size = new System.Drawing.Size(142, 21);
- this.ultraTextEditor3.TabIndex = 150;
- //
- // ultraLabel14
- //
- appearance138.TextHAlignAsString = "Right";
- appearance138.TextVAlignAsString = "Middle";
- this.ultraLabel14.Appearance = appearance138;
- this.ultraLabel14.AutoSize = true;
- this.ultraLabel14.Location = new System.Drawing.Point(209, 37);
- this.ultraLabel14.Name = "ultraLabel14";
- this.ultraLabel14.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel14.TabIndex = 149;
- this.ultraLabel14.Text = "标准";
- //
- // ultraLabel17
- //
- appearance139.TextHAlignAsString = "Right";
- appearance139.TextVAlignAsString = "Middle";
- this.ultraLabel17.Appearance = appearance139;
- this.ultraLabel17.AutoSize = true;
- this.ultraLabel17.Location = new System.Drawing.Point(208, 12);
- this.ultraLabel17.Name = "ultraLabel17";
- this.ultraLabel17.RightToLeft = System.Windows.Forms.RightToLeft.No;
- this.ultraLabel17.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel17.TabIndex = 148;
- this.ultraLabel17.Text = "品名";
- //
- // ultraLabel7
- //
- appearance140.TextHAlignAsString = "Right";
- appearance140.TextVAlignAsString = "Middle";
- this.ultraLabel7.Appearance = appearance140;
- this.ultraLabel7.AutoSize = true;
- this.ultraLabel7.Location = new System.Drawing.Point(590, 62);
- this.ultraLabel7.Name = "ultraLabel7";
- this.ultraLabel7.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel7.TabIndex = 146;
- this.ultraLabel7.Text = "长度范围";
- //
- // txtBATCH_MAX
- //
- this.txtBATCH_MAX.Location = new System.Drawing.Point(70, 59);
- this.txtBATCH_MAX.MaxLength = 100;
- this.txtBATCH_MAX.Name = "txtBATCH_MAX";
- this.txtBATCH_MAX.Size = new System.Drawing.Size(110, 21);
- this.txtBATCH_MAX.TabIndex = 144;
- //
- // ultraLabel2
- //
- appearance141.TextHAlignAsString = "Right";
- appearance141.TextVAlignAsString = "Middle";
- this.ultraLabel2.Appearance = appearance141;
- this.ultraLabel2.AutoSize = true;
- this.ultraLabel2.Location = new System.Drawing.Point(12, 62);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel2.TabIndex = 145;
- this.ultraLabel2.Text = "分批上限";
- //
- // txtCONSIGN_NAME
- //
- this.txtCONSIGN_NAME.Location = new System.Drawing.Point(648, 9);
- this.txtCONSIGN_NAME.MaxLength = 200;
- this.txtCONSIGN_NAME.Name = "txtCONSIGN_NAME";
- this.txtCONSIGN_NAME.Size = new System.Drawing.Size(100, 21);
- this.txtCONSIGN_NAME.TabIndex = 143;
- //
- // ultraLabel10
- //
- appearance142.TextHAlignAsString = "Right";
- appearance142.TextVAlignAsString = "Middle";
- this.ultraLabel10.Appearance = appearance142;
- this.ultraLabel10.AutoSize = true;
- this.ultraLabel10.Location = new System.Drawing.Point(615, 12);
- this.ultraLabel10.Name = "ultraLabel10";
- this.ultraLabel10.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel10.TabIndex = 142;
- this.ultraLabel10.Text = "扣型";
- //
- // txtCONSIGN_TIME
- //
- this.txtCONSIGN_TIME.Location = new System.Drawing.Point(648, 34);
- this.txtCONSIGN_TIME.MaxLength = 200;
- this.txtCONSIGN_TIME.Name = "txtCONSIGN_TIME";
- this.txtCONSIGN_TIME.Size = new System.Drawing.Size(100, 21);
- this.txtCONSIGN_TIME.TabIndex = 137;
- //
- // txtSTEEL_NO
- //
- this.txtSTEEL_NO.Location = new System.Drawing.Point(445, 34);
- this.txtSTEEL_NO.MaxLength = 200;
- this.txtSTEEL_NO.Name = "txtSTEEL_NO";
- this.txtSTEEL_NO.Size = new System.Drawing.Size(141, 21);
- this.txtSTEEL_NO.TabIndex = 131;
- //
- // ultraLabel11
- //
- appearance143.TextHAlignAsString = "Right";
- appearance143.TextVAlignAsString = "Middle";
- this.ultraLabel11.Appearance = appearance143;
- this.ultraLabel11.AutoSize = true;
- this.ultraLabel11.Location = new System.Drawing.Point(590, 37);
- this.ultraLabel11.Name = "ultraLabel11";
- this.ultraLabel11.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel11.TabIndex = 130;
- this.ultraLabel11.Text = "目标长度";
- //
- // ultraLabel3
- //
- appearance144.TextHAlignAsString = "Right";
- appearance144.TextVAlignAsString = "Middle";
- this.ultraLabel3.Appearance = appearance144;
- this.ultraLabel3.AutoSize = true;
- this.ultraLabel3.Location = new System.Drawing.Point(37, 37);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel3.TabIndex = 128;
- this.ultraLabel3.Text = "炉号";
- //
- // txtPRODUCT_STD
- //
- this.txtPRODUCT_STD.Location = new System.Drawing.Point(445, 59);
- this.txtPRODUCT_STD.Name = "txtPRODUCT_STD";
- this.txtPRODUCT_STD.Size = new System.Drawing.Size(141, 21);
- this.txtPRODUCT_STD.TabIndex = 127;
- //
- // ultraLabel6
- //
- appearance145.TextHAlignAsString = "Right";
- appearance145.TextVAlignAsString = "Middle";
- this.ultraLabel6.Appearance = appearance145;
- this.ultraLabel6.AutoSize = true;
- this.ultraLabel6.Location = new System.Drawing.Point(412, 62);
- this.ultraLabel6.Name = "ultraLabel6";
- this.ultraLabel6.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel6.TabIndex = 126;
- this.ultraLabel6.Text = "规格";
- //
- // txtSTEEL_GRADE
- //
- this.txtSTEEL_GRADE.Location = new System.Drawing.Point(444, 9);
- this.txtSTEEL_GRADE.MaxLength = 200;
- this.txtSTEEL_GRADE.Name = "txtSTEEL_GRADE";
- this.txtSTEEL_GRADE.Size = new System.Drawing.Size(142, 21);
- this.txtSTEEL_GRADE.TabIndex = 125;
- //
- // txtHEAT_NO
- //
- this.txtHEAT_NO.Location = new System.Drawing.Point(70, 34);
- this.txtHEAT_NO.MaxLength = 200;
- this.txtHEAT_NO.Name = "txtHEAT_NO";
- this.txtHEAT_NO.Size = new System.Drawing.Size(109, 21);
- this.txtHEAT_NO.TabIndex = 123;
- //
- // ultraLabel5
- //
- appearance146.TextHAlignAsString = "Right";
- appearance146.TextVAlignAsString = "Middle";
- this.ultraLabel5.Appearance = appearance146;
- this.ultraLabel5.AutoSize = true;
- this.ultraLabel5.Location = new System.Drawing.Point(412, 37);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel5.TabIndex = 122;
- this.ultraLabel5.Text = "钢号";
- //
- // ultraLabel4
- //
- appearance147.TextHAlignAsString = "Right";
- appearance147.TextVAlignAsString = "Middle";
- this.ultraLabel4.Appearance = appearance147;
- this.ultraLabel4.AutoSize = true;
- this.ultraLabel4.Location = new System.Drawing.Point(411, 12);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.RightToLeft = System.Windows.Forms.RightToLeft.No;
- this.ultraLabel4.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel4.TabIndex = 120;
- this.ultraLabel4.Text = "钢级";
- //
- // txtCHECK_NO
- //
- this.txtCHECK_NO.Location = new System.Drawing.Point(70, 9);
- this.txtCHECK_NO.MaxLength = 100;
- this.txtCHECK_NO.Name = "txtCHECK_NO";
- this.txtCHECK_NO.Size = new System.Drawing.Size(110, 21);
- this.txtCHECK_NO.TabIndex = 118;
- //
- // ultraLabel1
- //
- appearance148.TextHAlignAsString = "Right";
- appearance148.TextVAlignAsString = "Middle";
- this.ultraLabel1.Appearance = appearance148;
- this.ultraLabel1.AutoSize = true;
- this.ultraLabel1.Location = new System.Drawing.Point(12, 12);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel1.TabIndex = 119;
- this.ultraLabel1.Text = "生产批号";
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(232, 438);
- this.ultraGroupBox1.TabIndex = 19;
- this.ultraGroupBox1.Text = "生产批号、炉号队列";
- //
- // ultraGrid1
- //
- this.ultraGrid1.DataMember = "Table1";
- this.ultraGrid1.DataSource = this.dataSet1;
- appearance22.BackColor = System.Drawing.SystemColors.Window;
- appearance22.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid1.DisplayLayout.Appearance = appearance22;
- ultraGridColumn25.Header.VisiblePosition = 0;
- ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
- ultraGridColumn26.Header.VisiblePosition = 1;
- ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
- ultraGridBand7.Columns.AddRange(new object[] {
- ultraGridColumn25,
- ultraGridColumn26});
- ultraGridBand7.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand7);
- this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance28.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance28.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance28.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance28.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance28;
- appearance29.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance29;
- this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance30.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance30.BackColor2 = System.Drawing.SystemColors.Control;
- appearance30.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance30.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance30;
- this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
- appearance31.BackColor = System.Drawing.SystemColors.Window;
- appearance31.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance31;
- appearance32.BackColor = System.Drawing.SystemColors.Highlight;
- appearance32.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance32;
- this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance33.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance33;
- appearance34.BorderColor = System.Drawing.Color.Silver;
- appearance34.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance34;
- this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid1.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance35.BackColor = System.Drawing.SystemColors.Control;
- appearance35.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance35.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance35.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance35.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance35;
- appearance36.TextHAlignAsString = "Left";
- this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance36;
- this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance37.BackColor = System.Drawing.SystemColors.Window;
- appearance37.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance37;
- this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance38.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance38;
- this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid1.Location = new System.Drawing.Point(1, 18);
- this.ultraGrid1.Name = "ultraGrid1";
- this.ultraGrid1.Size = new System.Drawing.Size(230, 419);
- this.ultraGrid1.TabIndex = 27;
- this.ultraGrid1.Text = "生产批号、炉号队列";
- this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
- //
- // ultraTabPageControl2
- //
- this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl2.Name = "ultraTabPageControl2";
- this.ultraTabPageControl2.Size = new System.Drawing.Size(1322, 438);
- //
- // ultraTabPageControl3
- //
- this.ultraTabPageControl3.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl3.Name = "ultraTabPageControl3";
- this.ultraTabPageControl3.Size = new System.Drawing.Size(1322, 438);
- //
- // panel1
- //
- this.panel1.Controls.Add(this.panel3);
- this.panel1.Controls.Add(this.panel2);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1328, 506);
- this.panel1.TabIndex = 0;
- //
- // panel3
- //
- this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel3.Controls.Add(this.ultraTabControl1);
- this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel3.Location = new System.Drawing.Point(0, 40);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(1328, 466);
- this.panel3.TabIndex = 18;
- //
- // ultraTabControl1
- //
- this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
- this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl1.Name = "ultraTabControl1";
- this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.ultraTabControl1.Size = new System.Drawing.Size(1326, 464);
- this.ultraTabControl1.TabIndex = 19;
- ultraTab1.TabPage = this.ultraTabPageControl1;
- ultraTab1.Text = "未委托";
- ultraTab2.TabPage = this.ultraTabPageControl2;
- ultraTab2.Text = "已委托";
- ultraTab3.TabPage = this.ultraTabPageControl3;
- ultraTab3.Text = "已下发";
- this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab1,
- ultraTab2,
- ultraTab3});
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1322, 438);
- //
- // panel2
- //
- this.panel2.Controls.Add(this.chkCHECK_NO);
- this.panel2.Controls.Add(this.chkHEAT_NO);
- this.panel2.Controls.Add(this.txtQuerySTOVE_NO);
- this.panel2.Controls.Add(this.txtQueryLOT_NO);
- this.panel2.Controls.Add(this.ultraLabel8);
- this.panel2.Controls.Add(this.dateEnd);
- this.panel2.Controls.Add(this.chkCONSIGN_TIME);
- this.panel2.Controls.Add(this.dateBegin);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel2.Location = new System.Drawing.Point(0, 0);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(1328, 40);
- this.panel2.TabIndex = 17;
- //
- // chkCHECK_NO
- //
- this.chkCHECK_NO.AutoSize = true;
- this.chkCHECK_NO.Location = new System.Drawing.Point(300, 12);
- this.chkCHECK_NO.Margin = new System.Windows.Forms.Padding(2);
- this.chkCHECK_NO.Name = "chkCHECK_NO";
- this.chkCHECK_NO.Size = new System.Drawing.Size(71, 19);
- this.chkCHECK_NO.TabIndex = 110;
- this.chkCHECK_NO.Text = "生产批号";
- //
- // chkHEAT_NO
- //
- this.chkHEAT_NO.AutoSize = true;
- this.chkHEAT_NO.Location = new System.Drawing.Point(471, 12);
- this.chkHEAT_NO.Margin = new System.Windows.Forms.Padding(2);
- this.chkHEAT_NO.Name = "chkHEAT_NO";
- this.chkHEAT_NO.Size = new System.Drawing.Size(46, 19);
- this.chkHEAT_NO.TabIndex = 111;
- this.chkHEAT_NO.Text = "炉号";
- //
- // txtQuerySTOVE_NO
- //
- this.txtQuerySTOVE_NO.Location = new System.Drawing.Point(521, 11);
- this.txtQuerySTOVE_NO.MaxLength = 100;
- this.txtQuerySTOVE_NO.Name = "txtQuerySTOVE_NO";
- this.txtQuerySTOVE_NO.Size = new System.Drawing.Size(92, 21);
- this.txtQuerySTOVE_NO.TabIndex = 107;
- //
- // txtQueryLOT_NO
- //
- this.txtQueryLOT_NO.Location = new System.Drawing.Point(375, 11);
- this.txtQueryLOT_NO.MaxLength = 100;
- this.txtQueryLOT_NO.Name = "txtQueryLOT_NO";
- this.txtQueryLOT_NO.Size = new System.Drawing.Size(92, 21);
- this.txtQueryLOT_NO.TabIndex = 106;
- //
- // ultraLabel8
- //
- appearance66.TextHAlignAsString = "Center";
- appearance66.TextVAlignAsString = "Middle";
- this.ultraLabel8.Appearance = appearance66;
- this.ultraLabel8.AutoSize = true;
- this.ultraLabel8.Location = new System.Drawing.Point(183, 14);
- this.ultraLabel8.Name = "ultraLabel8";
- this.ultraLabel8.Size = new System.Drawing.Size(17, 16);
- this.ultraLabel8.TabIndex = 108;
- this.ultraLabel8.Text = "至";
- //
- // dateEnd
- //
- this.dateEnd.FormatProvider = new System.Globalization.CultureInfo("sq-AL");
- this.dateEnd.Location = new System.Drawing.Point(204, 11);
- this.dateEnd.Name = "dateEnd";
- this.dateEnd.Size = new System.Drawing.Size(92, 21);
- this.dateEnd.TabIndex = 105;
- //
- // chkCONSIGN_TIME
- //
- appearance67.TextHAlignAsString = "Left";
- this.chkCONSIGN_TIME.Appearance = appearance67;
- this.chkCONSIGN_TIME.AutoSize = true;
- this.chkCONSIGN_TIME.Checked = true;
- this.chkCONSIGN_TIME.CheckState = System.Windows.Forms.CheckState.Checked;
- this.chkCONSIGN_TIME.Location = new System.Drawing.Point(12, 12);
- this.chkCONSIGN_TIME.Name = "chkCONSIGN_TIME";
- this.chkCONSIGN_TIME.Size = new System.Drawing.Size(71, 19);
- this.chkCONSIGN_TIME.TabIndex = 109;
- this.chkCONSIGN_TIME.Text = "生产时间";
- //
- // dateBegin
- //
- this.dateBegin.FormatProvider = new System.Globalization.CultureInfo("sq-AL");
- this.dateBegin.FormatString = "";
- this.dateBegin.Location = new System.Drawing.Point(87, 11);
- this.dateBegin.MaskInput = "";
- this.dateBegin.Name = "dateBegin";
- this.dateBegin.Size = new System.Drawing.Size(92, 21);
- this.dateBegin.TabIndex = 104;
- //
- // FrmSendCheckConsign
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1328, 506);
- this.Controls.Add(this.panel1);
- this.Name = "FrmSendCheckConsign";
- this.Text = "检验委托实绩";
- this.Load += new System.EventHandler(this.FrmCheckConsign_Load);
- this.ultraTabPageControl1.ResumeLayout(false);
- this.panel4.ResumeLayout(false);
- this.panel5.ResumeLayout(false);
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- this.splitContainer1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).EndInit();
- this.panel9.ResumeLayout(false);
- this.panel9.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.CHKISALL)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraBATCH_NO)).EndInit();
- this.panel7.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
- this.ultraGroupBox3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
- this.panel8.ResumeLayout(false);
- this.panel8.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.CHKSHOWSAMPLE_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.CHKSHOWBATCH_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
- this.ultraGroupBox2.ResumeLayout(false);
- this.panel6.ResumeLayout(false);
- this.panel6.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_NAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_TIME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPRODUCT_STD)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_GRADE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtHEAT_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCHECK_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
- this.panel1.ResumeLayout(false);
- this.panel3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
- this.ultraTabControl1.ResumeLayout(false);
- this.panel2.ResumeLayout(false);
- this.panel2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chkCHECK_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkHEAT_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtQuerySTOVE_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtQueryLOT_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dateEnd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkCONSIGN_TIME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dateBegin)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Panel panel2;
- private System.Data.DataSet dataSet1;
- private System.Data.DataTable dataTable1;
- private System.Data.DataColumn dataColumn1;
- private System.Data.DataColumn dataColumn2;
- private System.Windows.Forms.Panel panel3;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
- private System.Windows.Forms.Panel panel4;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
- private System.Data.DataTable dataTable2;
- private System.Data.DataTable dataTable3;
- private System.Data.DataTable dataTable4;
- private System.Data.DataColumn dataColumn16;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkCHECK_NO;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkHEAT_NO;
- internal Infragistics.Win.UltraWinEditors.UltraTextEditor txtQuerySTOVE_NO;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtQueryLOT_NO;
- private Infragistics.Win.Misc.UltraLabel ultraLabel8;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dateEnd;
- internal Infragistics.Win.UltraWinEditors.UltraCheckEditor chkCONSIGN_TIME;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dateBegin;
- private System.Data.DataColumn dataColumn20;
- private System.Windows.Forms.Panel panel5;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
- private System.Windows.Forms.Panel panel6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel13;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
- private Infragistics.Win.Misc.UltraLabel ultraLabel14;
- private Infragistics.Win.Misc.UltraLabel ultraLabel17;
- private Infragistics.Win.Misc.UltraLabel ultraLabel7;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_MAX;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtCONSIGN_NAME;
- private Infragistics.Win.Misc.UltraLabel ultraLabel10;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtCONSIGN_TIME;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSTEEL_NO;
- private Infragistics.Win.Misc.UltraLabel ultraLabel11;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPRODUCT_STD;
- private Infragistics.Win.Misc.UltraLabel ultraLabel6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSTEEL_GRADE;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtHEAT_NO;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtCHECK_NO;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private System.Windows.Forms.Panel panel7;
- private System.Data.DataColumn dataColumn3;
- private System.Data.DataColumn dataColumn4;
- private System.Windows.Forms.Button btnConfirm;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor4;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraBATCH_NO;
- private System.Windows.Forms.SplitContainer splitContainer1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid6;
- private System.Data.DataColumn dataColumn11;
- private System.Data.DataColumn dataColumn12;
- private System.Data.DataTable dataTable5;
- private System.Data.DataColumn dataColumn5;
- private System.Data.DataColumn dataColumn6;
- private System.Data.DataColumn dataColumn7;
- private System.Data.DataColumn dataColumn8;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid5;
- private System.Data.DataTable dataTable6;
- private System.Data.DataColumn dataColumn9;
- private System.Data.DataColumn dataColumn10;
- private System.Data.DataTable dataTable7;
- private System.Data.DataColumn dataColumn13;
- private System.Data.DataColumn dataColumn14;
- private System.Data.DataColumn dataColumn15;
- private System.Data.DataColumn dataColumn17;
- private System.Data.DataColumn dataColumn18;
- private System.Data.DataColumn dataColumn19;
- private System.Data.DataColumn dataColumn21;
- private System.Data.DataColumn dataColumn22;
- private System.Data.DataColumn dataColumn23;
- private System.Data.DataColumn dataColumn24;
- private System.Data.DataColumn dataColumn25;
- private System.Data.DataColumn dataColumn26;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
- private System.Windows.Forms.Panel panel9;
- private Infragistics.Win.Misc.UltraLabel ultraLabel19;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraSAMPLE_NO;
- private Infragistics.Win.Misc.UltraLabel ultraLabel16;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid7;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor CHKISALL;
- private System.Windows.Forms.Button btnDeleteSample;
- private System.Windows.Forms.Panel panel8;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor CHKSHOWBATCH_NO;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor CHKSHOWSAMPLE_NO;
- }
- }
|