| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010 |
- namespace Core.StlMes.Client.BuyBillet
- {
- partial class FrmCGpRk
- {
- /// <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 appearance103 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("供应商");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("合同号");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("钢种", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("断面");
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("管坯类型");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("单倍坯长");
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("倍尺");
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("管坯长度");
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("合同量");
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("预报条数");
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_NO_PK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GPBUYPLANID");
- 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 appearance80 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("倍尺");
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("支数");
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("重量");
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("管坯长度");
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("理论重量");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("管坯理论长度");
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("管坯理论重量");
- Infragistics.Win.Appearance appearance29 = 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.Appearance appearance39 = new Infragistics.Win.Appearance();
- 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.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("炉号");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("判定炉号");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("支数");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("重量");
- 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.Appearance appearance64 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("count");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("weight");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("bc");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("act_len");
- Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance69 = 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 appearance76 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTOCK_DOC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_STOVE_NO", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDER_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_COUNT");
- Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_WEIGHT");
- Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GPREQ_ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHK", 0);
- 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 appearance22 = 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 appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand6 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("storage_name");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("jugde_apply_code");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("judge_stove_no");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("material_name");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("gradename");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("fix_len");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("act_count");
- Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("act_weight");
- Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("node_fur_flag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHK", 0);
- Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance96 = 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 appearance113 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance114 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance115 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance116 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance117 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance118 = 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();
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.ug_orders = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ds_orders = new System.Data.DataSet();
- this.dataTable2 = 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.dataColumn9 = new System.Data.DataColumn();
- this.dataColumn10 = new System.Data.DataColumn();
- this.dataColumn11 = new System.Data.DataColumn();
- this.dataColumn12 = new System.Data.DataColumn();
- this.dataColumn13 = new System.Data.DataColumn();
- this.dataColumn17 = new System.Data.DataColumn();
- this.dataColumn18 = new System.Data.DataColumn();
- this.dataColumn38 = new System.Data.DataColumn();
- this.ug_rukinfo = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ds_rukuinfo = new System.Data.DataSet();
- this.dataTable3 = new System.Data.DataTable();
- this.dataColumn14 = new System.Data.DataColumn();
- this.dataColumn15 = new System.Data.DataColumn();
- this.dataColumn16 = new System.Data.DataColumn();
- this.dataColumn40 = new System.Data.DataColumn();
- this.dataColumn51 = new System.Data.DataColumn();
- this.dataColumn52 = new System.Data.DataColumn();
- this.dataColumn53 = new System.Data.DataColumn();
- this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
- this.txt_location = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.ck_sglcode = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ck_jielu = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_stove_no = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_judge_stove_no = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- this.cb_level = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_carno = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.lbl_carno = new Infragistics.Win.Misc.UltraLabel();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ug_dcyb = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ds_dcyb = new System.Data.DataSet();
- this.dataTable1 = new System.Data.DataTable();
- this.dataColumn1 = new System.Data.DataColumn();
- this.dataColumn2 = new System.Data.DataColumn();
- this.dataColumn3 = new System.Data.DataColumn();
- this.dataColumn4 = new System.Data.DataColumn();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.cb_stock = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.cb_supplier = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_orderno = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ck_orderno = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.cb_location = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ck_supplier = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ug_rkinfo_c = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ds_rkinfo_c = new System.Data.DataSet();
- this.dataTable6 = new System.Data.DataTable();
- this.dataColumn35 = new System.Data.DataColumn();
- this.dataColumn36 = new System.Data.DataColumn();
- this.dataColumn37 = new System.Data.DataColumn();
- this.dataColumn41 = new System.Data.DataColumn();
- this.ug_rkinfo_p = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ds_rkinfo_p = new System.Data.DataSet();
- this.dataTable5 = new System.Data.DataTable();
- this.dataColumn27 = new System.Data.DataColumn();
- this.dataColumn28 = new System.Data.DataColumn();
- this.dataColumn29 = new System.Data.DataColumn();
- this.dataColumn30 = new System.Data.DataColumn();
- this.dataColumn31 = new System.Data.DataColumn();
- this.dataColumn32 = new System.Data.DataColumn();
- this.dataColumn33 = new System.Data.DataColumn();
- this.dataColumn34 = new System.Data.DataColumn();
- this.dataColumn39 = new System.Data.DataColumn();
- this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
- this.cb_supplier_cd = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.cb_stock_cd = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_stove_judgeno_cd = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraCheckEditor3 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_orderno_cd = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraCheckEditor1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraCheckEditor2 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ug_wgpstockinfo = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ds_stockinfo_qry = new System.Data.DataSet();
- this.dataTable7 = new System.Data.DataTable();
- this.dataColumn42 = new System.Data.DataColumn();
- this.dataColumn43 = new System.Data.DataColumn();
- this.dataColumn44 = new System.Data.DataColumn();
- this.dataColumn45 = new System.Data.DataColumn();
- this.dataColumn46 = new System.Data.DataColumn();
- this.dataColumn47 = new System.Data.DataColumn();
- this.dataColumn48 = new System.Data.DataColumn();
- this.dataColumn49 = new System.Data.DataColumn();
- this.dataColumn50 = new System.Data.DataColumn();
- this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
- this.cb_stock_jl = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_judge_stoveno_jl = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ds_stockinfo = new System.Data.DataSet();
- this.dataTable4 = new System.Data.DataTable();
- this.dataColumn19 = new System.Data.DataColumn();
- this.dataColumn20 = 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.tabC = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraTabPageControl1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ug_orders)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ds_orders)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ug_rukinfo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ds_rukuinfo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
- this.ultraGroupBox2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_location)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ck_sglcode)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ck_jielu)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_stove_no)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_judge_stove_no)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cb_level)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_carno)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ug_dcyb)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ds_dcyb)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cb_stock)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cb_supplier)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_orderno)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ck_orderno)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cb_location)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ck_supplier)).BeginInit();
- this.ultraTabPageControl2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ug_rkinfo_c)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ds_rkinfo_c)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ug_rkinfo_p)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ds_rkinfo_p)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
- this.ultraGroupBox4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cb_supplier_cd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cb_stock_cd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_stove_judgeno_cd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_orderno_cd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor2)).BeginInit();
- this.ultraTabPageControl3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ug_wgpstockinfo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ds_stockinfo_qry)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
- this.ultraGroupBox3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cb_stock_jl)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_judge_stoveno_jl)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ds_stockinfo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.tabC)).BeginInit();
- this.tabC.SuspendLayout();
- this.SuspendLayout();
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.splitContainer1);
- this.ultraTabPageControl1.Controls.Add(this.ultraExpandableGroupBox1);
- this.ultraTabPageControl1.Controls.Add(this.ultraGroupBox1);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 1);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(1121, 539);
- //
- // splitContainer1
- //
- this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.Location = new System.Drawing.Point(26, 32);
- this.splitContainer1.Name = "splitContainer1";
- this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this.ug_orders);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.ug_rukinfo);
- this.splitContainer1.Panel2.Controls.Add(this.ultraGroupBox2);
- this.splitContainer1.Size = new System.Drawing.Size(1095, 507);
- this.splitContainer1.SplitterDistance = 216;
- this.splitContainer1.TabIndex = 2;
- //
- // ug_orders
- //
- this.ug_orders.DataSource = this.ds_orders;
- appearance103.BackColor = System.Drawing.SystemColors.Window;
- appearance103.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ug_orders.DisplayLayout.Appearance = appearance103;
- ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn3.Header.VisiblePosition = 2;
- ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance1.TextHAlignAsString = "Right";
- ultraGridColumn4.CellAppearance = appearance1;
- ultraGridColumn4.Header.VisiblePosition = 3;
- ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn5.Header.VisiblePosition = 4;
- ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance2.TextHAlignAsString = "Right";
- ultraGridColumn6.CellAppearance = appearance2;
- ultraGridColumn6.Header.VisiblePosition = 5;
- ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance3.TextHAlignAsString = "Right";
- ultraGridColumn7.CellAppearance = appearance3;
- ultraGridColumn7.Header.VisiblePosition = 6;
- ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance4.TextHAlignAsString = "Right";
- ultraGridColumn8.CellAppearance = appearance4;
- ultraGridColumn8.Header.VisiblePosition = 7;
- ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance5.TextHAlignAsString = "Right";
- ultraGridColumn9.CellAppearance = appearance5;
- ultraGridColumn9.Header.VisiblePosition = 8;
- ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance6.TextHAlignAsString = "Right";
- ultraGridColumn10.CellAppearance = appearance6;
- ultraGridColumn10.Header.VisiblePosition = 9;
- ultraGridColumn11.Header.VisiblePosition = 10;
- ultraGridColumn11.Hidden = true;
- ultraGridColumn12.Header.VisiblePosition = 11;
- ultraGridColumn12.Hidden = true;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8,
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12});
- this.ug_orders.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ug_orders.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance31.TextHAlignAsString = "Left";
- this.ug_orders.DisplayLayout.CaptionAppearance = appearance31;
- this.ug_orders.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.True;
- appearance32.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance32.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance32.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance32.BorderColor = System.Drawing.SystemColors.Window;
- this.ug_orders.DisplayLayout.GroupByBox.Appearance = appearance32;
- appearance33.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ug_orders.DisplayLayout.GroupByBox.BandLabelAppearance = appearance33;
- this.ug_orders.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ug_orders.DisplayLayout.GroupByBox.Hidden = true;
- appearance80.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance80.BackColor2 = System.Drawing.SystemColors.Control;
- appearance80.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance80.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ug_orders.DisplayLayout.GroupByBox.PromptAppearance = appearance80;
- this.ug_orders.DisplayLayout.MaxColScrollRegions = 1;
- this.ug_orders.DisplayLayout.MaxRowScrollRegions = 1;
- appearance81.BackColor = System.Drawing.SystemColors.Window;
- appearance81.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ug_orders.DisplayLayout.Override.ActiveCellAppearance = appearance81;
- appearance82.BackColor = System.Drawing.SystemColors.Highlight;
- appearance82.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ug_orders.DisplayLayout.Override.ActiveRowAppearance = appearance82;
- this.ug_orders.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ug_orders.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance83.BackColor = System.Drawing.SystemColors.Window;
- this.ug_orders.DisplayLayout.Override.CardAreaAppearance = appearance83;
- appearance84.BorderColor = System.Drawing.Color.Silver;
- appearance84.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ug_orders.DisplayLayout.Override.CellAppearance = appearance84;
- this.ug_orders.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ug_orders.DisplayLayout.Override.CellPadding = 0;
- appearance85.BackColor = System.Drawing.SystemColors.Control;
- appearance85.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance85.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance85.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance85.BorderColor = System.Drawing.SystemColors.Window;
- this.ug_orders.DisplayLayout.Override.GroupByRowAppearance = appearance85;
- appearance86.TextHAlignAsString = "Left";
- this.ug_orders.DisplayLayout.Override.HeaderAppearance = appearance86;
- this.ug_orders.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ug_orders.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance87.BackColor = System.Drawing.SystemColors.Window;
- appearance87.BorderColor = System.Drawing.Color.Silver;
- this.ug_orders.DisplayLayout.Override.RowAppearance = appearance87;
- this.ug_orders.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance88.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ug_orders.DisplayLayout.Override.TemplateAddRowAppearance = appearance88;
- this.ug_orders.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ug_orders.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ug_orders.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ug_orders.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ug_orders.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ug_orders.Location = new System.Drawing.Point(0, 0);
- this.ug_orders.Name = "ug_orders";
- this.ug_orders.Size = new System.Drawing.Size(1095, 216);
- this.ug_orders.TabIndex = 0;
- this.ug_orders.Text = "外购坯合同";
- this.ug_orders.AfterRowActivate += new System.EventHandler(this.ug_orders_AfterRowActivate);
- this.ug_orders.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ug_orders_ClickCell);
- this.ug_orders.Click += new System.EventHandler(this.ug_orders_Click);
- //
- // ds_orders
- //
- this.ds_orders.DataSetName = "NewDataSet";
- this.ds_orders.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable2});
- //
- // dataTable2
- //
- this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn5,
- this.dataColumn6,
- this.dataColumn7,
- this.dataColumn8,
- this.dataColumn9,
- this.dataColumn10,
- this.dataColumn11,
- this.dataColumn12,
- this.dataColumn13,
- this.dataColumn17,
- this.dataColumn18,
- this.dataColumn38});
- this.dataTable2.TableName = "Table1";
- //
- // dataColumn5
- //
- this.dataColumn5.ColumnName = "供应商";
- //
- // dataColumn6
- //
- this.dataColumn6.ColumnName = "合同号";
- //
- // dataColumn7
- //
- this.dataColumn7.ColumnName = "钢种";
- //
- // dataColumn8
- //
- this.dataColumn8.ColumnName = "断面";
- //
- // dataColumn9
- //
- this.dataColumn9.ColumnName = "管坯类型";
- //
- // dataColumn10
- //
- this.dataColumn10.ColumnName = "单倍坯长";
- this.dataColumn10.DataType = typeof(int);
- //
- // dataColumn11
- //
- this.dataColumn11.ColumnName = "倍尺";
- this.dataColumn11.DataType = typeof(int);
- //
- // dataColumn12
- //
- this.dataColumn12.ColumnName = "管坯长度";
- this.dataColumn12.DataType = typeof(int);
- //
- // dataColumn13
- //
- this.dataColumn13.ColumnName = "合同量";
- this.dataColumn13.DataType = typeof(decimal);
- //
- // dataColumn17
- //
- this.dataColumn17.ColumnName = "预报条数";
- this.dataColumn17.DataType = typeof(int);
- //
- // dataColumn18
- //
- this.dataColumn18.ColumnName = "ORD_NO_PK";
- //
- // dataColumn38
- //
- this.dataColumn38.ColumnName = "GPBUYPLANID";
- //
- // ug_rukinfo
- //
- this.ug_rukinfo.DataSource = this.ds_rukuinfo;
- appearance30.BackColor = System.Drawing.SystemColors.Window;
- appearance30.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ug_rukinfo.DisplayLayout.Appearance = appearance30;
- ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- appearance7.TextHAlignAsString = "Right";
- ultraGridColumn13.CellAppearance = appearance7;
- ultraGridColumn13.Header.VisiblePosition = 0;
- ultraGridColumn13.Width = 143;
- appearance8.TextHAlignAsString = "Right";
- ultraGridColumn14.CellAppearance = appearance8;
- ultraGridColumn14.Header.VisiblePosition = 2;
- ultraGridColumn14.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- ultraGridColumn14.MaskInput = "n,nnn";
- ultraGridColumn14.PromptChar = ' ';
- ultraGridColumn14.Width = 181;
- appearance9.TextHAlignAsString = "Right";
- ultraGridColumn15.CellAppearance = appearance9;
- ultraGridColumn15.Header.VisiblePosition = 3;
- ultraGridColumn15.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- ultraGridColumn15.MaskInput = "n,nnn.nnn";
- ultraGridColumn15.PromptChar = ' ';
- ultraGridColumn15.Width = 176;
- ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- appearance15.TextHAlignAsString = "Right";
- ultraGridColumn16.CellAppearance = appearance15;
- ultraGridColumn16.Header.VisiblePosition = 1;
- ultraGridColumn16.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- ultraGridColumn16.MaskInput = "nnn,nnn";
- ultraGridColumn16.Width = 110;
- ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn17.Header.VisiblePosition = 4;
- ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- appearance16.TextHAlignAsString = "Right";
- ultraGridColumn18.CellAppearance = appearance16;
- ultraGridColumn18.Header.VisiblePosition = 5;
- ultraGridColumn18.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- ultraGridColumn18.MaskInput = "nnn,nnn";
- ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- appearance29.TextHAlignAsString = "Right";
- ultraGridColumn19.CellAppearance = appearance29;
- ultraGridColumn19.Header.VisiblePosition = 6;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19});
- this.ug_rukinfo.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ug_rukinfo.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance34.TextHAlignAsString = "Left";
- this.ug_rukinfo.DisplayLayout.CaptionAppearance = appearance34;
- this.ug_rukinfo.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.True;
- appearance35.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance35.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance35.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance35.BorderColor = System.Drawing.SystemColors.Window;
- this.ug_rukinfo.DisplayLayout.GroupByBox.Appearance = appearance35;
- appearance36.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ug_rukinfo.DisplayLayout.GroupByBox.BandLabelAppearance = appearance36;
- this.ug_rukinfo.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ug_rukinfo.DisplayLayout.GroupByBox.Hidden = true;
- appearance37.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance37.BackColor2 = System.Drawing.SystemColors.Control;
- appearance37.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance37.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ug_rukinfo.DisplayLayout.GroupByBox.PromptAppearance = appearance37;
- this.ug_rukinfo.DisplayLayout.MaxColScrollRegions = 1;
- this.ug_rukinfo.DisplayLayout.MaxRowScrollRegions = 1;
- appearance38.BackColor = System.Drawing.SystemColors.Window;
- appearance38.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ug_rukinfo.DisplayLayout.Override.ActiveCellAppearance = appearance38;
- appearance39.BackColor = System.Drawing.SystemColors.Highlight;
- appearance39.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ug_rukinfo.DisplayLayout.Override.ActiveRowAppearance = appearance39;
- this.ug_rukinfo.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ug_rukinfo.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance40.BackColor = System.Drawing.SystemColors.Window;
- this.ug_rukinfo.DisplayLayout.Override.CardAreaAppearance = appearance40;
- appearance41.BorderColor = System.Drawing.Color.Silver;
- appearance41.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ug_rukinfo.DisplayLayout.Override.CellAppearance = appearance41;
- this.ug_rukinfo.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ug_rukinfo.DisplayLayout.Override.CellPadding = 0;
- appearance42.BackColor = System.Drawing.SystemColors.Control;
- appearance42.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance42.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance42.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance42.BorderColor = System.Drawing.SystemColors.Window;
- this.ug_rukinfo.DisplayLayout.Override.GroupByRowAppearance = appearance42;
- appearance43.TextHAlignAsString = "Left";
- this.ug_rukinfo.DisplayLayout.Override.HeaderAppearance = appearance43;
- this.ug_rukinfo.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ug_rukinfo.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance44.BackColor = System.Drawing.SystemColors.Window;
- appearance44.BorderColor = System.Drawing.Color.Silver;
- this.ug_rukinfo.DisplayLayout.Override.RowAppearance = appearance44;
- this.ug_rukinfo.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance45.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ug_rukinfo.DisplayLayout.Override.TemplateAddRowAppearance = appearance45;
- this.ug_rukinfo.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ug_rukinfo.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ug_rukinfo.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ug_rukinfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ug_rukinfo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ug_rukinfo.Location = new System.Drawing.Point(0, 26);
- this.ug_rukinfo.Name = "ug_rukinfo";
- this.ug_rukinfo.Size = new System.Drawing.Size(1095, 261);
- this.ug_rukinfo.TabIndex = 1;
- this.ug_rukinfo.Text = "实际入库信息";
- this.ug_rukinfo.AfterCellUpdate += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ug_rukinfo_AfterCellUpdate);
- //
- // ds_rukuinfo
- //
- this.ds_rukuinfo.DataSetName = "NewDataSet";
- this.ds_rukuinfo.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable3});
- //
- // dataTable3
- //
- this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn14,
- this.dataColumn15,
- this.dataColumn16,
- this.dataColumn40,
- this.dataColumn51,
- this.dataColumn52,
- this.dataColumn53});
- this.dataTable3.TableName = "Table1";
- //
- // dataColumn14
- //
- this.dataColumn14.ColumnName = "倍尺";
- this.dataColumn14.DataType = typeof(int);
- //
- // dataColumn15
- //
- this.dataColumn15.ColumnName = "支数";
- this.dataColumn15.DataType = typeof(int);
- //
- // dataColumn16
- //
- this.dataColumn16.ColumnName = "重量";
- this.dataColumn16.DataType = typeof(decimal);
- //
- // dataColumn40
- //
- this.dataColumn40.ColumnName = "管坯长度";
- this.dataColumn40.DataType = typeof(int);
- //
- // dataColumn51
- //
- this.dataColumn51.Caption = "理论重量";
- this.dataColumn51.ColumnName = "理论重量";
- this.dataColumn51.DataType = typeof(decimal);
- //
- // dataColumn52
- //
- this.dataColumn52.ColumnName = "管坯理论长度";
- this.dataColumn52.DataType = typeof(int);
- //
- // dataColumn53
- //
- this.dataColumn53.ColumnName = "管坯理论重量";
- this.dataColumn53.DataType = typeof(decimal);
- //
- // ultraGroupBox2
- //
- this.ultraGroupBox2.Controls.Add(this.txt_location);
- this.ultraGroupBox2.Controls.Add(this.ultraLabel1);
- this.ultraGroupBox2.Controls.Add(this.ck_sglcode);
- this.ultraGroupBox2.Controls.Add(this.ck_jielu);
- this.ultraGroupBox2.Controls.Add(this.txt_stove_no);
- this.ultraGroupBox2.Controls.Add(this.ultraLabel2);
- this.ultraGroupBox2.Controls.Add(this.txt_judge_stove_no);
- this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
- this.ultraGroupBox2.Controls.Add(this.cb_level);
- this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
- this.ultraGroupBox2.Controls.Add(this.txt_carno);
- this.ultraGroupBox2.Controls.Add(this.lbl_carno);
- 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(1095, 26);
- this.ultraGroupBox2.TabIndex = 0;
- this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // txt_location
- //
- editorButton1.Text = "库位";
- this.txt_location.ButtonsRight.Add(editorButton1);
- this.txt_location.Location = new System.Drawing.Point(321, 2);
- this.txt_location.Name = "txt_location";
- this.txt_location.ReadOnly = true;
- this.txt_location.Size = new System.Drawing.Size(100, 21);
- this.txt_location.TabIndex = 7;
- this.txt_location.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_location_EditorButtonClick);
- //
- // ultraLabel1
- //
- this.ultraLabel1.Location = new System.Drawing.Point(21, 3);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(37, 19);
- this.ultraLabel1.TabIndex = 0;
- this.ultraLabel1.Text = "炉号";
- //
- // ck_sglcode
- //
- this.ck_sglcode.Location = new System.Drawing.Point(3, 0);
- this.ck_sglcode.Name = "ck_sglcode";
- this.ck_sglcode.Size = new System.Drawing.Size(18, 20);
- this.ck_sglcode.TabIndex = 4;
- this.ck_sglcode.CheckedChanged += new System.EventHandler(this.ck_sglcode_CheckedChanged);
- //
- // ck_jielu
- //
- this.ck_jielu.Checked = true;
- this.ck_jielu.CheckState = System.Windows.Forms.CheckState.Checked;
- this.ck_jielu.Location = new System.Drawing.Point(525, 2);
- this.ck_jielu.Name = "ck_jielu";
- this.ck_jielu.Size = new System.Drawing.Size(48, 20);
- this.ck_jielu.TabIndex = 11;
- this.ck_jielu.Text = "结炉";
- //
- // txt_stove_no
- //
- this.txt_stove_no.Enabled = false;
- this.txt_stove_no.Location = new System.Drawing.Point(58, 2);
- this.txt_stove_no.Name = "txt_stove_no";
- this.txt_stove_no.Size = new System.Drawing.Size(84, 21);
- this.txt_stove_no.TabIndex = 1;
- //
- // ultraLabel2
- //
- this.ultraLabel2.Location = new System.Drawing.Point(145, 4);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(58, 23);
- this.ultraLabel2.TabIndex = 2;
- this.ultraLabel2.Text = "判定炉号";
- //
- // txt_judge_stove_no
- //
- this.txt_judge_stove_no.Enabled = false;
- this.txt_judge_stove_no.Location = new System.Drawing.Point(206, 1);
- this.txt_judge_stove_no.Name = "txt_judge_stove_no";
- this.txt_judge_stove_no.Size = new System.Drawing.Size(80, 21);
- this.txt_judge_stove_no.TabIndex = 3;
- //
- // ultraLabel5
- //
- this.ultraLabel5.Location = new System.Drawing.Point(286, 4);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(33, 23);
- this.ultraLabel5.TabIndex = 9;
- this.ultraLabel5.Text = "库位";
- //
- // cb_level
- //
- this.cb_level.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.cb_level.Location = new System.Drawing.Point(461, 0);
- this.cb_level.Name = "cb_level";
- this.cb_level.Size = new System.Drawing.Size(60, 21);
- this.cb_level.TabIndex = 8;
- //
- // ultraLabel4
- //
- this.ultraLabel4.Location = new System.Drawing.Point(428, 4);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.Size = new System.Drawing.Size(33, 23);
- this.ultraLabel4.TabIndex = 7;
- this.ultraLabel4.Text = "层数";
- //
- // txt_carno
- //
- this.txt_carno.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_carno.Location = new System.Drawing.Point(606, 3);
- this.txt_carno.Name = "txt_carno";
- this.txt_carno.Size = new System.Drawing.Size(115, 21);
- this.txt_carno.TabIndex = 4;
- //
- // lbl_carno
- //
- this.lbl_carno.Location = new System.Drawing.Point(576, 4);
- this.lbl_carno.Name = "lbl_carno";
- this.lbl_carno.Size = new System.Drawing.Size(30, 23);
- this.lbl_carno.TabIndex = 0;
- this.lbl_carno.Text = "车号";
- //
- // ultraExpandableGroupBox1
- //
- this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
- this.ultraExpandableGroupBox1.Expanded = false;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(332, 507);
- this.ultraExpandableGroupBox1.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftInsideBorder;
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 32);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(26, 507);
- this.ultraExpandableGroupBox1.TabIndex = 1;
- this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ug_dcyb);
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(311, 501);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- this.ultraExpandableGroupBoxPanel1.Visible = false;
- //
- // ug_dcyb
- //
- this.ug_dcyb.DataSource = this.ds_dcyb;
- appearance53.BackColor = System.Drawing.SystemColors.Window;
- appearance53.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ug_dcyb.DisplayLayout.Appearance = appearance53;
- ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn20.Header.VisiblePosition = 0;
- ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn21.Header.VisiblePosition = 1;
- ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn22.Header.VisiblePosition = 2;
- ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn23.Header.VisiblePosition = 3;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn20,
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23});
- this.ug_dcyb.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.ug_dcyb.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance54.TextHAlignAsString = "Left";
- this.ug_dcyb.DisplayLayout.CaptionAppearance = appearance54;
- this.ug_dcyb.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.True;
- appearance55.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance55.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance55.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance55.BorderColor = System.Drawing.SystemColors.Window;
- this.ug_dcyb.DisplayLayout.GroupByBox.Appearance = appearance55;
- appearance56.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ug_dcyb.DisplayLayout.GroupByBox.BandLabelAppearance = appearance56;
- this.ug_dcyb.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ug_dcyb.DisplayLayout.GroupByBox.Hidden = true;
- appearance57.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance57.BackColor2 = System.Drawing.SystemColors.Control;
- appearance57.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance57.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ug_dcyb.DisplayLayout.GroupByBox.PromptAppearance = appearance57;
- this.ug_dcyb.DisplayLayout.MaxColScrollRegions = 1;
- this.ug_dcyb.DisplayLayout.MaxRowScrollRegions = 1;
- appearance58.BackColor = System.Drawing.SystemColors.Window;
- appearance58.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ug_dcyb.DisplayLayout.Override.ActiveCellAppearance = appearance58;
- appearance59.BackColor = System.Drawing.SystemColors.Highlight;
- appearance59.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ug_dcyb.DisplayLayout.Override.ActiveRowAppearance = appearance59;
- this.ug_dcyb.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ug_dcyb.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance60.BackColor = System.Drawing.SystemColors.Window;
- this.ug_dcyb.DisplayLayout.Override.CardAreaAppearance = appearance60;
- appearance61.BorderColor = System.Drawing.Color.Silver;
- appearance61.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ug_dcyb.DisplayLayout.Override.CellAppearance = appearance61;
- this.ug_dcyb.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ug_dcyb.DisplayLayout.Override.CellPadding = 0;
- appearance62.BackColor = System.Drawing.SystemColors.Control;
- appearance62.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance62.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance62.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance62.BorderColor = System.Drawing.SystemColors.Window;
- this.ug_dcyb.DisplayLayout.Override.GroupByRowAppearance = appearance62;
- appearance63.TextHAlignAsString = "Left";
- this.ug_dcyb.DisplayLayout.Override.HeaderAppearance = appearance63;
- this.ug_dcyb.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ug_dcyb.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance64.BackColor = System.Drawing.SystemColors.Window;
- appearance64.BorderColor = System.Drawing.Color.Silver;
- this.ug_dcyb.DisplayLayout.Override.RowAppearance = appearance64;
- this.ug_dcyb.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance65.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ug_dcyb.DisplayLayout.Override.TemplateAddRowAppearance = appearance65;
- this.ug_dcyb.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ug_dcyb.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ug_dcyb.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ug_dcyb.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ug_dcyb.Location = new System.Drawing.Point(0, 0);
- this.ug_dcyb.Name = "ug_dcyb";
- this.ug_dcyb.Size = new System.Drawing.Size(311, 501);
- this.ug_dcyb.TabIndex = 2;
- this.ug_dcyb.Text = "到厂计划";
- this.ug_dcyb.UseOsThemes = Infragistics.Win.DefaultableBoolean.True;
- //
- // ds_dcyb
- //
- this.ds_dcyb.DataSetName = "NewDataSet";
- this.ds_dcyb.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable1});
- //
- // dataTable1
- //
- this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn1,
- this.dataColumn2,
- this.dataColumn3,
- this.dataColumn4});
- this.dataTable1.TableName = "Table1";
- //
- // dataColumn1
- //
- this.dataColumn1.ColumnName = "炉号";
- //
- // dataColumn2
- //
- this.dataColumn2.ColumnName = "判定炉号";
- //
- // dataColumn3
- //
- this.dataColumn3.ColumnName = "支数";
- //
- // dataColumn4
- //
- this.dataColumn4.ColumnName = "重量";
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.cb_stock);
- this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
- this.ultraGroupBox1.Controls.Add(this.cb_supplier);
- this.ultraGroupBox1.Controls.Add(this.txt_orderno);
- this.ultraGroupBox1.Controls.Add(this.ck_orderno);
- this.ultraGroupBox1.Controls.Add(this.cb_location);
- this.ultraGroupBox1.Controls.Add(this.ck_supplier);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(1121, 32);
- this.ultraGroupBox1.TabIndex = 0;
- this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // cb_stock
- //
- this.cb_stock.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.cb_stock.Location = new System.Drawing.Point(492, 5);
- this.cb_stock.Name = "cb_stock";
- this.cb_stock.Size = new System.Drawing.Size(114, 21);
- this.cb_stock.TabIndex = 6;
- this.cb_stock.SelectionChanged += new System.EventHandler(this.cb_stock_SelectionChanged);
- //
- // ultraLabel3
- //
- this.ultraLabel3.Location = new System.Drawing.Point(458, 9);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(33, 20);
- this.ultraLabel3.TabIndex = 5;
- this.ultraLabel3.Text = "仓库";
- //
- // cb_supplier
- //
- this.cb_supplier.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.cb_supplier.Location = new System.Drawing.Point(81, 4);
- this.cb_supplier.Name = "cb_supplier";
- this.cb_supplier.Size = new System.Drawing.Size(114, 21);
- this.cb_supplier.TabIndex = 4;
- //
- // txt_orderno
- //
- this.txt_orderno.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_orderno.Enabled = false;
- this.txt_orderno.Location = new System.Drawing.Point(264, 5);
- this.txt_orderno.Name = "txt_orderno";
- this.txt_orderno.Size = new System.Drawing.Size(192, 21);
- this.txt_orderno.TabIndex = 3;
- //
- // ck_orderno
- //
- this.ck_orderno.Location = new System.Drawing.Point(200, 6);
- this.ck_orderno.Name = "ck_orderno";
- this.ck_orderno.Size = new System.Drawing.Size(61, 20);
- this.ck_orderno.TabIndex = 2;
- this.ck_orderno.Text = "合同号";
- this.ck_orderno.CheckedChanged += new System.EventHandler(this.ck_orderno_CheckedChanged);
- //
- // cb_location
- //
- this.cb_location.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.cb_location.Location = new System.Drawing.Point(618, 4);
- this.cb_location.Name = "cb_location";
- this.cb_location.Size = new System.Drawing.Size(102, 21);
- this.cb_location.TabIndex = 10;
- this.cb_location.Visible = false;
- //
- // ck_supplier
- //
- this.ck_supplier.Checked = true;
- this.ck_supplier.CheckState = System.Windows.Forms.CheckState.Checked;
- this.ck_supplier.Location = new System.Drawing.Point(18, 4);
- this.ck_supplier.Name = "ck_supplier";
- this.ck_supplier.Size = new System.Drawing.Size(61, 20);
- this.ck_supplier.TabIndex = 0;
- this.ck_supplier.Text = "供应商";
- //
- // ultraTabPageControl2
- //
- this.ultraTabPageControl2.Controls.Add(this.ug_rkinfo_c);
- this.ultraTabPageControl2.Controls.Add(this.ug_rkinfo_p);
- this.ultraTabPageControl2.Controls.Add(this.ultraGroupBox4);
- this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl2.Name = "ultraTabPageControl2";
- this.ultraTabPageControl2.Size = new System.Drawing.Size(1121, 539);
- //
- // ug_rkinfo_c
- //
- this.ug_rkinfo_c.DataSource = this.ds_rkinfo_c;
- appearance66.BackColor = System.Drawing.SystemColors.Window;
- appearance66.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ug_rkinfo_c.DisplayLayout.Appearance = appearance66;
- ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn24.Header.VisiblePosition = 0;
- ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn25.Header.VisiblePosition = 1;
- ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn26.Header.VisiblePosition = 2;
- ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn27.Header.Caption = "管坯长度";
- ultraGridColumn27.Header.VisiblePosition = 3;
- ultraGridBand4.Columns.AddRange(new object[] {
- ultraGridColumn24,
- ultraGridColumn25,
- ultraGridColumn26,
- ultraGridColumn27});
- this.ug_rkinfo_c.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
- this.ug_rkinfo_c.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance67.TextHAlignAsString = "Left";
- this.ug_rkinfo_c.DisplayLayout.CaptionAppearance = appearance67;
- this.ug_rkinfo_c.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.True;
- appearance68.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance68.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance68.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance68.BorderColor = System.Drawing.SystemColors.Window;
- this.ug_rkinfo_c.DisplayLayout.GroupByBox.Appearance = appearance68;
- appearance69.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ug_rkinfo_c.DisplayLayout.GroupByBox.BandLabelAppearance = appearance69;
- this.ug_rkinfo_c.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ug_rkinfo_c.DisplayLayout.GroupByBox.Hidden = true;
- appearance70.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance70.BackColor2 = System.Drawing.SystemColors.Control;
- appearance70.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance70.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ug_rkinfo_c.DisplayLayout.GroupByBox.PromptAppearance = appearance70;
- this.ug_rkinfo_c.DisplayLayout.MaxColScrollRegions = 1;
- this.ug_rkinfo_c.DisplayLayout.MaxRowScrollRegions = 1;
- appearance71.BackColor = System.Drawing.SystemColors.Window;
- appearance71.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ug_rkinfo_c.DisplayLayout.Override.ActiveCellAppearance = appearance71;
- appearance72.BackColor = System.Drawing.SystemColors.Highlight;
- appearance72.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ug_rkinfo_c.DisplayLayout.Override.ActiveRowAppearance = appearance72;
- this.ug_rkinfo_c.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ug_rkinfo_c.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance73.BackColor = System.Drawing.SystemColors.Window;
- this.ug_rkinfo_c.DisplayLayout.Override.CardAreaAppearance = appearance73;
- appearance74.BorderColor = System.Drawing.Color.Silver;
- appearance74.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ug_rkinfo_c.DisplayLayout.Override.CellAppearance = appearance74;
- this.ug_rkinfo_c.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ug_rkinfo_c.DisplayLayout.Override.CellPadding = 0;
- appearance76.BackColor = System.Drawing.SystemColors.Control;
- appearance76.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance76.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance76.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance76.BorderColor = System.Drawing.SystemColors.Window;
- this.ug_rkinfo_c.DisplayLayout.Override.GroupByRowAppearance = appearance76;
- appearance77.TextHAlignAsString = "Left";
- this.ug_rkinfo_c.DisplayLayout.Override.HeaderAppearance = appearance77;
- this.ug_rkinfo_c.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ug_rkinfo_c.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance78.BackColor = System.Drawing.SystemColors.Window;
- appearance78.BorderColor = System.Drawing.Color.Silver;
- this.ug_rkinfo_c.DisplayLayout.Override.RowAppearance = appearance78;
- this.ug_rkinfo_c.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance91.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ug_rkinfo_c.DisplayLayout.Override.TemplateAddRowAppearance = appearance91;
- this.ug_rkinfo_c.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ug_rkinfo_c.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ug_rkinfo_c.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ug_rkinfo_c.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ug_rkinfo_c.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ug_rkinfo_c.Location = new System.Drawing.Point(0, 385);
- this.ug_rkinfo_c.Name = "ug_rkinfo_c";
- this.ug_rkinfo_c.Size = new System.Drawing.Size(1121, 154);
- this.ug_rkinfo_c.TabIndex = 4;
- this.ug_rkinfo_c.Text = "炉信息";
- //
- // ds_rkinfo_c
- //
- this.ds_rkinfo_c.DataSetName = "NewDataSet";
- this.ds_rkinfo_c.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable6});
- //
- // dataTable6
- //
- this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn35,
- this.dataColumn36,
- this.dataColumn37,
- this.dataColumn41});
- this.dataTable6.TableName = "Table1";
- //
- // dataColumn35
- //
- this.dataColumn35.Caption = "支数";
- this.dataColumn35.ColumnName = "count";
- this.dataColumn35.DataType = typeof(int);
- //
- // dataColumn36
- //
- this.dataColumn36.Caption = "重量";
- this.dataColumn36.ColumnName = "weight";
- this.dataColumn36.DataType = typeof(decimal);
- //
- // dataColumn37
- //
- this.dataColumn37.Caption = "倍尺";
- this.dataColumn37.ColumnName = "bc";
- this.dataColumn37.DataType = typeof(int);
- //
- // dataColumn41
- //
- this.dataColumn41.ColumnName = "act_len";
- //
- // ug_rkinfo_p
- //
- this.ug_rkinfo_p.DataSource = this.ds_rkinfo_p;
- appearance14.BackColor = System.Drawing.SystemColors.Window;
- appearance14.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ug_rkinfo_p.DisplayLayout.Appearance = appearance14;
- ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn28.Header.VisiblePosition = 1;
- ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn29.Header.VisiblePosition = 2;
- ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn30.Header.VisiblePosition = 3;
- ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn31.Header.VisiblePosition = 4;
- ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn32.Header.VisiblePosition = 5;
- ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance48.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance48.BackHatchStyle = Infragistics.Win.BackHatchStyle.None;
- appearance48.TextHAlignAsString = "Right";
- ultraGridColumn33.CellAppearance = appearance48;
- ultraGridColumn33.Header.Caption = "总支数";
- ultraGridColumn33.Header.VisiblePosition = 6;
- ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance50.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance50.BackHatchStyle = Infragistics.Win.BackHatchStyle.None;
- appearance50.TextHAlignAsString = "Right";
- ultraGridColumn34.CellAppearance = appearance50;
- ultraGridColumn34.Header.Caption = "总重量";
- ultraGridColumn34.Header.VisiblePosition = 7;
- ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn35.Header.VisiblePosition = 8;
- ultraGridColumn36.Header.VisiblePosition = 9;
- ultraGridColumn36.Hidden = true;
- ultraGridColumn37.DataType = typeof(bool);
- ultraGridColumn37.DefaultCellValue = false;
- ultraGridColumn37.Header.Caption = "";
- ultraGridColumn37.Header.CheckBoxAlignment = Infragistics.Win.UltraWinGrid.HeaderCheckBoxAlignment.Center;
- ultraGridColumn37.Header.CheckBoxVisibility = Infragistics.Win.UltraWinGrid.HeaderCheckBoxVisibility.Always;
- ultraGridColumn37.Header.VisiblePosition = 0;
- ultraGridBand5.Columns.AddRange(new object[] {
- ultraGridColumn28,
- ultraGridColumn29,
- ultraGridColumn30,
- ultraGridColumn31,
- ultraGridColumn32,
- ultraGridColumn33,
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37});
- this.ug_rkinfo_p.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
- this.ug_rkinfo_p.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance17.TextHAlignAsString = "Left";
- this.ug_rkinfo_p.DisplayLayout.CaptionAppearance = appearance17;
- this.ug_rkinfo_p.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.True;
- appearance18.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance18.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance18.BorderColor = System.Drawing.SystemColors.Window;
- this.ug_rkinfo_p.DisplayLayout.GroupByBox.Appearance = appearance18;
- appearance19.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ug_rkinfo_p.DisplayLayout.GroupByBox.BandLabelAppearance = appearance19;
- this.ug_rkinfo_p.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ug_rkinfo_p.DisplayLayout.GroupByBox.Hidden = true;
- appearance20.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance20.BackColor2 = System.Drawing.SystemColors.Control;
- appearance20.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance20.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ug_rkinfo_p.DisplayLayout.GroupByBox.PromptAppearance = appearance20;
- this.ug_rkinfo_p.DisplayLayout.MaxColScrollRegions = 1;
- this.ug_rkinfo_p.DisplayLayout.MaxRowScrollRegions = 1;
- appearance21.BackColor = System.Drawing.SystemColors.Window;
- appearance21.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ug_rkinfo_p.DisplayLayout.Override.ActiveCellAppearance = appearance21;
- appearance22.BackColor = System.Drawing.SystemColors.Highlight;
- appearance22.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ug_rkinfo_p.DisplayLayout.Override.ActiveRowAppearance = appearance22;
- this.ug_rkinfo_p.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ug_rkinfo_p.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance23.BackColor = System.Drawing.SystemColors.Window;
- this.ug_rkinfo_p.DisplayLayout.Override.CardAreaAppearance = appearance23;
- appearance24.BorderColor = System.Drawing.Color.Silver;
- appearance24.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ug_rkinfo_p.DisplayLayout.Override.CellAppearance = appearance24;
- this.ug_rkinfo_p.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ug_rkinfo_p.DisplayLayout.Override.CellPadding = 0;
- appearance25.BackColor = System.Drawing.SystemColors.Control;
- appearance25.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance25.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance25.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance25.BorderColor = System.Drawing.SystemColors.Window;
- this.ug_rkinfo_p.DisplayLayout.Override.GroupByRowAppearance = appearance25;
- appearance26.TextHAlignAsString = "Left";
- this.ug_rkinfo_p.DisplayLayout.Override.HeaderAppearance = appearance26;
- this.ug_rkinfo_p.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ug_rkinfo_p.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance27.BackColor = System.Drawing.SystemColors.Window;
- appearance27.BorderColor = System.Drawing.Color.Silver;
- this.ug_rkinfo_p.DisplayLayout.Override.RowAppearance = appearance27;
- this.ug_rkinfo_p.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance28.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ug_rkinfo_p.DisplayLayout.Override.TemplateAddRowAppearance = appearance28;
- this.ug_rkinfo_p.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ug_rkinfo_p.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ug_rkinfo_p.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ug_rkinfo_p.Dock = System.Windows.Forms.DockStyle.Top;
- this.ug_rkinfo_p.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ug_rkinfo_p.Location = new System.Drawing.Point(0, 35);
- this.ug_rkinfo_p.Name = "ug_rkinfo_p";
- this.ug_rkinfo_p.Size = new System.Drawing.Size(1121, 350);
- this.ug_rkinfo_p.TabIndex = 3;
- this.ug_rkinfo_p.Text = "入库实绩";
- this.ug_rkinfo_p.AfterRowActivate += new System.EventHandler(this.ug_rkinfo_p_AfterRowActivate);
- this.ug_rkinfo_p.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ug_rkinfo_p_AfterSelectChange);
- this.ug_rkinfo_p.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ug_rkinfo_p_ClickCell);
- this.ug_rkinfo_p.Click += new System.EventHandler(this.ug_rkinfo_p_Click);
- //
- // ds_rkinfo_p
- //
- this.ds_rkinfo_p.DataSetName = "NewDataSet";
- this.ds_rkinfo_p.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable5});
- //
- // dataTable5
- //
- this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn27,
- this.dataColumn28,
- this.dataColumn29,
- this.dataColumn30,
- this.dataColumn31,
- this.dataColumn32,
- this.dataColumn33,
- this.dataColumn34,
- this.dataColumn39});
- this.dataTable5.TableName = "Table1";
- //
- // dataColumn27
- //
- this.dataColumn27.Caption = "操作流水";
- this.dataColumn27.ColumnName = "INSTOCK_DOC";
- //
- // dataColumn28
- //
- this.dataColumn28.Caption = "判定炉号";
- this.dataColumn28.ColumnName = "JUDGE_STOVE_NO";
- //
- // dataColumn29
- //
- this.dataColumn29.Caption = "钢种";
- this.dataColumn29.ColumnName = "GRADENAME";
- //
- // dataColumn30
- //
- this.dataColumn30.Caption = "采购合同号";
- this.dataColumn30.ColumnName = "ORDER_NO";
- //
- // dataColumn31
- //
- this.dataColumn31.Caption = "物料名称";
- this.dataColumn31.ColumnName = "MATERIAL_NAME";
- //
- // dataColumn32
- //
- this.dataColumn32.Caption = "支数";
- this.dataColumn32.ColumnName = "ACT_COUNT";
- this.dataColumn32.DataType = typeof(int);
- //
- // dataColumn33
- //
- this.dataColumn33.Caption = "重量";
- this.dataColumn33.ColumnName = "ACT_WEIGHT";
- this.dataColumn33.DataType = typeof(decimal);
- //
- // dataColumn34
- //
- this.dataColumn34.Caption = "操作时间";
- this.dataColumn34.ColumnName = "CREATE_TIME";
- //
- // dataColumn39
- //
- this.dataColumn39.ColumnName = "GPREQ_ID";
- //
- // ultraGroupBox4
- //
- this.ultraGroupBox4.Controls.Add(this.cb_supplier_cd);
- this.ultraGroupBox4.Controls.Add(this.cb_stock_cd);
- this.ultraGroupBox4.Controls.Add(this.ultraLabel6);
- this.ultraGroupBox4.Controls.Add(this.txt_stove_judgeno_cd);
- this.ultraGroupBox4.Controls.Add(this.ultraCheckEditor3);
- this.ultraGroupBox4.Controls.Add(this.txt_orderno_cd);
- this.ultraGroupBox4.Controls.Add(this.ultraCheckEditor1);
- this.ultraGroupBox4.Controls.Add(this.ultraCheckEditor2);
- this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox4.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox4.Name = "ultraGroupBox4";
- this.ultraGroupBox4.Size = new System.Drawing.Size(1121, 35);
- this.ultraGroupBox4.TabIndex = 1;
- this.ultraGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // cb_supplier_cd
- //
- this.cb_supplier_cd.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.cb_supplier_cd.Location = new System.Drawing.Point(633, 11);
- this.cb_supplier_cd.Name = "cb_supplier_cd";
- this.cb_supplier_cd.Size = new System.Drawing.Size(109, 21);
- this.cb_supplier_cd.TabIndex = 9;
- //
- // cb_stock_cd
- //
- this.cb_stock_cd.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.cb_stock_cd.Location = new System.Drawing.Point(41, 7);
- this.cb_stock_cd.Name = "cb_stock_cd";
- this.cb_stock_cd.Size = new System.Drawing.Size(114, 21);
- this.cb_stock_cd.TabIndex = 8;
- //
- // ultraLabel6
- //
- this.ultraLabel6.Location = new System.Drawing.Point(5, 11);
- this.ultraLabel6.Name = "ultraLabel6";
- this.ultraLabel6.Size = new System.Drawing.Size(33, 13);
- this.ultraLabel6.TabIndex = 7;
- this.ultraLabel6.Text = "仓库";
- //
- // txt_stove_judgeno_cd
- //
- this.txt_stove_judgeno_cd.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_stove_judgeno_cd.Enabled = false;
- this.txt_stove_judgeno_cd.Location = new System.Drawing.Point(453, 8);
- this.txt_stove_judgeno_cd.Name = "txt_stove_judgeno_cd";
- this.txt_stove_judgeno_cd.Size = new System.Drawing.Size(108, 21);
- this.txt_stove_judgeno_cd.TabIndex = 5;
- //
- // ultraCheckEditor3
- //
- this.ultraCheckEditor3.Location = new System.Drawing.Point(380, 9);
- this.ultraCheckEditor3.Name = "ultraCheckEditor3";
- this.ultraCheckEditor3.Size = new System.Drawing.Size(71, 20);
- this.ultraCheckEditor3.TabIndex = 4;
- this.ultraCheckEditor3.Text = "判定炉号";
- this.ultraCheckEditor3.CheckedChanged += new System.EventHandler(this.ultraCheckEditor3_CheckedChanged);
- //
- // txt_orderno_cd
- //
- this.txt_orderno_cd.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_orderno_cd.Enabled = false;
- this.txt_orderno_cd.Location = new System.Drawing.Point(225, 7);
- this.txt_orderno_cd.Name = "txt_orderno_cd";
- this.txt_orderno_cd.Size = new System.Drawing.Size(152, 21);
- this.txt_orderno_cd.TabIndex = 3;
- //
- // ultraCheckEditor1
- //
- this.ultraCheckEditor1.Location = new System.Drawing.Point(161, 8);
- this.ultraCheckEditor1.Name = "ultraCheckEditor1";
- this.ultraCheckEditor1.Size = new System.Drawing.Size(61, 20);
- this.ultraCheckEditor1.TabIndex = 2;
- this.ultraCheckEditor1.Text = "合同号";
- this.ultraCheckEditor1.CheckedChanged += new System.EventHandler(this.ultraCheckEditor1_CheckedChanged);
- //
- // ultraCheckEditor2
- //
- this.ultraCheckEditor2.Checked = true;
- this.ultraCheckEditor2.CheckState = System.Windows.Forms.CheckState.Checked;
- this.ultraCheckEditor2.Location = new System.Drawing.Point(575, 9);
- this.ultraCheckEditor2.Name = "ultraCheckEditor2";
- this.ultraCheckEditor2.Size = new System.Drawing.Size(61, 20);
- this.ultraCheckEditor2.TabIndex = 0;
- this.ultraCheckEditor2.Text = "供应商";
- //
- // ultraTabPageControl3
- //
- this.ultraTabPageControl3.Controls.Add(this.ug_wgpstockinfo);
- this.ultraTabPageControl3.Controls.Add(this.ultraGroupBox3);
- this.ultraTabPageControl3.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl3.Name = "ultraTabPageControl3";
- this.ultraTabPageControl3.Size = new System.Drawing.Size(1121, 539);
- //
- // ug_wgpstockinfo
- //
- this.ug_wgpstockinfo.DataSource = this.ds_stockinfo_qry;
- appearance49.BackColor = System.Drawing.SystemColors.Window;
- appearance49.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ug_wgpstockinfo.DisplayLayout.Appearance = appearance49;
- ultraGridColumn38.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn38.Header.Caption = "仓库";
- ultraGridColumn38.Header.VisiblePosition = 0;
- ultraGridColumn39.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn39.Header.Caption = "申请判定单号";
- ultraGridColumn39.Header.VisiblePosition = 2;
- ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn40.Header.Caption = "判定炉号";
- ultraGridColumn40.Header.VisiblePosition = 3;
- ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn41.Header.Caption = "物料名称";
- ultraGridColumn41.Header.VisiblePosition = 4;
- ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn42.Header.Caption = "钢种";
- ultraGridColumn42.Header.VisiblePosition = 5;
- ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn43.Header.Caption = "定尺长";
- ultraGridColumn43.Header.VisiblePosition = 6;
- ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance51.TextHAlignAsString = "Right";
- ultraGridColumn44.CellAppearance = appearance51;
- ultraGridColumn44.Header.Caption = "总数量";
- ultraGridColumn44.Header.VisiblePosition = 7;
- ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance52.TextHAlignAsString = "Right";
- ultraGridColumn45.CellAppearance = appearance52;
- ultraGridColumn45.Header.Caption = "总重量";
- ultraGridColumn45.Header.VisiblePosition = 8;
- ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn46.Header.Caption = "结炉状态";
- ultraGridColumn46.Header.VisiblePosition = 9;
- ultraGridColumn47.DataType = typeof(bool);
- ultraGridColumn47.DefaultCellValue = false;
- ultraGridColumn47.Header.Caption = "";
- ultraGridColumn47.Header.CheckBoxAlignment = Infragistics.Win.UltraWinGrid.HeaderCheckBoxAlignment.Center;
- ultraGridColumn47.Header.CheckBoxVisibility = Infragistics.Win.UltraWinGrid.HeaderCheckBoxVisibility.Always;
- ultraGridColumn47.Header.VisiblePosition = 1;
- ultraGridColumn47.Hidden = true;
- ultraGridBand6.Columns.AddRange(new object[] {
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41,
- ultraGridColumn42,
- ultraGridColumn43,
- ultraGridColumn44,
- ultraGridColumn45,
- ultraGridColumn46,
- ultraGridColumn47});
- this.ug_wgpstockinfo.DisplayLayout.BandsSerializer.Add(ultraGridBand6);
- this.ug_wgpstockinfo.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance95.TextHAlignAsString = "Left";
- this.ug_wgpstockinfo.DisplayLayout.CaptionAppearance = appearance95;
- this.ug_wgpstockinfo.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.True;
- appearance96.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance96.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance96.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance96.BorderColor = System.Drawing.SystemColors.Window;
- this.ug_wgpstockinfo.DisplayLayout.GroupByBox.Appearance = appearance96;
- appearance97.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ug_wgpstockinfo.DisplayLayout.GroupByBox.BandLabelAppearance = appearance97;
- this.ug_wgpstockinfo.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ug_wgpstockinfo.DisplayLayout.GroupByBox.Hidden = true;
- appearance98.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance98.BackColor2 = System.Drawing.SystemColors.Control;
- appearance98.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance98.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ug_wgpstockinfo.DisplayLayout.GroupByBox.PromptAppearance = appearance98;
- this.ug_wgpstockinfo.DisplayLayout.MaxColScrollRegions = 1;
- this.ug_wgpstockinfo.DisplayLayout.MaxRowScrollRegions = 1;
- appearance99.BackColor = System.Drawing.SystemColors.Window;
- appearance99.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ug_wgpstockinfo.DisplayLayout.Override.ActiveCellAppearance = appearance99;
- appearance100.BackColor = System.Drawing.SystemColors.Highlight;
- appearance100.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ug_wgpstockinfo.DisplayLayout.Override.ActiveRowAppearance = appearance100;
- this.ug_wgpstockinfo.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ug_wgpstockinfo.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance113.BackColor = System.Drawing.SystemColors.Window;
- this.ug_wgpstockinfo.DisplayLayout.Override.CardAreaAppearance = appearance113;
- appearance114.BorderColor = System.Drawing.Color.Silver;
- appearance114.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ug_wgpstockinfo.DisplayLayout.Override.CellAppearance = appearance114;
- this.ug_wgpstockinfo.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ug_wgpstockinfo.DisplayLayout.Override.CellPadding = 0;
- appearance115.BackColor = System.Drawing.SystemColors.Control;
- appearance115.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance115.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance115.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance115.BorderColor = System.Drawing.SystemColors.Window;
- this.ug_wgpstockinfo.DisplayLayout.Override.GroupByRowAppearance = appearance115;
- appearance116.TextHAlignAsString = "Left";
- this.ug_wgpstockinfo.DisplayLayout.Override.HeaderAppearance = appearance116;
- this.ug_wgpstockinfo.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ug_wgpstockinfo.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance117.BackColor = System.Drawing.SystemColors.Window;
- appearance117.BorderColor = System.Drawing.Color.Silver;
- this.ug_wgpstockinfo.DisplayLayout.Override.RowAppearance = appearance117;
- this.ug_wgpstockinfo.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance118.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ug_wgpstockinfo.DisplayLayout.Override.TemplateAddRowAppearance = appearance118;
- this.ug_wgpstockinfo.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ug_wgpstockinfo.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ug_wgpstockinfo.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ug_wgpstockinfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ug_wgpstockinfo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ug_wgpstockinfo.Location = new System.Drawing.Point(0, 35);
- this.ug_wgpstockinfo.Name = "ug_wgpstockinfo";
- this.ug_wgpstockinfo.Size = new System.Drawing.Size(1121, 504);
- this.ug_wgpstockinfo.TabIndex = 4;
- this.ug_wgpstockinfo.Text = "外购坯库存实绩";
- //
- // ds_stockinfo_qry
- //
- this.ds_stockinfo_qry.DataSetName = "NewDataSet";
- this.ds_stockinfo_qry.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable7});
- //
- // dataTable7
- //
- this.dataTable7.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn42,
- this.dataColumn43,
- this.dataColumn44,
- this.dataColumn45,
- this.dataColumn46,
- this.dataColumn47,
- this.dataColumn48,
- this.dataColumn49,
- this.dataColumn50});
- this.dataTable7.TableName = "Table1";
- //
- // dataColumn42
- //
- this.dataColumn42.ColumnName = "storage_name";
- //
- // dataColumn43
- //
- this.dataColumn43.ColumnName = "jugde_apply_code";
- //
- // dataColumn44
- //
- this.dataColumn44.ColumnName = "judge_stove_no";
- //
- // dataColumn45
- //
- this.dataColumn45.ColumnName = "material_name";
- //
- // dataColumn46
- //
- this.dataColumn46.ColumnName = "gradename";
- //
- // dataColumn47
- //
- this.dataColumn47.ColumnName = "fix_len";
- //
- // dataColumn48
- //
- this.dataColumn48.ColumnName = "act_count";
- //
- // dataColumn49
- //
- this.dataColumn49.ColumnName = "act_weight";
- //
- // dataColumn50
- //
- this.dataColumn50.ColumnName = "node_fur_flag";
- //
- // ultraGroupBox3
- //
- this.ultraGroupBox3.Controls.Add(this.cb_stock_jl);
- this.ultraGroupBox3.Controls.Add(this.ultraLabel8);
- this.ultraGroupBox3.Controls.Add(this.ultraLabel9);
- this.ultraGroupBox3.Controls.Add(this.txt_judge_stoveno_jl);
- this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox3.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox3.Name = "ultraGroupBox3";
- this.ultraGroupBox3.Size = new System.Drawing.Size(1121, 35);
- this.ultraGroupBox3.TabIndex = 2;
- this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // cb_stock_jl
- //
- this.cb_stock_jl.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.cb_stock_jl.Location = new System.Drawing.Point(39, 5);
- this.cb_stock_jl.Name = "cb_stock_jl";
- this.cb_stock_jl.Size = new System.Drawing.Size(114, 21);
- this.cb_stock_jl.TabIndex = 8;
- //
- // ultraLabel8
- //
- this.ultraLabel8.Location = new System.Drawing.Point(5, 7);
- this.ultraLabel8.Name = "ultraLabel8";
- this.ultraLabel8.Size = new System.Drawing.Size(33, 20);
- this.ultraLabel8.TabIndex = 7;
- this.ultraLabel8.Text = "仓库";
- //
- // ultraLabel9
- //
- this.ultraLabel9.Location = new System.Drawing.Point(156, 5);
- this.ultraLabel9.Name = "ultraLabel9";
- this.ultraLabel9.Size = new System.Drawing.Size(58, 23);
- this.ultraLabel9.TabIndex = 6;
- this.ultraLabel9.Text = "判定炉号";
- //
- // txt_judge_stoveno_jl
- //
- this.txt_judge_stoveno_jl.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_judge_stoveno_jl.Location = new System.Drawing.Point(218, 5);
- this.txt_judge_stoveno_jl.Name = "txt_judge_stoveno_jl";
- this.txt_judge_stoveno_jl.Size = new System.Drawing.Size(108, 21);
- this.txt_judge_stoveno_jl.TabIndex = 5;
- //
- // ds_stockinfo
- //
- this.ds_stockinfo.DataSetName = "NewDataSet";
- this.ds_stockinfo.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable4});
- //
- // dataTable4
- //
- this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn19,
- this.dataColumn20,
- this.dataColumn21,
- this.dataColumn22,
- this.dataColumn23,
- this.dataColumn24,
- this.dataColumn25,
- this.dataColumn26});
- this.dataTable4.TableName = "Table1";
- //
- // dataColumn19
- //
- this.dataColumn19.ColumnName = "炉号";
- //
- // dataColumn20
- //
- this.dataColumn20.ColumnName = "判定炉号";
- //
- // dataColumn21
- //
- this.dataColumn21.ColumnName = "支数";
- this.dataColumn21.DataType = typeof(int);
- //
- // dataColumn22
- //
- this.dataColumn22.ColumnName = "重量";
- this.dataColumn22.DataType = typeof(decimal);
- //
- // dataColumn23
- //
- this.dataColumn23.ColumnName = "断面";
- //
- // dataColumn24
- //
- this.dataColumn24.ColumnName = "倍尺";
- this.dataColumn24.DataType = typeof(int);
- //
- // dataColumn25
- //
- this.dataColumn25.ColumnName = "长度";
- this.dataColumn25.DataType = typeof(int);
- //
- // dataColumn26
- //
- this.dataColumn26.ColumnName = "钢种";
- //
- // tabC
- //
- this.tabC.Controls.Add(this.ultraTabSharedControlsPage1);
- this.tabC.Controls.Add(this.ultraTabPageControl1);
- this.tabC.Controls.Add(this.ultraTabPageControl2);
- this.tabC.Controls.Add(this.ultraTabPageControl3);
- this.tabC.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tabC.Location = new System.Drawing.Point(0, 0);
- this.tabC.Name = "tabC";
- this.tabC.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.tabC.Size = new System.Drawing.Size(1123, 562);
- this.tabC.TabIndex = 0;
- this.tabC.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.BottomLeft;
- ultraTab1.Key = "tab1";
- ultraTab1.TabPage = this.ultraTabPageControl1;
- ultraTab1.Text = "外购坯入库";
- ultraTab2.Key = "tab2";
- ultraTab2.TabPage = this.ultraTabPageControl2;
- ultraTab2.Text = "撤单";
- ultraTab3.Key = "tab3";
- ultraTab3.TabPage = this.ultraTabPageControl3;
- ultraTab3.Text = "撤结炉";
- this.tabC.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab1,
- ultraTab2,
- ultraTab3});
- this.tabC.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
- this.tabC.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.tabC_SelectedTabChanged);
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1121, 539);
- //
- // FrmCGpRk
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1123, 562);
- this.Controls.Add(this.tabC);
- this.Name = "FrmCGpRk";
- this.ShowIcon = false;
- this.Text = "外购坯入库";
- this.Load += new System.EventHandler(this.FrmCGpRk_Load);
- this.Shown += new System.EventHandler(this.FrmCGpRk_Shown);
- this.ultraTabPageControl1.ResumeLayout(false);
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
- this.splitContainer1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ug_orders)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ds_orders)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ug_rukinfo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ds_rukuinfo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
- this.ultraGroupBox2.ResumeLayout(false);
- this.ultraGroupBox2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_location)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ck_sglcode)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ck_jielu)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_stove_no)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_judge_stove_no)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cb_level)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_carno)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ug_dcyb)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ds_dcyb)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- this.ultraGroupBox1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cb_stock)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cb_supplier)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_orderno)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ck_orderno)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cb_location)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ck_supplier)).EndInit();
- this.ultraTabPageControl2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ug_rkinfo_c)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ds_rkinfo_c)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ug_rkinfo_p)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ds_rkinfo_p)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
- this.ultraGroupBox4.ResumeLayout(false);
- this.ultraGroupBox4.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cb_supplier_cd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cb_stock_cd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_stove_judgeno_cd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_orderno_cd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor2)).EndInit();
- this.ultraTabPageControl3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ug_wgpstockinfo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ds_stockinfo_qry)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
- this.ultraGroupBox3.ResumeLayout(false);
- this.ultraGroupBox3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cb_stock_jl)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_judge_stoveno_jl)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ds_stockinfo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.tabC)).EndInit();
- this.tabC.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private Infragistics.Win.UltraWinTabControl.UltraTabControl tabC;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
- private System.Windows.Forms.SplitContainer splitContainer1;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
- private Infragistics.Win.UltraWinGrid.UltraGrid ug_orders;
- private Infragistics.Win.UltraWinGrid.UltraGrid ug_dcyb;
- private System.Data.DataSet ds_orders;
- private System.Data.DataSet ds_dcyb;
- private System.Data.DataSet ds_rukuinfo;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor ck_supplier;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_orderno;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor ck_orderno;
- private System.Data.DataTable dataTable1;
- private System.Data.DataColumn dataColumn1;
- private System.Data.DataColumn dataColumn2;
- private System.Data.DataColumn dataColumn3;
- private System.Data.DataColumn dataColumn4;
- private System.Data.DataTable dataTable2;
- private System.Data.DataColumn dataColumn5;
- private System.Data.DataColumn dataColumn6;
- private System.Data.DataColumn dataColumn7;
- private System.Data.DataColumn dataColumn8;
- private System.Data.DataColumn dataColumn9;
- private System.Data.DataColumn dataColumn10;
- private System.Data.DataColumn dataColumn11;
- private System.Data.DataColumn dataColumn12;
- private System.Data.DataColumn dataColumn13;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_carno;
- private Infragistics.Win.Misc.UltraLabel lbl_carno;
- private System.Data.DataTable dataTable3;
- private System.Data.DataColumn dataColumn14;
- private System.Data.DataColumn dataColumn15;
- private System.Data.DataColumn dataColumn16;
- private System.Data.DataColumn dataColumn17;
- private System.Data.DataColumn dataColumn18;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor ck_sglcode;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_judge_stove_no;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_stove_no;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_orderno_cd;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor1;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor2;
- private Infragistics.Win.UltraWinGrid.UltraGrid ug_rkinfo_p;
- private System.Data.DataSet ds_stockinfo;
- private System.Data.DataTable dataTable4;
- private System.Data.DataColumn dataColumn19;
- private System.Data.DataColumn dataColumn20;
- 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.UltraWinEditors.UltraComboEditor cb_supplier;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cb_stock;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cb_level;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cb_location;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor ck_jielu;
- private Infragistics.Win.UltraWinGrid.UltraGrid ug_rkinfo_c;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_stove_judgeno_cd;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor3;
- private System.Data.DataSet ds_rkinfo_p;
- private System.Data.DataTable dataTable5;
- private System.Data.DataColumn dataColumn27;
- private System.Data.DataColumn dataColumn28;
- private System.Data.DataColumn dataColumn29;
- private System.Data.DataColumn dataColumn30;
- private System.Data.DataColumn dataColumn31;
- private System.Data.DataColumn dataColumn32;
- private System.Data.DataColumn dataColumn33;
- private System.Data.DataColumn dataColumn34;
- private System.Data.DataSet ds_rkinfo_c;
- private System.Data.DataTable dataTable6;
- private System.Data.DataColumn dataColumn35;
- private System.Data.DataColumn dataColumn36;
- private System.Data.DataColumn dataColumn37;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cb_stock_cd;
- private Infragistics.Win.Misc.UltraLabel ultraLabel6;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cb_supplier_cd;
- private System.Data.DataColumn dataColumn38;
- private System.Data.DataColumn dataColumn39;
- private System.Data.DataColumn dataColumn40;
- private System.Data.DataColumn dataColumn41;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_location;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cb_stock_jl;
- private Infragistics.Win.Misc.UltraLabel ultraLabel8;
- private Infragistics.Win.Misc.UltraLabel ultraLabel9;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_judge_stoveno_jl;
- private Infragistics.Win.UltraWinGrid.UltraGrid ug_wgpstockinfo;
- private System.Data.DataSet ds_stockinfo_qry;
- private System.Data.DataTable dataTable7;
- private System.Data.DataColumn dataColumn42;
- private System.Data.DataColumn dataColumn43;
- private System.Data.DataColumn dataColumn44;
- private System.Data.DataColumn dataColumn45;
- private System.Data.DataColumn dataColumn46;
- private System.Data.DataColumn dataColumn47;
- private System.Data.DataColumn dataColumn48;
- private System.Data.DataColumn dataColumn49;
- private System.Data.DataColumn dataColumn50;
- private System.Data.DataColumn dataColumn51;
- private System.Data.DataColumn dataColumn52;
- private System.Data.DataColumn dataColumn53;
- private Infragistics.Win.UltraWinGrid.UltraGrid ug_rukinfo;
- }
- }
|