| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574 |
- namespace StorageMeterSystem
- {
- partial class frmHotDeliveryActualQueryCheck
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnQuery");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnQuery");
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmHotDeliveryActualQueryCheck));
- Infragistics.Win.UltraWinToolbars.LabelTool labelTool9 = new Infragistics.Win.UltraWinToolbars.LabelTool("时间");
- Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool9 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool4");
- Infragistics.Win.UltraWinToolbars.LabelTool labelTool10 = new Infragistics.Win.UltraWinToolbars.LabelTool("-");
- Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool10 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool5");
- Infragistics.Win.UltraWinToolbars.LabelTool labelTool5 = new Infragistics.Win.UltraWinToolbars.LabelTool("计量点");
- Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool1");
- Infragistics.Win.UltraWinToolbars.LabelTool labelTool6 = new Infragistics.Win.UltraWinToolbars.LabelTool("预报状态");
- Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool2");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnCancel");
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnUnCancel");
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnPrintOne");
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnPrintSome");
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.LabelTool labelTool2 = new Infragistics.Win.UltraWinToolbars.LabelTool("批号");
- Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ControlContainerTool3");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnInsert");
- Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnUpdate");
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnCheck");
- Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("btnCheckOut");
- Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("计量实绩", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("actualNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("predictionNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("noticeNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("batchNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("memo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("valueFlag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createManNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createManName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateManNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateManName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("deleteManNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("deleteManName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("productNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("productName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("gradeNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("gradeName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("standardNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("standardName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("packageNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("blockNum");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("productDate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("sealNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("bucketNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("actualWeight");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("referWeight");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareWeight");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossWeight");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("combinPackageNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("weightType");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("checkFlag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netWeight");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("heatNoMes");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("heatNoSeq");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("heatNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterGroup");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterClass");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("theoreticalWeight");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("specNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("specName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("acDiffWeight");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNCK", 0);
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "blockNum", 20, true, "计量实绩", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "blockNum", 20, true);
- Infragistics.Win.Appearance appearance137 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "netWeight", 33, true, "计量实绩", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "netWeight", 33, true);
- Infragistics.Win.Appearance appearance138 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "grossWeight", 27, true, "计量实绩", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "grossWeight", 27, true);
- Infragistics.Win.Appearance appearance139 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings4 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "tareWeight", 26, true, "计量实绩", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "tareWeight", 26, true);
- Infragistics.Win.Appearance appearance140 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
- 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 appearance99 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance109 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance110 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance111 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance112 = 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.Appearance appearance119 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance120 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance121 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance122 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance123 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance124 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance125 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance126 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance127 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance128 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance129 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance130 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance131 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance132 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance133 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance134 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance135 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance136 = 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 appearance75 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance 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.Appearance appearance67 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance68 = 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.Appearance appearance46 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance 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 appearance89 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = 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 appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
- this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
- this.panel1 = new System.Windows.Forms.Panel();
- this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
- this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this.dataSet2 = 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.dataColumn9 = new System.Data.DataColumn();
- this.dataColumn4 = new System.Data.DataColumn();
- 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.dataColumn10 = new System.Data.DataColumn();
- this.dataColumn11 = new System.Data.DataColumn();
- this.dataColumn12 = new System.Data.DataColumn();
- this.dataColumn13 = new System.Data.DataColumn();
- this.dataColumn14 = new System.Data.DataColumn();
- this.dataColumn15 = new System.Data.DataColumn();
- this.dataColumn16 = new System.Data.DataColumn();
- this.dataColumn17 = new System.Data.DataColumn();
- this.dataColumn18 = new System.Data.DataColumn();
- 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.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.dataColumn35 = new System.Data.DataColumn();
- this.dataColumn36 = new System.Data.DataColumn();
- this.dataColumn37 = new System.Data.DataColumn();
- this.dataColumn38 = new System.Data.DataColumn();
- this.dataColumn39 = new System.Data.DataColumn();
- this.dataColumn40 = new System.Data.DataColumn();
- this.dataColumn41 = new System.Data.DataColumn();
- this.dataColumn42 = new System.Data.DataColumn();
- this.dataColumn43 = new System.Data.DataColumn();
- this.dtEndTime = new System.Windows.Forms.DateTimePicker();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.panel2 = new System.Windows.Forms.Panel();
- this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
- this.panel2Query = new System.Windows.Forms.Panel();
- this.cbAll = new System.Windows.Forms.CheckBox();
- this.ultraGridScale = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraGroupBoxEdit = new Infragistics.Win.Misc.UltraGroupBox();
- this.cmbMeterGroupUp = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.cmbMeterClassUp = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.label10 = new System.Windows.Forms.Label();
- this.tbMemo = new System.Windows.Forms.TextBox();
- this.label19 = new System.Windows.Forms.Label();
- this.numReferWeight = new System.Windows.Forms.NumericUpDown();
- this.numTareWeight = new System.Windows.Forms.NumericUpDown();
- this.numNetWeight = new System.Windows.Forms.NumericUpDown();
- this.tbPredictionNo = new System.Windows.Forms.TextBox();
- this.label18 = new System.Windows.Forms.Label();
- this.numCollectWeight = new System.Windows.Forms.NumericUpDown();
- this.label17 = new System.Windows.Forms.Label();
- this.label16 = new System.Windows.Forms.Label();
- this.label15 = new System.Windows.Forms.Label();
- this.label14 = new System.Windows.Forms.Label();
- this.label13 = new System.Windows.Forms.Label();
- this.tbBlockNumUp = new System.Windows.Forms.TextBox();
- this.label12 = new System.Windows.Forms.Label();
- this.tbPackageNoUp = new System.Windows.Forms.TextBox();
- this.label11 = new System.Windows.Forms.Label();
- this.tbTheoreticalWeightUp = new System.Windows.Forms.TextBox();
- this.label9 = new System.Windows.Forms.Label();
- this.cmbGradeNameUp = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.label8 = new System.Windows.Forms.Label();
- this.cmbSpcNameUp = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.label7 = new System.Windows.Forms.Label();
- this.tbHeatNoUp = new System.Windows.Forms.TextBox();
- this.label6 = new System.Windows.Forms.Label();
- this.cmbPointUp = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.label5 = new System.Windows.Forms.Label();
- this.ultraGroupBoxCondition = new Infragistics.Win.Misc.UltraGroupBox();
- this.ckFilter = new System.Windows.Forms.CheckBox();
- this.cmbCheckState = new System.Windows.Forms.TextBox();
- this.label24 = new System.Windows.Forms.Label();
- this.cmbMeterGroup = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.cmbGradeName = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.cmbMeterClass = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.label23 = new System.Windows.Forms.Label();
- this.label22 = new System.Windows.Forms.Label();
- this.cmbSpcName = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.label21 = new System.Windows.Forms.Label();
- this.label20 = new System.Windows.Forms.Label();
- this.cmbScaleState = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.dtStartTime = new System.Windows.Forms.DateTimePicker();
- this.label4 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.cmbPoint = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.label1 = new System.Windows.Forms.Label();
- this.dataColumn44 = new System.Data.DataColumn();
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- this.panel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
- this.ultraGroupBox4.SuspendLayout();
- this.panel2Query.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridScale)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBoxEdit)).BeginInit();
- this.ultraGroupBoxEdit.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cmbMeterGroupUp)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbMeterClassUp)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numReferWeight)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numTareWeight)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numNetWeight)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numCollectWeight)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbGradeNameUp)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbSpcNameUp)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbPointUp)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBoxCondition)).BeginInit();
- this.ultraGroupBoxCondition.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cmbMeterGroup)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbGradeName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbMeterClass)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbSpcName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbScaleState)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbPoint)).BeginInit();
- this.SuspendLayout();
- //
- // ultraToolbarsManager1
- //
- this.ultraToolbarsManager1.DesignerFlags = 1;
- this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
- this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
- this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
- ultraToolbar1.DockedColumn = 0;
- ultraToolbar1.DockedRow = 0;
- ultraToolbar1.FloatingLocation = new System.Drawing.Point(616, 345);
- ultraToolbar1.FloatingSize = new System.Drawing.Size(1240, 29);
- buttonTool5.InstanceProps.IsFirstInGroup = true;
- ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool5});
- ultraToolbar1.Text = "UltraToolbar1";
- this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
- ultraToolbar1});
- appearance25.Image = ((object)(resources.GetObject("appearance25.Image")));
- buttonTool7.SharedPropsInternal.AppearancesSmall.Appearance = appearance25;
- buttonTool7.SharedPropsInternal.Caption = "查询";
- buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- labelTool9.SharedPropsInternal.Caption = "预报时间";
- controlContainerTool9.SharedPropsInternal.Caption = "ControlContainerTool4";
- controlContainerTool9.SharedPropsInternal.Width = 198;
- labelTool10.SharedPropsInternal.Caption = "至";
- controlContainerTool10.SharedPropsInternal.Caption = "ControlContainerTool5";
- controlContainerTool10.SharedPropsInternal.Width = 200;
- labelTool5.SharedPropsInternal.Caption = "计量点";
- controlContainerTool5.SharedPropsInternal.Caption = "ControlContainerTool1";
- labelTool6.SharedPropsInternal.Caption = "预报状态";
- controlContainerTool6.SharedPropsInternal.Caption = "ControlContainerTool2";
- controlContainerTool6.SharedPropsInternal.Width = 190;
- appearance18.Image = ((object)(resources.GetObject("appearance18.Image")));
- buttonTool3.SharedPropsInternal.AppearancesSmall.Appearance = appearance18;
- buttonTool3.SharedPropsInternal.Caption = "作废";
- buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance19.Image = ((object)(resources.GetObject("appearance19.Image")));
- buttonTool4.SharedPropsInternal.AppearancesSmall.Appearance = appearance19;
- buttonTool4.SharedPropsInternal.Caption = "恢复";
- buttonTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance20.Image = ((object)(resources.GetObject("appearance20.Image")));
- buttonTool9.SharedPropsInternal.AppearancesSmall.Appearance = appearance20;
- buttonTool9.SharedPropsInternal.Caption = "单桶打印";
- buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance21.Image = ((object)(resources.GetObject("appearance21.Image")));
- buttonTool10.SharedPropsInternal.AppearancesSmall.Appearance = appearance21;
- buttonTool10.SharedPropsInternal.Caption = "打印";
- buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- labelTool2.SharedPropsInternal.Caption = "批号";
- controlContainerTool4.SharedPropsInternal.Caption = "ControlContainerTool3";
- appearance36.Image = ((object)(resources.GetObject("appearance36.Image")));
- buttonTool8.SharedPropsInternal.AppearancesSmall.Appearance = appearance36;
- buttonTool8.SharedPropsInternal.Caption = "新增";
- buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance37.Image = ((object)(resources.GetObject("appearance37.Image")));
- buttonTool12.SharedPropsInternal.AppearancesSmall.Appearance = appearance37;
- buttonTool12.SharedPropsInternal.Caption = "修改";
- buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance93.Image = ((object)(resources.GetObject("appearance93.Image")));
- buttonTool14.SharedPropsInternal.AppearancesSmall.Appearance = appearance93;
- buttonTool14.SharedPropsInternal.Caption = "审核";
- buttonTool14.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance98.Image = ((object)(resources.GetObject("appearance98.Image")));
- buttonTool16.SharedPropsInternal.AppearancesSmall.Appearance = appearance98;
- buttonTool16.SharedPropsInternal.Caption = "反审";
- buttonTool16.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool7,
- labelTool9,
- controlContainerTool9,
- labelTool10,
- controlContainerTool10,
- labelTool5,
- controlContainerTool5,
- labelTool6,
- controlContainerTool6,
- buttonTool3,
- buttonTool4,
- buttonTool9,
- buttonTool10,
- labelTool2,
- controlContainerTool4,
- buttonTool8,
- buttonTool12,
- buttonTool14,
- buttonTool16});
- this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
- //
- // panel1
- //
- this.panel1.Controls.Add(this.panel1_Fill_Panel);
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel1.Location = new System.Drawing.Point(3, 0);
- this.panel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1936, 38);
- this.panel1.TabIndex = 0;
- //
- // panel1_Fill_Panel
- //
- this.panel1_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
- this.panel1_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel1_Fill_Panel.Location = new System.Drawing.Point(0, 31);
- this.panel1_Fill_Panel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
- this.panel1_Fill_Panel.Size = new System.Drawing.Size(1936, 7);
- this.panel1_Fill_Panel.TabIndex = 0;
- //
- // _panel1_Toolbars_Dock_Area_Left
- //
- this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
- this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
- this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 31);
- this._panel1_Toolbars_Dock_Area_Left.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
- this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 7);
- this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _panel1_Toolbars_Dock_Area_Right
- //
- this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
- this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
- this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1936, 31);
- this._panel1_Toolbars_Dock_Area_Right.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
- this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 7);
- this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _panel1_Toolbars_Dock_Area_Top
- //
- this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
- this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
- this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
- this._panel1_Toolbars_Dock_Area_Top.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
- this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1936, 31);
- this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _panel1_Toolbars_Dock_Area_Bottom
- //
- this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
- this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
- this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 38);
- this._panel1_Toolbars_Dock_Area_Bottom.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
- this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1936, 0);
- this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // dataSet2
- //
- this.dataSet2.DataSetName = "NewDataSet";
- this.dataSet2.Locale = new System.Globalization.CultureInfo("zh-CN");
- this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable1});
- //
- // dataTable1
- //
- this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn1,
- this.dataColumn2,
- this.dataColumn3,
- this.dataColumn9,
- this.dataColumn4,
- this.dataColumn5,
- this.dataColumn6,
- this.dataColumn7,
- this.dataColumn8,
- this.dataColumn10,
- this.dataColumn11,
- this.dataColumn12,
- this.dataColumn13,
- this.dataColumn14,
- this.dataColumn15,
- this.dataColumn16,
- this.dataColumn17,
- this.dataColumn18,
- this.dataColumn19,
- this.dataColumn20,
- this.dataColumn21,
- this.dataColumn22,
- this.dataColumn23,
- this.dataColumn24,
- this.dataColumn25,
- this.dataColumn26,
- this.dataColumn27,
- this.dataColumn28,
- this.dataColumn29,
- this.dataColumn30,
- this.dataColumn31,
- this.dataColumn32,
- this.dataColumn33,
- this.dataColumn34,
- this.dataColumn35,
- this.dataColumn36,
- this.dataColumn37,
- this.dataColumn38,
- this.dataColumn39,
- this.dataColumn40,
- this.dataColumn41,
- this.dataColumn42,
- this.dataColumn43,
- this.dataColumn44});
- this.dataTable1.TableName = "计量实绩";
- //
- // dataColumn1
- //
- this.dataColumn1.Caption = "实绩编号";
- this.dataColumn1.ColumnName = "actualNo";
- //
- // dataColumn2
- //
- this.dataColumn2.Caption = "预报编号";
- this.dataColumn2.ColumnName = "predictionNo";
- //
- // dataColumn3
- //
- this.dataColumn3.Caption = "通知单号";
- this.dataColumn3.ColumnName = "noticeNo";
- //
- // dataColumn9
- //
- this.dataColumn9.Caption = "批号";
- this.dataColumn9.ColumnName = "batchNo";
- //
- // dataColumn4
- //
- this.dataColumn4.Caption = "备注";
- this.dataColumn4.ColumnName = "memo";
- //
- // dataColumn5
- //
- this.dataColumn5.Caption = "数据状态";
- this.dataColumn5.ColumnName = "valueFlag";
- //
- // dataColumn6
- //
- this.dataColumn6.Caption = "创建人编号";
- this.dataColumn6.ColumnName = "createManNo";
- //
- // dataColumn7
- //
- this.dataColumn7.Caption = "司秤工";
- this.dataColumn7.ColumnName = "createManName";
- //
- // dataColumn8
- //
- this.dataColumn8.Caption = "过磅时间";
- this.dataColumn8.ColumnName = "createTime";
- //
- // dataColumn10
- //
- this.dataColumn10.Caption = "修改人编号";
- this.dataColumn10.ColumnName = "updateManNo";
- //
- // dataColumn11
- //
- this.dataColumn11.Caption = "修改人";
- this.dataColumn11.ColumnName = "updateManName";
- //
- // dataColumn12
- //
- this.dataColumn12.Caption = "删除人编号";
- this.dataColumn12.ColumnName = "deleteManNo";
- //
- // dataColumn13
- //
- this.dataColumn13.Caption = "删除人";
- this.dataColumn13.ColumnName = "deleteManName";
- //
- // dataColumn14
- //
- this.dataColumn14.Caption = "产品编号";
- this.dataColumn14.ColumnName = "productNo";
- //
- // dataColumn15
- //
- this.dataColumn15.Caption = "产品名称";
- this.dataColumn15.ColumnName = "productName";
- //
- // dataColumn16
- //
- this.dataColumn16.Caption = "钢号编码";
- this.dataColumn16.ColumnName = "gradeNo";
- //
- // dataColumn17
- //
- this.dataColumn17.Caption = "钢种";
- this.dataColumn17.ColumnName = "gradeName";
- //
- // dataColumn18
- //
- this.dataColumn18.Caption = "标准编号";
- this.dataColumn18.ColumnName = "standardNo";
- //
- // dataColumn19
- //
- this.dataColumn19.Caption = "标准";
- this.dataColumn19.ColumnName = "standardName";
- //
- // dataColumn20
- //
- this.dataColumn20.Caption = "顺序号";
- this.dataColumn20.ColumnName = "packageNo";
- //
- // dataColumn21
- //
- this.dataColumn21.Caption = "支数";
- this.dataColumn21.ColumnName = "blockNum";
- //
- // dataColumn22
- //
- this.dataColumn22.Caption = "生产日期";
- this.dataColumn22.ColumnName = "productDate";
- //
- // dataColumn23
- //
- this.dataColumn23.Caption = "铅封号";
- this.dataColumn23.ColumnName = "sealNo";
- //
- // dataColumn24
- //
- this.dataColumn24.Caption = "桶号";
- this.dataColumn24.ColumnName = "bucketNo";
- //
- // dataColumn25
- //
- this.dataColumn25.Caption = "净重";
- this.dataColumn25.ColumnName = "actualWeight";
- //
- // dataColumn26
- //
- this.dataColumn26.Caption = "仪表底数";
- this.dataColumn26.ColumnName = "referWeight";
- //
- // dataColumn27
- //
- this.dataColumn27.Caption = "零点重量";
- this.dataColumn27.ColumnName = "tareWeight";
- //
- // dataColumn28
- //
- this.dataColumn28.Caption = "毛重";
- this.dataColumn28.ColumnName = "grossWeight";
- //
- // dataColumn29
- //
- this.dataColumn29.Caption = "重量组合包号";
- this.dataColumn29.ColumnName = "combinPackageNo";
- //
- // dataColumn30
- //
- this.dataColumn30.Caption = "重量类型";
- this.dataColumn30.ColumnName = "weightType";
- //
- // dataColumn31
- //
- this.dataColumn31.Caption = "审核状态";
- this.dataColumn31.ColumnName = "checkFlag";
- //
- // dataColumn32
- //
- this.dataColumn32.Caption = "计量点编号";
- this.dataColumn32.ColumnName = "baseSpotNo";
- //
- // dataColumn33
- //
- this.dataColumn33.Caption = "计量点";
- this.dataColumn33.ColumnName = "baseSpotName";
- //
- // dataColumn34
- //
- this.dataColumn34.Caption = "净重";
- this.dataColumn34.ColumnName = "netWeight";
- //
- // dataColumn35
- //
- this.dataColumn35.Caption = "修改时间";
- this.dataColumn35.ColumnName = "updateTime";
- //
- // dataColumn36
- //
- this.dataColumn36.Caption = "MES炉号";
- this.dataColumn36.ColumnName = "heatNoMes";
- //
- // dataColumn37
- //
- this.dataColumn37.Caption = "顺序炉号";
- this.dataColumn37.ColumnName = "heatNoSeq";
- //
- // dataColumn38
- //
- this.dataColumn38.Caption = "炉号";
- this.dataColumn38.ColumnName = "heatNo";
- //
- // dataColumn39
- //
- this.dataColumn39.Caption = "班组";
- this.dataColumn39.ColumnName = "meterGroup";
- //
- // dataColumn40
- //
- this.dataColumn40.Caption = "班次";
- this.dataColumn40.ColumnName = "meterClass";
- //
- // dataColumn41
- //
- this.dataColumn41.Caption = "理论重量";
- this.dataColumn41.ColumnName = "theoreticalWeight";
- //
- // dataColumn42
- //
- this.dataColumn42.Caption = "规格编号";
- this.dataColumn42.ColumnName = "specNo";
- //
- // dataColumn43
- //
- this.dataColumn43.Caption = "规格";
- this.dataColumn43.ColumnName = "specName";
- //
- // dtEndTime
- //
- this.dtEndTime.Cursor = System.Windows.Forms.Cursors.Default;
- this.dtEndTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
- this.dtEndTime.Font = new System.Drawing.Font("宋体", 12F);
- this.dtEndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtEndTime.Location = new System.Drawing.Point(415, 25);
- this.dtEndTime.Margin = new System.Windows.Forms.Padding(0, 6, 0, 0);
- this.dtEndTime.MaxDate = new System.DateTime(3000, 12, 31, 0, 0, 0, 0);
- this.dtEndTime.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
- this.dtEndTime.Name = "dtEndTime";
- this.dtEndTime.Size = new System.Drawing.Size(265, 30);
- this.dtEndTime.TabIndex = 107;
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.panel2);
- this.ultraGroupBox1.Controls.Add(this.panel1);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(1942, 882);
- this.ultraGroupBox1.TabIndex = 0;
- this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // panel2
- //
- this.panel2.Controls.Add(this.ultraGroupBox4);
- this.panel2.Controls.Add(this.ultraGroupBoxEdit);
- this.panel2.Controls.Add(this.ultraGroupBoxCondition);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel2.Location = new System.Drawing.Point(3, 38);
- this.panel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(1936, 841);
- this.panel2.TabIndex = 1;
- //
- // ultraGroupBox4
- //
- this.ultraGroupBox4.Controls.Add(this.panel2Query);
- this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox4.Location = new System.Drawing.Point(0, 115);
- this.ultraGroupBox4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraGroupBox4.Name = "ultraGroupBox4";
- this.ultraGroupBox4.Size = new System.Drawing.Size(1936, 435);
- this.ultraGroupBox4.TabIndex = 2;
- this.ultraGroupBox4.Text = "实绩数据展示区域";
- this.ultraGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // panel2Query
- //
- this.panel2Query.Controls.Add(this.cbAll);
- this.panel2Query.Controls.Add(this.ultraGridScale);
- this.panel2Query.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel2Query.Location = new System.Drawing.Point(3, 21);
- this.panel2Query.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.panel2Query.Name = "panel2Query";
- this.panel2Query.Size = new System.Drawing.Size(1930, 411);
- this.panel2Query.TabIndex = 3;
- //
- // cbAll
- //
- this.cbAll.AutoSize = true;
- this.cbAll.Location = new System.Drawing.Point(93, 9);
- this.cbAll.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.cbAll.Name = "cbAll";
- this.cbAll.Size = new System.Drawing.Size(18, 17);
- this.cbAll.TabIndex = 1;
- this.cbAll.UseVisualStyleBackColor = true;
- this.cbAll.CheckedChanged += new System.EventHandler(this.cbAll_CheckedChanged);
- //
- // ultraGridScale
- //
- this.ultraGridScale.DataMember = "计量实绩";
- this.ultraGridScale.DataSource = this.dataSet2;
- ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn3.Header.VisiblePosition = 2;
- ultraGridColumn3.Hidden = true;
- ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn4.Header.VisiblePosition = 3;
- ultraGridColumn4.Hidden = true;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn5.Header.VisiblePosition = 4;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 46;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn6.Header.VisiblePosition = 5;
- ultraGridColumn6.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn7.Header.VisiblePosition = 6;
- ultraGridColumn7.Hidden = true;
- ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn8.Header.VisiblePosition = 7;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 38;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn9.Header.VisiblePosition = 8;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 40;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn10.Header.VisiblePosition = 9;
- ultraGridColumn10.Hidden = true;
- ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn11.Header.VisiblePosition = 10;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 42;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn12.Header.VisiblePosition = 11;
- ultraGridColumn12.Hidden = true;
- ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn13.Header.VisiblePosition = 12;
- ultraGridColumn13.Hidden = true;
- ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn14.Header.VisiblePosition = 13;
- ultraGridColumn14.Hidden = true;
- ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn15.Header.VisiblePosition = 14;
- ultraGridColumn15.Hidden = true;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn16.Header.VisiblePosition = 15;
- ultraGridColumn16.Hidden = true;
- ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn17.Header.VisiblePosition = 16;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn18.Header.VisiblePosition = 17;
- ultraGridColumn18.Hidden = true;
- ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn19.Header.VisiblePosition = 18;
- ultraGridColumn19.Hidden = true;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn20.Header.VisiblePosition = 19;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn21.Header.VisiblePosition = 20;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn22.Header.VisiblePosition = 21;
- ultraGridColumn22.Hidden = true;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 34;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn23.Header.VisiblePosition = 22;
- ultraGridColumn23.Hidden = true;
- ultraGridColumn23.RowLayoutColumnInfo.OriginX = 28;
- ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn24.Header.VisiblePosition = 23;
- ultraGridColumn24.Hidden = true;
- ultraGridColumn24.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn25.Header.VisiblePosition = 24;
- ultraGridColumn25.RowLayoutColumnInfo.OriginX = 32;
- ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn26.Header.VisiblePosition = 25;
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 30;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn27.Header.VisiblePosition = 26;
- ultraGridColumn27.RowLayoutColumnInfo.OriginX = 28;
- ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn28.Header.VisiblePosition = 27;
- ultraGridColumn28.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn29.Header.VisiblePosition = 28;
- ultraGridColumn29.Hidden = true;
- ultraGridColumn29.RowLayoutColumnInfo.OriginX = 30;
- ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn30.Header.VisiblePosition = 29;
- ultraGridColumn30.Hidden = true;
- ultraGridColumn30.RowLayoutColumnInfo.OriginX = 36;
- ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn31.Header.VisiblePosition = 30;
- ultraGridColumn31.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn32.Header.VisiblePosition = 31;
- ultraGridColumn32.Hidden = true;
- ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn33.Header.VisiblePosition = 32;
- ultraGridColumn33.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn34.Header.VisiblePosition = 33;
- ultraGridColumn34.Hidden = true;
- ultraGridColumn34.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn35.Header.VisiblePosition = 34;
- ultraGridColumn35.RowLayoutColumnInfo.OriginX = 44;
- ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn36.Header.VisiblePosition = 35;
- ultraGridColumn36.Hidden = true;
- ultraGridColumn36.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn37.Header.VisiblePosition = 36;
- ultraGridColumn37.Hidden = true;
- ultraGridColumn37.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn38.Header.VisiblePosition = 37;
- ultraGridColumn38.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn39.Header.VisiblePosition = 38;
- ultraGridColumn39.RowLayoutColumnInfo.OriginX = 36;
- ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn40.Header.VisiblePosition = 39;
- ultraGridColumn40.RowLayoutColumnInfo.OriginX = 34;
- ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn41.Header.VisiblePosition = 40;
- ultraGridColumn41.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn42.Header.VisiblePosition = 41;
- ultraGridColumn42.Hidden = true;
- ultraGridColumn43.Header.VisiblePosition = 42;
- ultraGridColumn43.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn44.Header.VisiblePosition = 43;
- ultraGridColumn44.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn45.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.Edit;
- ultraGridColumn45.DataType = typeof(bool);
- ultraGridColumn45.DefaultCellValue = false;
- ultraGridColumn45.Header.Caption = "选择";
- ultraGridColumn45.Header.VisiblePosition = 44;
- ultraGridColumn45.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(41, 0);
- ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn45.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8,
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20,
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23,
- ultraGridColumn24,
- ultraGridColumn25,
- ultraGridColumn26,
- ultraGridColumn27,
- ultraGridColumn28,
- ultraGridColumn29,
- ultraGridColumn30,
- ultraGridColumn31,
- ultraGridColumn32,
- ultraGridColumn33,
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41,
- ultraGridColumn42,
- ultraGridColumn43,
- ultraGridColumn44,
- ultraGridColumn45});
- ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
- summarySettings1.DisplayFormat = "{0}";
- summarySettings1.GroupBySummaryValueAppearance = appearance137;
- summarySettings1.SummaryDisplayArea = ((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas)((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.Bottom | Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed)));
- summarySettings2.DisplayFormat = "{0}";
- summarySettings2.GroupBySummaryValueAppearance = appearance138;
- summarySettings2.SummaryDisplayArea = ((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas)((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.Bottom | Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed)));
- summarySettings3.DisplayFormat = "{0}";
- summarySettings3.GroupBySummaryValueAppearance = appearance139;
- summarySettings3.SummaryDisplayArea = ((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas)((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.Bottom | Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed)));
- summarySettings4.DisplayFormat = "{0}";
- summarySettings4.GroupBySummaryValueAppearance = appearance140;
- summarySettings4.SummaryDisplayArea = ((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas)((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.Bottom | Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed)));
- ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
- summarySettings1,
- summarySettings2,
- summarySettings3,
- summarySettings4});
- ultraGridBand1.SummaryFooterCaption = "合计";
- this.ultraGridScale.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGridScale.DisplayLayout.DefaultSelectedBackColor = System.Drawing.Color.Empty;
- this.ultraGridScale.DisplayLayout.DefaultSelectedForeColor = System.Drawing.Color.Empty;
- this.ultraGridScale.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Button3D;
- appearance13.TextVAlignAsString = "Middle";
- this.ultraGridScale.DisplayLayout.Override.CellAppearance = appearance13;
- this.ultraGridScale.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
- appearance14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- appearance14.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- this.ultraGridScale.DisplayLayout.Override.HeaderAppearance = appearance14;
- this.ultraGridScale.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- this.ultraGridScale.DisplayLayout.Override.MaxSelectedRows = 1;
- this.ultraGridScale.DisplayLayout.Override.MinRowHeight = 21;
- appearance15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- appearance15.TextVAlignAsString = "Middle";
- this.ultraGridScale.DisplayLayout.Override.RowSelectorAppearance = appearance15;
- this.ultraGridScale.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ultraGridScale.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ultraGridScale.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- this.ultraGridScale.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGridScale.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGridScale.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGridScale.Location = new System.Drawing.Point(0, 0);
- this.ultraGridScale.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraGridScale.Name = "ultraGridScale";
- this.ultraGridScale.Size = new System.Drawing.Size(1930, 411);
- this.ultraGridScale.TabIndex = 6;
- this.ultraGridScale.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGridScale_ClickCell);
- //
- // ultraGroupBoxEdit
- //
- this.ultraGroupBoxEdit.Controls.Add(this.cmbMeterGroupUp);
- this.ultraGroupBoxEdit.Controls.Add(this.cmbMeterClassUp);
- this.ultraGroupBoxEdit.Controls.Add(this.label10);
- this.ultraGroupBoxEdit.Controls.Add(this.tbMemo);
- this.ultraGroupBoxEdit.Controls.Add(this.label19);
- this.ultraGroupBoxEdit.Controls.Add(this.numReferWeight);
- this.ultraGroupBoxEdit.Controls.Add(this.numTareWeight);
- this.ultraGroupBoxEdit.Controls.Add(this.numNetWeight);
- this.ultraGroupBoxEdit.Controls.Add(this.tbPredictionNo);
- this.ultraGroupBoxEdit.Controls.Add(this.label18);
- this.ultraGroupBoxEdit.Controls.Add(this.numCollectWeight);
- this.ultraGroupBoxEdit.Controls.Add(this.label17);
- this.ultraGroupBoxEdit.Controls.Add(this.label16);
- this.ultraGroupBoxEdit.Controls.Add(this.label15);
- this.ultraGroupBoxEdit.Controls.Add(this.label14);
- this.ultraGroupBoxEdit.Controls.Add(this.label13);
- this.ultraGroupBoxEdit.Controls.Add(this.tbBlockNumUp);
- this.ultraGroupBoxEdit.Controls.Add(this.label12);
- this.ultraGroupBoxEdit.Controls.Add(this.tbPackageNoUp);
- this.ultraGroupBoxEdit.Controls.Add(this.label11);
- this.ultraGroupBoxEdit.Controls.Add(this.tbTheoreticalWeightUp);
- this.ultraGroupBoxEdit.Controls.Add(this.label9);
- this.ultraGroupBoxEdit.Controls.Add(this.cmbGradeNameUp);
- this.ultraGroupBoxEdit.Controls.Add(this.label8);
- this.ultraGroupBoxEdit.Controls.Add(this.cmbSpcNameUp);
- this.ultraGroupBoxEdit.Controls.Add(this.label7);
- this.ultraGroupBoxEdit.Controls.Add(this.tbHeatNoUp);
- this.ultraGroupBoxEdit.Controls.Add(this.label6);
- this.ultraGroupBoxEdit.Controls.Add(this.cmbPointUp);
- this.ultraGroupBoxEdit.Controls.Add(this.label5);
- this.ultraGroupBoxEdit.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraGroupBoxEdit.Location = new System.Drawing.Point(0, 550);
- this.ultraGroupBoxEdit.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraGroupBoxEdit.Name = "ultraGroupBoxEdit";
- this.ultraGroupBoxEdit.Size = new System.Drawing.Size(1936, 291);
- this.ultraGroupBoxEdit.TabIndex = 1;
- this.ultraGroupBoxEdit.Text = "实绩编辑区域";
- this.ultraGroupBoxEdit.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // cmbMeterGroupUp
- //
- this.cmbMeterGroupUp.CheckedListSettings.CheckStateMember = "";
- appearance34.BackColor = System.Drawing.SystemColors.Window;
- appearance34.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmbMeterGroupUp.DisplayLayout.Appearance = appearance34;
- this.cmbMeterGroupUp.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmbMeterGroupUp.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- 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.cmbMeterGroupUp.DisplayLayout.GroupByBox.Appearance = appearance35;
- appearance38.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbMeterGroupUp.DisplayLayout.GroupByBox.BandLabelAppearance = appearance38;
- this.cmbMeterGroupUp.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance39.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance39.BackColor2 = System.Drawing.SystemColors.Control;
- appearance39.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance39.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbMeterGroupUp.DisplayLayout.GroupByBox.PromptAppearance = appearance39;
- this.cmbMeterGroupUp.DisplayLayout.MaxColScrollRegions = 1;
- this.cmbMeterGroupUp.DisplayLayout.MaxRowScrollRegions = 1;
- appearance52.BackColor = System.Drawing.SystemColors.Window;
- appearance52.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmbMeterGroupUp.DisplayLayout.Override.ActiveCellAppearance = appearance52;
- appearance53.BackColor = System.Drawing.SystemColors.Highlight;
- appearance53.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmbMeterGroupUp.DisplayLayout.Override.ActiveRowAppearance = appearance53;
- this.cmbMeterGroupUp.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmbMeterGroupUp.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance94.BackColor = System.Drawing.SystemColors.Window;
- this.cmbMeterGroupUp.DisplayLayout.Override.CardAreaAppearance = appearance94;
- appearance95.BorderColor = System.Drawing.Color.Silver;
- appearance95.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmbMeterGroupUp.DisplayLayout.Override.CellAppearance = appearance95;
- this.cmbMeterGroupUp.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmbMeterGroupUp.DisplayLayout.Override.CellPadding = 0;
- appearance96.BackColor = System.Drawing.SystemColors.Control;
- appearance96.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance96.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance96.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance96.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbMeterGroupUp.DisplayLayout.Override.GroupByRowAppearance = appearance96;
- appearance97.TextHAlignAsString = "Left";
- this.cmbMeterGroupUp.DisplayLayout.Override.HeaderAppearance = appearance97;
- this.cmbMeterGroupUp.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmbMeterGroupUp.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance99.BackColor = System.Drawing.SystemColors.Window;
- appearance99.BorderColor = System.Drawing.Color.Silver;
- this.cmbMeterGroupUp.DisplayLayout.Override.RowAppearance = appearance99;
- this.cmbMeterGroupUp.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance100.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmbMeterGroupUp.DisplayLayout.Override.TemplateAddRowAppearance = appearance100;
- this.cmbMeterGroupUp.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmbMeterGroupUp.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmbMeterGroupUp.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmbMeterGroupUp.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbMeterGroupUp.Location = new System.Drawing.Point(629, 99);
- this.cmbMeterGroupUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.cmbMeterGroupUp.Name = "cmbMeterGroupUp";
- this.cmbMeterGroupUp.Size = new System.Drawing.Size(93, 35);
- this.cmbMeterGroupUp.TabIndex = 145;
- //
- // cmbMeterClassUp
- //
- this.cmbMeterClassUp.CheckedListSettings.CheckStateMember = "";
- appearance101.BackColor = System.Drawing.SystemColors.Window;
- appearance101.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmbMeterClassUp.DisplayLayout.Appearance = appearance101;
- this.cmbMeterClassUp.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmbMeterClassUp.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance102.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance102.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance102.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance102.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbMeterClassUp.DisplayLayout.GroupByBox.Appearance = appearance102;
- appearance103.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbMeterClassUp.DisplayLayout.GroupByBox.BandLabelAppearance = appearance103;
- this.cmbMeterClassUp.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance104.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance104.BackColor2 = System.Drawing.SystemColors.Control;
- appearance104.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance104.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbMeterClassUp.DisplayLayout.GroupByBox.PromptAppearance = appearance104;
- this.cmbMeterClassUp.DisplayLayout.MaxColScrollRegions = 1;
- this.cmbMeterClassUp.DisplayLayout.MaxRowScrollRegions = 1;
- appearance105.BackColor = System.Drawing.SystemColors.Window;
- appearance105.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmbMeterClassUp.DisplayLayout.Override.ActiveCellAppearance = appearance105;
- appearance106.BackColor = System.Drawing.SystemColors.Highlight;
- appearance106.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmbMeterClassUp.DisplayLayout.Override.ActiveRowAppearance = appearance106;
- this.cmbMeterClassUp.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmbMeterClassUp.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance107.BackColor = System.Drawing.SystemColors.Window;
- this.cmbMeterClassUp.DisplayLayout.Override.CardAreaAppearance = appearance107;
- appearance108.BorderColor = System.Drawing.Color.Silver;
- appearance108.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmbMeterClassUp.DisplayLayout.Override.CellAppearance = appearance108;
- this.cmbMeterClassUp.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmbMeterClassUp.DisplayLayout.Override.CellPadding = 0;
- appearance109.BackColor = System.Drawing.SystemColors.Control;
- appearance109.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance109.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance109.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance109.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbMeterClassUp.DisplayLayout.Override.GroupByRowAppearance = appearance109;
- appearance110.TextHAlignAsString = "Left";
- this.cmbMeterClassUp.DisplayLayout.Override.HeaderAppearance = appearance110;
- this.cmbMeterClassUp.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmbMeterClassUp.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance111.BackColor = System.Drawing.SystemColors.Window;
- appearance111.BorderColor = System.Drawing.Color.Silver;
- this.cmbMeterClassUp.DisplayLayout.Override.RowAppearance = appearance111;
- this.cmbMeterClassUp.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance112.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmbMeterClassUp.DisplayLayout.Override.TemplateAddRowAppearance = appearance112;
- this.cmbMeterClassUp.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmbMeterClassUp.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmbMeterClassUp.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmbMeterClassUp.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbMeterClassUp.Location = new System.Drawing.Point(528, 99);
- this.cmbMeterClassUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.cmbMeterClassUp.Name = "cmbMeterClassUp";
- this.cmbMeterClassUp.Size = new System.Drawing.Size(93, 35);
- this.cmbMeterClassUp.TabIndex = 144;
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.BackColor = System.Drawing.Color.Transparent;
- this.label10.Location = new System.Drawing.Point(413, 109);
- this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(67, 15);
- this.label10.TabIndex = 143;
- this.label10.Text = "班次班组";
- //
- // tbMemo
- //
- this.tbMemo.Font = new System.Drawing.Font("宋体", 14F);
- this.tbMemo.Location = new System.Drawing.Point(528, 231);
- this.tbMemo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.tbMemo.Name = "tbMemo";
- this.tbMemo.Size = new System.Drawing.Size(604, 34);
- this.tbMemo.TabIndex = 142;
- //
- // label19
- //
- this.label19.AutoSize = true;
- this.label19.BackColor = System.Drawing.Color.Transparent;
- this.label19.Location = new System.Drawing.Point(428, 241);
- this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(69, 15);
- this.label19.TabIndex = 141;
- this.label19.Text = "备 注";
- //
- // numReferWeight
- //
- this.numReferWeight.DecimalPlaces = 2;
- this.numReferWeight.Font = new System.Drawing.Font("宋体", 14F);
- this.numReferWeight.Increment = new decimal(new int[] {
- 1,
- 0,
- 0,
- 131072});
- this.numReferWeight.Location = new System.Drawing.Point(933, 169);
- this.numReferWeight.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.numReferWeight.Maximum = new decimal(new int[] {
- 100000,
- 0,
- 0,
- 0});
- this.numReferWeight.Minimum = new decimal(new int[] {
- 100000,
- 0,
- 0,
- -2147483648});
- this.numReferWeight.Name = "numReferWeight";
- this.numReferWeight.Size = new System.Drawing.Size(200, 34);
- this.numReferWeight.TabIndex = 140;
- this.numReferWeight.ValueChanged += new System.EventHandler(this.numCollectWeight_ValueChanged);
- //
- // numTareWeight
- //
- this.numTareWeight.DecimalPlaces = 2;
- this.numTareWeight.Font = new System.Drawing.Font("宋体", 14F);
- this.numTareWeight.Increment = new decimal(new int[] {
- 1,
- 0,
- 0,
- 131072});
- this.numTareWeight.Location = new System.Drawing.Point(528, 169);
- this.numTareWeight.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.numTareWeight.Maximum = new decimal(new int[] {
- 100000,
- 0,
- 0,
- 0});
- this.numTareWeight.Minimum = new decimal(new int[] {
- 100000,
- 0,
- 0,
- -2147483648});
- this.numTareWeight.Name = "numTareWeight";
- this.numTareWeight.Size = new System.Drawing.Size(200, 34);
- this.numTareWeight.TabIndex = 139;
- this.numTareWeight.ValueChanged += new System.EventHandler(this.numCollectWeight_ValueChanged);
- //
- // numNetWeight
- //
- this.numNetWeight.DecimalPlaces = 2;
- this.numNetWeight.Enabled = false;
- this.numNetWeight.Font = new System.Drawing.Font("宋体", 14F);
- this.numNetWeight.Increment = new decimal(new int[] {
- 1,
- 0,
- 0,
- 131072});
- this.numNetWeight.Location = new System.Drawing.Point(1335, 169);
- this.numNetWeight.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.numNetWeight.Maximum = new decimal(new int[] {
- 100000,
- 0,
- 0,
- 0});
- this.numNetWeight.Minimum = new decimal(new int[] {
- 100000,
- 0,
- 0,
- -2147483648});
- this.numNetWeight.Name = "numNetWeight";
- this.numNetWeight.Size = new System.Drawing.Size(200, 34);
- this.numNetWeight.TabIndex = 138;
- //
- // tbPredictionNo
- //
- this.tbPredictionNo.Font = new System.Drawing.Font("宋体", 14F);
- this.tbPredictionNo.Location = new System.Drawing.Point(116, 231);
- this.tbPredictionNo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.tbPredictionNo.Name = "tbPredictionNo";
- this.tbPredictionNo.Size = new System.Drawing.Size(199, 34);
- this.tbPredictionNo.TabIndex = 137;
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.BackColor = System.Drawing.Color.Transparent;
- this.label18.Location = new System.Drawing.Point(16, 241);
- this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(67, 15);
- this.label18.TabIndex = 136;
- this.label18.Text = "预报编号";
- //
- // numCollectWeight
- //
- this.numCollectWeight.DecimalPlaces = 2;
- this.numCollectWeight.Font = new System.Drawing.Font("宋体", 14F);
- this.numCollectWeight.Increment = new decimal(new int[] {
- 1,
- 0,
- 0,
- 131072});
- this.numCollectWeight.Location = new System.Drawing.Point(116, 169);
- this.numCollectWeight.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.numCollectWeight.Maximum = new decimal(new int[] {
- 100000,
- 0,
- 0,
- 0});
- this.numCollectWeight.Minimum = new decimal(new int[] {
- 100000,
- 0,
- 0,
- -2147483648});
- this.numCollectWeight.Name = "numCollectWeight";
- this.numCollectWeight.Size = new System.Drawing.Size(200, 34);
- this.numCollectWeight.TabIndex = 134;
- this.numCollectWeight.ValueChanged += new System.EventHandler(this.numCollectWeight_ValueChanged);
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.BackColor = System.Drawing.Color.Transparent;
- this.label17.Location = new System.Drawing.Point(1235, 231);
- this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(287, 15);
- this.label17.TabIndex = 133;
- this.label17.Text = "说 明:净重=采集重量+零点值-仪表底数";
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.BackColor = System.Drawing.Color.Transparent;
- this.label16.Location = new System.Drawing.Point(1235, 179);
- this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(69, 15);
- this.label16.TabIndex = 131;
- this.label16.Text = "净 重";
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.BackColor = System.Drawing.Color.Transparent;
- this.label15.Location = new System.Drawing.Point(428, 179);
- this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(68, 15);
- this.label15.TabIndex = 129;
- this.label15.Text = "零 点 值";
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.BackColor = System.Drawing.Color.Transparent;
- this.label14.Location = new System.Drawing.Point(833, 179);
- this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(67, 15);
- this.label14.TabIndex = 127;
- this.label14.Text = "仪表底数";
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.BackColor = System.Drawing.Color.Transparent;
- this.label13.Location = new System.Drawing.Point(16, 179);
- this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(67, 15);
- this.label13.TabIndex = 125;
- this.label13.Text = "采集重量";
- //
- // tbBlockNumUp
- //
- this.tbBlockNumUp.Font = new System.Drawing.Font("宋体", 14F);
- this.tbBlockNumUp.Location = new System.Drawing.Point(1335, 96);
- this.tbBlockNumUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.tbBlockNumUp.Name = "tbBlockNumUp";
- this.tbBlockNumUp.Size = new System.Drawing.Size(199, 34);
- this.tbBlockNumUp.TabIndex = 124;
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.BackColor = System.Drawing.Color.Transparent;
- this.label12.Location = new System.Drawing.Point(1235, 106);
- this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(68, 15);
- this.label12.TabIndex = 123;
- this.label12.Text = "总 支 数";
- //
- // tbPackageNoUp
- //
- this.tbPackageNoUp.Font = new System.Drawing.Font("宋体", 14F);
- this.tbPackageNoUp.Location = new System.Drawing.Point(933, 96);
- this.tbPackageNoUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.tbPackageNoUp.Name = "tbPackageNoUp";
- this.tbPackageNoUp.Size = new System.Drawing.Size(199, 34);
- this.tbPackageNoUp.TabIndex = 122;
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.BackColor = System.Drawing.Color.Transparent;
- this.label11.Location = new System.Drawing.Point(833, 106);
- this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(68, 15);
- this.label11.TabIndex = 121;
- this.label11.Text = "顺 序 号";
- //
- // tbTheoreticalWeightUp
- //
- this.tbTheoreticalWeightUp.Font = new System.Drawing.Font("宋体", 14F);
- this.tbTheoreticalWeightUp.Location = new System.Drawing.Point(116, 96);
- this.tbTheoreticalWeightUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.tbTheoreticalWeightUp.Name = "tbTheoreticalWeightUp";
- this.tbTheoreticalWeightUp.Size = new System.Drawing.Size(199, 34);
- this.tbTheoreticalWeightUp.TabIndex = 118;
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.BackColor = System.Drawing.Color.Transparent;
- this.label9.Location = new System.Drawing.Point(16, 106);
- this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(67, 15);
- this.label9.TabIndex = 117;
- this.label9.Text = "理论重量";
- //
- // cmbGradeNameUp
- //
- this.cmbGradeNameUp.CheckedListSettings.CheckStateMember = "";
- appearance113.BackColor = System.Drawing.SystemColors.Window;
- appearance113.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmbGradeNameUp.DisplayLayout.Appearance = appearance113;
- this.cmbGradeNameUp.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmbGradeNameUp.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance114.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance114.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance114.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance114.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbGradeNameUp.DisplayLayout.GroupByBox.Appearance = appearance114;
- appearance115.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbGradeNameUp.DisplayLayout.GroupByBox.BandLabelAppearance = appearance115;
- this.cmbGradeNameUp.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance116.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance116.BackColor2 = System.Drawing.SystemColors.Control;
- appearance116.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance116.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbGradeNameUp.DisplayLayout.GroupByBox.PromptAppearance = appearance116;
- this.cmbGradeNameUp.DisplayLayout.MaxColScrollRegions = 1;
- this.cmbGradeNameUp.DisplayLayout.MaxRowScrollRegions = 1;
- appearance117.BackColor = System.Drawing.SystemColors.Window;
- appearance117.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmbGradeNameUp.DisplayLayout.Override.ActiveCellAppearance = appearance117;
- appearance118.BackColor = System.Drawing.SystemColors.Highlight;
- appearance118.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmbGradeNameUp.DisplayLayout.Override.ActiveRowAppearance = appearance118;
- this.cmbGradeNameUp.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmbGradeNameUp.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance119.BackColor = System.Drawing.SystemColors.Window;
- this.cmbGradeNameUp.DisplayLayout.Override.CardAreaAppearance = appearance119;
- appearance120.BorderColor = System.Drawing.Color.Silver;
- appearance120.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmbGradeNameUp.DisplayLayout.Override.CellAppearance = appearance120;
- this.cmbGradeNameUp.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmbGradeNameUp.DisplayLayout.Override.CellPadding = 0;
- appearance121.BackColor = System.Drawing.SystemColors.Control;
- appearance121.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance121.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance121.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance121.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbGradeNameUp.DisplayLayout.Override.GroupByRowAppearance = appearance121;
- appearance122.TextHAlignAsString = "Left";
- this.cmbGradeNameUp.DisplayLayout.Override.HeaderAppearance = appearance122;
- this.cmbGradeNameUp.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmbGradeNameUp.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance123.BackColor = System.Drawing.SystemColors.Window;
- appearance123.BorderColor = System.Drawing.Color.Silver;
- this.cmbGradeNameUp.DisplayLayout.Override.RowAppearance = appearance123;
- this.cmbGradeNameUp.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance124.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmbGradeNameUp.DisplayLayout.Override.TemplateAddRowAppearance = appearance124;
- this.cmbGradeNameUp.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmbGradeNameUp.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmbGradeNameUp.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmbGradeNameUp.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbGradeNameUp.Location = new System.Drawing.Point(1335, 36);
- this.cmbGradeNameUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.cmbGradeNameUp.Name = "cmbGradeNameUp";
- this.cmbGradeNameUp.Size = new System.Drawing.Size(200, 35);
- this.cmbGradeNameUp.TabIndex = 116;
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.BackColor = System.Drawing.Color.Transparent;
- this.label8.Location = new System.Drawing.Point(1235, 46);
- this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(69, 15);
- this.label8.TabIndex = 115;
- this.label8.Text = "钢 种";
- //
- // cmbSpcNameUp
- //
- this.cmbSpcNameUp.CheckedListSettings.CheckStateMember = "";
- appearance125.BackColor = System.Drawing.SystemColors.Window;
- appearance125.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmbSpcNameUp.DisplayLayout.Appearance = appearance125;
- this.cmbSpcNameUp.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmbSpcNameUp.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance126.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance126.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance126.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance126.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbSpcNameUp.DisplayLayout.GroupByBox.Appearance = appearance126;
- appearance127.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbSpcNameUp.DisplayLayout.GroupByBox.BandLabelAppearance = appearance127;
- this.cmbSpcNameUp.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance128.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance128.BackColor2 = System.Drawing.SystemColors.Control;
- appearance128.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance128.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbSpcNameUp.DisplayLayout.GroupByBox.PromptAppearance = appearance128;
- this.cmbSpcNameUp.DisplayLayout.MaxColScrollRegions = 1;
- this.cmbSpcNameUp.DisplayLayout.MaxRowScrollRegions = 1;
- appearance129.BackColor = System.Drawing.SystemColors.Window;
- appearance129.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmbSpcNameUp.DisplayLayout.Override.ActiveCellAppearance = appearance129;
- appearance130.BackColor = System.Drawing.SystemColors.Highlight;
- appearance130.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmbSpcNameUp.DisplayLayout.Override.ActiveRowAppearance = appearance130;
- this.cmbSpcNameUp.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmbSpcNameUp.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance131.BackColor = System.Drawing.SystemColors.Window;
- this.cmbSpcNameUp.DisplayLayout.Override.CardAreaAppearance = appearance131;
- appearance132.BorderColor = System.Drawing.Color.Silver;
- appearance132.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmbSpcNameUp.DisplayLayout.Override.CellAppearance = appearance132;
- this.cmbSpcNameUp.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmbSpcNameUp.DisplayLayout.Override.CellPadding = 0;
- appearance133.BackColor = System.Drawing.SystemColors.Control;
- appearance133.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance133.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance133.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance133.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbSpcNameUp.DisplayLayout.Override.GroupByRowAppearance = appearance133;
- appearance134.TextHAlignAsString = "Left";
- this.cmbSpcNameUp.DisplayLayout.Override.HeaderAppearance = appearance134;
- this.cmbSpcNameUp.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmbSpcNameUp.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance135.BackColor = System.Drawing.SystemColors.Window;
- appearance135.BorderColor = System.Drawing.Color.Silver;
- this.cmbSpcNameUp.DisplayLayout.Override.RowAppearance = appearance135;
- this.cmbSpcNameUp.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance136.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmbSpcNameUp.DisplayLayout.Override.TemplateAddRowAppearance = appearance136;
- this.cmbSpcNameUp.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmbSpcNameUp.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmbSpcNameUp.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmbSpcNameUp.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbSpcNameUp.Location = new System.Drawing.Point(933, 36);
- this.cmbSpcNameUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.cmbSpcNameUp.Name = "cmbSpcNameUp";
- this.cmbSpcNameUp.Size = new System.Drawing.Size(200, 35);
- this.cmbSpcNameUp.TabIndex = 114;
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.BackColor = System.Drawing.Color.Transparent;
- this.label7.Location = new System.Drawing.Point(833, 46);
- this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(69, 15);
- this.label7.TabIndex = 113;
- this.label7.Text = "规 格";
- //
- // tbHeatNoUp
- //
- this.tbHeatNoUp.Font = new System.Drawing.Font("宋体", 14F);
- this.tbHeatNoUp.Location = new System.Drawing.Point(528, 36);
- this.tbHeatNoUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.tbHeatNoUp.Name = "tbHeatNoUp";
- this.tbHeatNoUp.Size = new System.Drawing.Size(199, 34);
- this.tbHeatNoUp.TabIndex = 112;
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Location = new System.Drawing.Point(428, 46);
- this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(69, 15);
- this.label6.TabIndex = 111;
- this.label6.Text = "炉 号";
- //
- // cmbPointUp
- //
- this.cmbPointUp.CheckedListSettings.CheckStateMember = "";
- appearance69.BackColor = System.Drawing.SystemColors.Window;
- appearance69.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmbPointUp.DisplayLayout.Appearance = appearance69;
- this.cmbPointUp.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmbPointUp.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance70.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance70.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance70.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance70.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbPointUp.DisplayLayout.GroupByBox.Appearance = appearance70;
- appearance71.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbPointUp.DisplayLayout.GroupByBox.BandLabelAppearance = appearance71;
- this.cmbPointUp.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance72.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance72.BackColor2 = System.Drawing.SystemColors.Control;
- appearance72.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance72.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbPointUp.DisplayLayout.GroupByBox.PromptAppearance = appearance72;
- this.cmbPointUp.DisplayLayout.MaxColScrollRegions = 1;
- this.cmbPointUp.DisplayLayout.MaxRowScrollRegions = 1;
- appearance73.BackColor = System.Drawing.SystemColors.Window;
- appearance73.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmbPointUp.DisplayLayout.Override.ActiveCellAppearance = appearance73;
- appearance74.BackColor = System.Drawing.SystemColors.Highlight;
- appearance74.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmbPointUp.DisplayLayout.Override.ActiveRowAppearance = appearance74;
- this.cmbPointUp.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmbPointUp.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance75.BackColor = System.Drawing.SystemColors.Window;
- this.cmbPointUp.DisplayLayout.Override.CardAreaAppearance = appearance75;
- appearance76.BorderColor = System.Drawing.Color.Silver;
- appearance76.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmbPointUp.DisplayLayout.Override.CellAppearance = appearance76;
- this.cmbPointUp.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmbPointUp.DisplayLayout.Override.CellPadding = 0;
- appearance77.BackColor = System.Drawing.SystemColors.Control;
- appearance77.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance77.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance77.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance77.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbPointUp.DisplayLayout.Override.GroupByRowAppearance = appearance77;
- appearance78.TextHAlignAsString = "Left";
- this.cmbPointUp.DisplayLayout.Override.HeaderAppearance = appearance78;
- this.cmbPointUp.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmbPointUp.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance79.BackColor = System.Drawing.SystemColors.Window;
- appearance79.BorderColor = System.Drawing.Color.Silver;
- this.cmbPointUp.DisplayLayout.Override.RowAppearance = appearance79;
- this.cmbPointUp.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance80.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmbPointUp.DisplayLayout.Override.TemplateAddRowAppearance = appearance80;
- this.cmbPointUp.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmbPointUp.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmbPointUp.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmbPointUp.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbPointUp.Location = new System.Drawing.Point(116, 36);
- this.cmbPointUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.cmbPointUp.Name = "cmbPointUp";
- this.cmbPointUp.Size = new System.Drawing.Size(200, 35);
- this.cmbPointUp.TabIndex = 110;
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Location = new System.Drawing.Point(16, 46);
- this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(68, 15);
- this.label5.TabIndex = 109;
- this.label5.Text = "计 量 点";
- //
- // ultraGroupBoxCondition
- //
- this.ultraGroupBoxCondition.Controls.Add(this.ckFilter);
- this.ultraGroupBoxCondition.Controls.Add(this.cmbCheckState);
- this.ultraGroupBoxCondition.Controls.Add(this.label24);
- this.ultraGroupBoxCondition.Controls.Add(this.cmbMeterGroup);
- this.ultraGroupBoxCondition.Controls.Add(this.cmbGradeName);
- this.ultraGroupBoxCondition.Controls.Add(this.cmbMeterClass);
- this.ultraGroupBoxCondition.Controls.Add(this.label23);
- this.ultraGroupBoxCondition.Controls.Add(this.label22);
- this.ultraGroupBoxCondition.Controls.Add(this.cmbSpcName);
- this.ultraGroupBoxCondition.Controls.Add(this.label21);
- this.ultraGroupBoxCondition.Controls.Add(this.label20);
- this.ultraGroupBoxCondition.Controls.Add(this.cmbScaleState);
- this.ultraGroupBoxCondition.Controls.Add(this.dtStartTime);
- this.ultraGroupBoxCondition.Controls.Add(this.label4);
- this.ultraGroupBoxCondition.Controls.Add(this.label3);
- this.ultraGroupBoxCondition.Controls.Add(this.label2);
- this.ultraGroupBoxCondition.Controls.Add(this.dtEndTime);
- this.ultraGroupBoxCondition.Controls.Add(this.cmbPoint);
- this.ultraGroupBoxCondition.Controls.Add(this.label1);
- this.ultraGroupBoxCondition.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBoxCondition.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBoxCondition.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ultraGroupBoxCondition.Name = "ultraGroupBoxCondition";
- this.ultraGroupBoxCondition.Size = new System.Drawing.Size(1936, 115);
- this.ultraGroupBoxCondition.TabIndex = 0;
- this.ultraGroupBoxCondition.Text = "实绩查询条件";
- this.ultraGroupBoxCondition.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ckFilter
- //
- this.ckFilter.AutoSize = true;
- this.ckFilter.BackColor = System.Drawing.Color.Transparent;
- this.ckFilter.Location = new System.Drawing.Point(1717, 81);
- this.ckFilter.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.ckFilter.Name = "ckFilter";
- this.ckFilter.Size = new System.Drawing.Size(89, 19);
- this.ckFilter.TabIndex = 151;
- this.ckFilter.Text = "是否过滤";
- this.ckFilter.UseVisualStyleBackColor = false;
- this.ckFilter.CheckedChanged += new System.EventHandler(this.ckFilter_CheckedChanged);
- //
- // cmbCheckState
- //
- this.cmbCheckState.Font = new System.Drawing.Font("宋体", 14F);
- this.cmbCheckState.Location = new System.Drawing.Point(1444, 24);
- this.cmbCheckState.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.cmbCheckState.Name = "cmbCheckState";
- this.cmbCheckState.ReadOnly = true;
- this.cmbCheckState.Size = new System.Drawing.Size(199, 34);
- this.cmbCheckState.TabIndex = 146;
- this.cmbCheckState.Text = "已审核";
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.BackColor = System.Drawing.Color.Transparent;
- this.label24.Location = new System.Drawing.Point(47, 81);
- this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(354, 15);
- this.label24.TabIndex = 149;
- this.label24.Text = "说 明:已作废数据为红色,已审核数据为黄绿色";
- //
- // cmbMeterGroup
- //
- this.cmbMeterGroup.CheckedListSettings.CheckStateMember = "";
- appearance57.BackColor = System.Drawing.SystemColors.Window;
- appearance57.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmbMeterGroup.DisplayLayout.Appearance = appearance57;
- this.cmbMeterGroup.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmbMeterGroup.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance58.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance58.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance58.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance58.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbMeterGroup.DisplayLayout.GroupByBox.Appearance = appearance58;
- appearance59.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbMeterGroup.DisplayLayout.GroupByBox.BandLabelAppearance = appearance59;
- this.cmbMeterGroup.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance60.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance60.BackColor2 = System.Drawing.SystemColors.Control;
- appearance60.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance60.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbMeterGroup.DisplayLayout.GroupByBox.PromptAppearance = appearance60;
- this.cmbMeterGroup.DisplayLayout.MaxColScrollRegions = 1;
- this.cmbMeterGroup.DisplayLayout.MaxRowScrollRegions = 1;
- appearance61.BackColor = System.Drawing.SystemColors.Window;
- appearance61.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmbMeterGroup.DisplayLayout.Override.ActiveCellAppearance = appearance61;
- appearance62.BackColor = System.Drawing.SystemColors.Highlight;
- appearance62.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmbMeterGroup.DisplayLayout.Override.ActiveRowAppearance = appearance62;
- this.cmbMeterGroup.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmbMeterGroup.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance63.BackColor = System.Drawing.SystemColors.Window;
- this.cmbMeterGroup.DisplayLayout.Override.CardAreaAppearance = appearance63;
- appearance64.BorderColor = System.Drawing.Color.Silver;
- appearance64.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmbMeterGroup.DisplayLayout.Override.CellAppearance = appearance64;
- this.cmbMeterGroup.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmbMeterGroup.DisplayLayout.Override.CellPadding = 0;
- appearance65.BackColor = System.Drawing.SystemColors.Control;
- appearance65.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance65.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance65.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance65.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbMeterGroup.DisplayLayout.Override.GroupByRowAppearance = appearance65;
- appearance66.TextHAlignAsString = "Left";
- this.cmbMeterGroup.DisplayLayout.Override.HeaderAppearance = appearance66;
- this.cmbMeterGroup.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmbMeterGroup.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance67.BackColor = System.Drawing.SystemColors.Window;
- appearance67.BorderColor = System.Drawing.Color.Silver;
- this.cmbMeterGroup.DisplayLayout.Override.RowAppearance = appearance67;
- this.cmbMeterGroup.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance68.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmbMeterGroup.DisplayLayout.Override.TemplateAddRowAppearance = appearance68;
- this.cmbMeterGroup.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmbMeterGroup.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmbMeterGroup.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmbMeterGroup.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbMeterGroup.Location = new System.Drawing.Point(1545, 74);
- this.cmbMeterGroup.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.cmbMeterGroup.Name = "cmbMeterGroup";
- this.cmbMeterGroup.Size = new System.Drawing.Size(93, 35);
- this.cmbMeterGroup.TabIndex = 148;
- //
- // cmbGradeName
- //
- this.cmbGradeName.CheckedListSettings.CheckStateMember = "";
- appearance40.BackColor = System.Drawing.SystemColors.Window;
- appearance40.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmbGradeName.DisplayLayout.Appearance = appearance40;
- this.cmbGradeName.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmbGradeName.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance41.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance41.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance41.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance41.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbGradeName.DisplayLayout.GroupByBox.Appearance = appearance41;
- appearance42.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbGradeName.DisplayLayout.GroupByBox.BandLabelAppearance = appearance42;
- this.cmbGradeName.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance43.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance43.BackColor2 = System.Drawing.SystemColors.Control;
- appearance43.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance43.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbGradeName.DisplayLayout.GroupByBox.PromptAppearance = appearance43;
- this.cmbGradeName.DisplayLayout.MaxColScrollRegions = 1;
- this.cmbGradeName.DisplayLayout.MaxRowScrollRegions = 1;
- appearance44.BackColor = System.Drawing.SystemColors.Window;
- appearance44.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmbGradeName.DisplayLayout.Override.ActiveCellAppearance = appearance44;
- appearance45.BackColor = System.Drawing.SystemColors.Highlight;
- appearance45.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmbGradeName.DisplayLayout.Override.ActiveRowAppearance = appearance45;
- this.cmbGradeName.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmbGradeName.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance46.BackColor = System.Drawing.SystemColors.Window;
- this.cmbGradeName.DisplayLayout.Override.CardAreaAppearance = appearance46;
- appearance47.BorderColor = System.Drawing.Color.Silver;
- appearance47.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmbGradeName.DisplayLayout.Override.CellAppearance = appearance47;
- this.cmbGradeName.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmbGradeName.DisplayLayout.Override.CellPadding = 0;
- appearance48.BackColor = System.Drawing.SystemColors.Control;
- appearance48.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance48.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance48.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance48.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbGradeName.DisplayLayout.Override.GroupByRowAppearance = appearance48;
- appearance49.TextHAlignAsString = "Left";
- this.cmbGradeName.DisplayLayout.Override.HeaderAppearance = appearance49;
- this.cmbGradeName.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmbGradeName.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance50.BackColor = System.Drawing.SystemColors.Window;
- appearance50.BorderColor = System.Drawing.Color.Silver;
- this.cmbGradeName.DisplayLayout.Override.RowAppearance = appearance50;
- this.cmbGradeName.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance51.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmbGradeName.DisplayLayout.Override.TemplateAddRowAppearance = appearance51;
- this.cmbGradeName.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmbGradeName.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmbGradeName.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmbGradeName.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbGradeName.Location = new System.Drawing.Point(1141, 74);
- this.cmbGradeName.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.cmbGradeName.Name = "cmbGradeName";
- this.cmbGradeName.Size = new System.Drawing.Size(192, 35);
- this.cmbGradeName.TabIndex = 147;
- //
- // cmbMeterClass
- //
- this.cmbMeterClass.CheckedListSettings.CheckStateMember = "";
- appearance5.BackColor = System.Drawing.SystemColors.Window;
- appearance5.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmbMeterClass.DisplayLayout.Appearance = appearance5;
- this.cmbMeterClass.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmbMeterClass.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance6.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance6.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance6.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbMeterClass.DisplayLayout.GroupByBox.Appearance = appearance6;
- appearance7.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbMeterClass.DisplayLayout.GroupByBox.BandLabelAppearance = appearance7;
- this.cmbMeterClass.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance8.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance8.BackColor2 = System.Drawing.SystemColors.Control;
- appearance8.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance8.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbMeterClass.DisplayLayout.GroupByBox.PromptAppearance = appearance8;
- this.cmbMeterClass.DisplayLayout.MaxColScrollRegions = 1;
- this.cmbMeterClass.DisplayLayout.MaxRowScrollRegions = 1;
- appearance9.BackColor = System.Drawing.SystemColors.Window;
- appearance9.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmbMeterClass.DisplayLayout.Override.ActiveCellAppearance = appearance9;
- appearance10.BackColor = System.Drawing.SystemColors.Highlight;
- appearance10.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmbMeterClass.DisplayLayout.Override.ActiveRowAppearance = appearance10;
- this.cmbMeterClass.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmbMeterClass.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance11.BackColor = System.Drawing.SystemColors.Window;
- this.cmbMeterClass.DisplayLayout.Override.CardAreaAppearance = appearance11;
- appearance12.BorderColor = System.Drawing.Color.Silver;
- appearance12.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmbMeterClass.DisplayLayout.Override.CellAppearance = appearance12;
- this.cmbMeterClass.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmbMeterClass.DisplayLayout.Override.CellPadding = 0;
- appearance29.BackColor = System.Drawing.SystemColors.Control;
- appearance29.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance29.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance29.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance29.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbMeterClass.DisplayLayout.Override.GroupByRowAppearance = appearance29;
- appearance31.TextHAlignAsString = "Left";
- this.cmbMeterClass.DisplayLayout.Override.HeaderAppearance = appearance31;
- this.cmbMeterClass.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmbMeterClass.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance32.BackColor = System.Drawing.SystemColors.Window;
- appearance32.BorderColor = System.Drawing.Color.Silver;
- this.cmbMeterClass.DisplayLayout.Override.RowAppearance = appearance32;
- this.cmbMeterClass.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance33.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmbMeterClass.DisplayLayout.Override.TemplateAddRowAppearance = appearance33;
- this.cmbMeterClass.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmbMeterClass.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmbMeterClass.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmbMeterClass.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbMeterClass.Location = new System.Drawing.Point(1444, 74);
- this.cmbMeterClass.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.cmbMeterClass.Name = "cmbMeterClass";
- this.cmbMeterClass.Size = new System.Drawing.Size(93, 35);
- this.cmbMeterClass.TabIndex = 147;
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.BackColor = System.Drawing.Color.Transparent;
- this.label23.Location = new System.Drawing.Point(1365, 84);
- this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(67, 15);
- this.label23.TabIndex = 146;
- this.label23.Text = "班次班组";
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.BackColor = System.Drawing.Color.Transparent;
- this.label22.Location = new System.Drawing.Point(1063, 81);
- this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(69, 15);
- this.label22.TabIndex = 146;
- this.label22.Text = "钢 种";
- //
- // cmbSpcName
- //
- this.cmbSpcName.CheckedListSettings.CheckStateMember = "";
- appearance81.BackColor = System.Drawing.SystemColors.Window;
- appearance81.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmbSpcName.DisplayLayout.Appearance = appearance81;
- this.cmbSpcName.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmbSpcName.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance82.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance82.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance82.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance82.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbSpcName.DisplayLayout.GroupByBox.Appearance = appearance82;
- appearance83.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbSpcName.DisplayLayout.GroupByBox.BandLabelAppearance = appearance83;
- this.cmbSpcName.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance84.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance84.BackColor2 = System.Drawing.SystemColors.Control;
- appearance84.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance84.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbSpcName.DisplayLayout.GroupByBox.PromptAppearance = appearance84;
- this.cmbSpcName.DisplayLayout.MaxColScrollRegions = 1;
- this.cmbSpcName.DisplayLayout.MaxRowScrollRegions = 1;
- appearance85.BackColor = System.Drawing.SystemColors.Window;
- appearance85.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmbSpcName.DisplayLayout.Override.ActiveCellAppearance = appearance85;
- appearance86.BackColor = System.Drawing.SystemColors.Highlight;
- appearance86.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmbSpcName.DisplayLayout.Override.ActiveRowAppearance = appearance86;
- this.cmbSpcName.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmbSpcName.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance87.BackColor = System.Drawing.SystemColors.Window;
- this.cmbSpcName.DisplayLayout.Override.CardAreaAppearance = appearance87;
- appearance88.BorderColor = System.Drawing.Color.Silver;
- appearance88.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmbSpcName.DisplayLayout.Override.CellAppearance = appearance88;
- this.cmbSpcName.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmbSpcName.DisplayLayout.Override.CellPadding = 0;
- appearance89.BackColor = System.Drawing.SystemColors.Control;
- appearance89.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance89.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance89.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance89.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbSpcName.DisplayLayout.Override.GroupByRowAppearance = appearance89;
- appearance90.TextHAlignAsString = "Left";
- this.cmbSpcName.DisplayLayout.Override.HeaderAppearance = appearance90;
- this.cmbSpcName.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmbSpcName.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance91.BackColor = System.Drawing.SystemColors.Window;
- appearance91.BorderColor = System.Drawing.Color.Silver;
- this.cmbSpcName.DisplayLayout.Override.RowAppearance = appearance91;
- this.cmbSpcName.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance92.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmbSpcName.DisplayLayout.Override.TemplateAddRowAppearance = appearance92;
- this.cmbSpcName.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmbSpcName.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmbSpcName.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmbSpcName.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbSpcName.Location = new System.Drawing.Point(827, 74);
- this.cmbSpcName.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.cmbSpcName.Name = "cmbSpcName";
- this.cmbSpcName.Size = new System.Drawing.Size(200, 35);
- this.cmbSpcName.TabIndex = 147;
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.BackColor = System.Drawing.Color.Transparent;
- this.label21.Location = new System.Drawing.Point(727, 84);
- this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(69, 15);
- this.label21.TabIndex = 146;
- this.label21.Text = "规 格";
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.BackColor = System.Drawing.Color.Transparent;
- this.label20.Location = new System.Drawing.Point(1365, 34);
- this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(67, 15);
- this.label20.TabIndex = 114;
- this.label20.Text = "审核状态";
- //
- // cmbScaleState
- //
- this.cmbScaleState.Font = new System.Drawing.Font("宋体", 14F);
- this.cmbScaleState.Location = new System.Drawing.Point(1141, 25);
- this.cmbScaleState.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.cmbScaleState.Name = "cmbScaleState";
- this.cmbScaleState.Size = new System.Drawing.Size(192, 34);
- this.cmbScaleState.TabIndex = 113;
- //
- // dtStartTime
- //
- this.dtStartTime.Cursor = System.Windows.Forms.Cursors.Default;
- this.dtStartTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
- this.dtStartTime.Font = new System.Drawing.Font("宋体", 12F);
- this.dtStartTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtStartTime.Location = new System.Drawing.Point(116, 25);
- this.dtStartTime.Margin = new System.Windows.Forms.Padding(0, 6, 0, 0);
- this.dtStartTime.MaxDate = new System.DateTime(3000, 12, 31, 0, 0, 0, 0);
- this.dtStartTime.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
- this.dtStartTime.Name = "dtStartTime";
- this.dtStartTime.Size = new System.Drawing.Size(265, 30);
- this.dtStartTime.TabIndex = 112;
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.BackColor = System.Drawing.Color.Transparent;
- this.label4.Location = new System.Drawing.Point(388, 34);
- this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(22, 15);
- this.label4.TabIndex = 111;
- this.label4.Text = "至";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Location = new System.Drawing.Point(1063, 34);
- this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(67, 15);
- this.label3.TabIndex = 110;
- this.label3.Text = "数据状态";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Location = new System.Drawing.Point(727, 31);
- this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(68, 15);
- this.label2.TabIndex = 109;
- this.label2.Text = "计 量 点";
- //
- // cmbPoint
- //
- this.cmbPoint.CheckedListSettings.CheckStateMember = "";
- appearance16.BackColor = System.Drawing.SystemColors.Window;
- appearance16.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmbPoint.DisplayLayout.Appearance = appearance16;
- this.cmbPoint.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmbPoint.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance17.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance17.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance17.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance17.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbPoint.DisplayLayout.GroupByBox.Appearance = appearance17;
- appearance22.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbPoint.DisplayLayout.GroupByBox.BandLabelAppearance = appearance22;
- this.cmbPoint.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance23.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance23.BackColor2 = System.Drawing.SystemColors.Control;
- appearance23.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance23.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbPoint.DisplayLayout.GroupByBox.PromptAppearance = appearance23;
- this.cmbPoint.DisplayLayout.MaxColScrollRegions = 1;
- this.cmbPoint.DisplayLayout.MaxRowScrollRegions = 1;
- appearance24.BackColor = System.Drawing.SystemColors.Window;
- appearance24.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmbPoint.DisplayLayout.Override.ActiveCellAppearance = appearance24;
- appearance26.BackColor = System.Drawing.SystemColors.Highlight;
- appearance26.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmbPoint.DisplayLayout.Override.ActiveRowAppearance = appearance26;
- this.cmbPoint.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmbPoint.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance27.BackColor = System.Drawing.SystemColors.Window;
- this.cmbPoint.DisplayLayout.Override.CardAreaAppearance = appearance27;
- appearance28.BorderColor = System.Drawing.Color.Silver;
- appearance28.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmbPoint.DisplayLayout.Override.CellAppearance = appearance28;
- this.cmbPoint.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmbPoint.DisplayLayout.Override.CellPadding = 0;
- appearance30.BackColor = System.Drawing.SystemColors.Control;
- appearance30.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance30.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance30.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance30.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbPoint.DisplayLayout.Override.GroupByRowAppearance = appearance30;
- appearance54.TextHAlignAsString = "Left";
- this.cmbPoint.DisplayLayout.Override.HeaderAppearance = appearance54;
- this.cmbPoint.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmbPoint.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance55.BackColor = System.Drawing.SystemColors.Window;
- appearance55.BorderColor = System.Drawing.Color.Silver;
- this.cmbPoint.DisplayLayout.Override.RowAppearance = appearance55;
- this.cmbPoint.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance56.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmbPoint.DisplayLayout.Override.TemplateAddRowAppearance = appearance56;
- this.cmbPoint.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmbPoint.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmbPoint.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmbPoint.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbPoint.Location = new System.Drawing.Point(827, 24);
- this.cmbPoint.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.cmbPoint.Name = "cmbPoint";
- this.cmbPoint.Size = new System.Drawing.Size(200, 35);
- this.cmbPoint.TabIndex = 12;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Location = new System.Drawing.Point(41, 34);
- this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(67, 15);
- this.label1.TabIndex = 108;
- this.label1.Text = "过磅时间";
- //
- // dataColumn44
- //
- this.dataColumn44.Caption = "差值";
- this.dataColumn44.ColumnName = "acDiffWeight";
- //
- // frmHotDeliveryActualQueryCheck
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1942, 882);
- this.Controls.Add(this.ultraGroupBox1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
- this.Name = "frmHotDeliveryActualQueryCheck";
- this.Text = "实绩查询界面(实施)";
- this.Load += new System.EventHandler(this.frmHotDeliveryActualQueryCheck_Load);
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
- this.panel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- this.panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
- this.ultraGroupBox4.ResumeLayout(false);
- this.panel2Query.ResumeLayout(false);
- this.panel2Query.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridScale)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBoxEdit)).EndInit();
- this.ultraGroupBoxEdit.ResumeLayout(false);
- this.ultraGroupBoxEdit.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cmbMeterGroupUp)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbMeterClassUp)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numReferWeight)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numTareWeight)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numNetWeight)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numCollectWeight)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbGradeNameUp)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbSpcNameUp)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbPointUp)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBoxCondition)).EndInit();
- this.ultraGroupBoxCondition.ResumeLayout(false);
- this.ultraGroupBoxCondition.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cmbMeterGroup)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbGradeName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbMeterClass)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbSpcName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbScaleState)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbPoint)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
- private System.Data.DataSet dataSet2;
- private System.Data.DataTable dataTable1;
- private System.Data.DataColumn dataColumn1;
- private System.Data.DataColumn dataColumn2;
- private System.Data.DataColumn dataColumn3;
- private System.Data.DataColumn dataColumn9;
- private System.Data.DataColumn dataColumn4;
- private System.Data.DataColumn dataColumn5;
- private System.Data.DataColumn dataColumn6;
- private System.Data.DataColumn dataColumn7;
- private System.Data.DataColumn dataColumn8;
- private System.Data.DataColumn dataColumn10;
- private System.Data.DataColumn dataColumn11;
- private System.Data.DataColumn dataColumn12;
- private System.Data.DataColumn dataColumn13;
- 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 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 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.DataColumn dataColumn35;
- private System.Windows.Forms.Panel panel1;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmbPoint;
- private System.Windows.Forms.DateTimePicker dtEndTime;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Left;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Right;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Top;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Bottom;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private System.Windows.Forms.Panel panel2;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
- private System.Windows.Forms.Panel panel2Query;
- private System.Windows.Forms.CheckBox cbAll;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridScale;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBoxEdit;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBoxCondition;
- private System.Windows.Forms.Panel panel1_Fill_Panel;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.DateTimePicker dtStartTime;
- private System.Data.DataColumn dataColumn36;
- private System.Data.DataColumn dataColumn37;
- private System.Data.DataColumn dataColumn38;
- private System.Data.DataColumn dataColumn39;
- private System.Data.DataColumn dataColumn40;
- private System.Data.DataColumn dataColumn41;
- private System.Data.DataColumn dataColumn42;
- private System.Data.DataColumn dataColumn43;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmbPointUp;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Label label7;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmbGradeNameUp;
- private System.Windows.Forms.Label label8;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmbSpcNameUp;
- private System.Windows.Forms.TextBox tbBlockNumUp;
- private System.Windows.Forms.Label label12;
- private System.Windows.Forms.TextBox tbPackageNoUp;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.TextBox tbTheoreticalWeightUp;
- private System.Windows.Forms.Label label9;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbScaleState;
- private System.Windows.Forms.Label label15;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.NumericUpDown numCollectWeight;
- private System.Windows.Forms.TextBox tbPredictionNo;
- private System.Windows.Forms.Label label18;
- private System.Windows.Forms.NumericUpDown numReferWeight;
- private System.Windows.Forms.NumericUpDown numTareWeight;
- private System.Windows.Forms.NumericUpDown numNetWeight;
- private System.Windows.Forms.TextBox tbMemo;
- private System.Windows.Forms.Label label19;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmbMeterGroupUp;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmbMeterClassUp;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Label label20;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmbMeterGroup;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmbGradeName;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmbMeterClass;
- private System.Windows.Forms.Label label23;
- private System.Windows.Forms.Label label22;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmbSpcName;
- private System.Windows.Forms.Label label21;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.TextBox tbHeatNoUp;
- private System.Windows.Forms.TextBox cmbCheckState;
- private System.Windows.Forms.CheckBox ckFilter;
- private System.Data.DataColumn dataColumn44;
- }
- }
|