| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703 |
- namespace StorageMeterSystem
- {
- partial class frmMain
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- 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.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 appearance8 = 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 appearance11 = 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 appearance76 = 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 appearance77 = 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.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("校秤记录", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationMainNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("spotTypeNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("spotTypeName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationNum");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationTypeNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationTypeName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationActNum");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("valueFlag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseContrastSpotNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseContrastSpotName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSuccContSpotNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSuccConSpotName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationMainTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Relation1");
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Relation1", 0);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationBranchNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationMainNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("spotTypeNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("spotTypeName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationTypeNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationTypeName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationWeight");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("valueFlag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrContrastBranchNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createManNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createManName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createTime");
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance52 = 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 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 appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
- Infragistics.Win.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 appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("已接管计量点", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("validFlag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("controlIp");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("weightDiff");
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGridSj = new Infragistics.Win.UltraWinGrid.UltraGrid();
- 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.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGridJl = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet1 = new System.Data.DataSet();
- this.dtCalibration = new System.Data.DataTable();
- this.dataColumn126 = new System.Data.DataColumn();
- this.dataColumn127 = new System.Data.DataColumn();
- this.dataColumn128 = new System.Data.DataColumn();
- this.dataColumn129 = new System.Data.DataColumn();
- this.dataColumn130 = new System.Data.DataColumn();
- this.dataColumn131 = new System.Data.DataColumn();
- this.dataColumn132 = new System.Data.DataColumn();
- this.dataColumn133 = new System.Data.DataColumn();
- this.dataColumn134 = new System.Data.DataColumn();
- this.dataColumn135 = new System.Data.DataColumn();
- this.dataColumn136 = new System.Data.DataColumn();
- this.dataColumn137 = new System.Data.DataColumn();
- this.dataColumn138 = new System.Data.DataColumn();
- this.dataColumn139 = new System.Data.DataColumn();
- this.dataColumn140 = new System.Data.DataColumn();
- this.dtJGPointInfo = new System.Data.DataTable();
- this.dataColumn157 = new System.Data.DataColumn();
- this.dataColumn158 = new System.Data.DataColumn();
- this.dataColumn159 = new System.Data.DataColumn();
- this.dataColumn160 = new System.Data.DataColumn();
- this.dataColumn220 = new System.Data.DataColumn();
- this.dtBranch = new System.Data.DataTable();
- this.dataColumn144 = new System.Data.DataColumn();
- this.dataColumn145 = new System.Data.DataColumn();
- this.dataColumn146 = new System.Data.DataColumn();
- this.dataColumn147 = new System.Data.DataColumn();
- this.dataColumn148 = new System.Data.DataColumn();
- this.dataColumn149 = new System.Data.DataColumn();
- this.dataColumn150 = new System.Data.DataColumn();
- this.dataColumn151 = new System.Data.DataColumn();
- this.dataColumn152 = new System.Data.DataColumn();
- this.dataColumn153 = new System.Data.DataColumn();
- this.dataColumn154 = new System.Data.DataColumn();
- this.dataColumn161 = new System.Data.DataColumn();
- this.dataColumn162 = new System.Data.DataColumn();
- this.dataColumn163 = new System.Data.DataColumn();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.panel3 = new System.Windows.Forms.Panel();
- this.uTab = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.panel14 = new System.Windows.Forms.Panel();
- this.cbPC = new System.Windows.Forms.ComboBox();
- this.txtWcWgt = new System.Windows.Forms.NumericUpDown();
- this.label3 = new System.Windows.Forms.Label();
- this.txtWdWgt = new System.Windows.Forms.NumericUpDown();
- this.cbAuto = new System.Windows.Forms.CheckBox();
- this.btnSave = new System.Windows.Forms.Button();
- this.btnCheckBalance = new System.Windows.Forms.Button();
- this.btnOpenVoice = new System.Windows.Forms.Button();
- this.panel11 = new System.Windows.Forms.Panel();
- this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
- this.txtBucketAddValue = new System.Windows.Forms.NumericUpDown();
- this.label18 = new System.Windows.Forms.Label();
- this.txtBucketNo = new System.Windows.Forms.NumericUpDown();
- this.label6 = new System.Windows.Forms.Label();
- this.cmbBUCKET_NO = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.cmbDH = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.txtMEMO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.cmbStandard = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.cmbGrade = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.cmbMatterNo = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.txtBLOCK_NUM = new System.Windows.Forms.NumericUpDown();
- this.label7 = new System.Windows.Forms.Label();
- this.label8 = new System.Windows.Forms.Label();
- this.label9 = new System.Windows.Forms.Label();
- this.label10 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
- this.label12 = new System.Windows.Forms.Label();
- this.label13 = new System.Windows.Forms.Label();
- this.label14 = new System.Windows.Forms.Label();
- this.txtSEAL_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtPACKAGE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtBATCH_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label15 = new System.Windows.Forms.Label();
- this.txtCOMBIN_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label16 = new System.Windows.Forms.Label();
- this.label17 = new System.Windows.Forms.Label();
- this.txtPRODUCT_DATE = new System.Windows.Forms.DateTimePicker();
- this.label1 = new System.Windows.Forms.Label();
- this.panel10 = new System.Windows.Forms.Panel();
- this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
- this.txtNetWgt = new System.Windows.Forms.NumericUpDown();
- this.label2 = new System.Windows.Forms.Label();
- this.txtTARE_WEIGHT = new System.Windows.Forms.NumericUpDown();
- this.label4 = new System.Windows.Forms.Label();
- this.panel5 = new System.Windows.Forms.Panel();
- this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
- this.ucStorageWeightKg2 = new MeterModuleLibrary.ucStorageWeightKg();
- this.ucStorageWeightKg1 = new MeterModuleLibrary.ucStorageWeightKg();
- this.panel1 = new System.Windows.Forms.Panel();
- this.panel2 = new System.Windows.Forms.Panel();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.txtMsgInfo = new System.Windows.Forms.TextBox();
- this.panel15 = new System.Windows.Forms.Panel();
- this.txtTimeLength = new System.Windows.Forms.NumericUpDown();
- this.label5 = new System.Windows.Forms.Label();
- this.btnStart = new System.Windows.Forms.Button();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.ultraGridPW = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.plImgShow = new System.Windows.Forms.Panel();
- this.pictureShow = new System.Windows.Forms.PictureBox();
- this.timer1 = new System.Windows.Forms.Timer(this.components);
- this.timer2 = new System.Windows.Forms.Timer(this.components);
- this.ultraTabPageControl1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridSj)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- this.ultraTabPageControl3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridJl)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtCalibration)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtJGPointInfo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtBranch)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- this.panel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.uTab)).BeginInit();
- this.uTab.SuspendLayout();
- this.panel14.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtWcWgt)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtWdWgt)).BeginInit();
- this.panel11.SuspendLayout();
- this.tableLayoutPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtBucketAddValue)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBucketNo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbBUCKET_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbDH)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtMEMO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbStandard)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbGrade)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbMatterNo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBLOCK_NUM)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSEAL_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPACKAGE_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCOMBIN_NO)).BeginInit();
- this.panel10.SuspendLayout();
- this.tableLayoutPanel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtNetWgt)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtTARE_WEIGHT)).BeginInit();
- this.panel5.SuspendLayout();
- this.tableLayoutPanel2.SuspendLayout();
- this.panel2.SuspendLayout();
- this.groupBox2.SuspendLayout();
- this.panel15.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtTimeLength)).BeginInit();
- this.groupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridPW)).BeginInit();
- this.plImgShow.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureShow)).BeginInit();
- this.SuspendLayout();
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.ultraGridSj);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 25);
- this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(2);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(906, 425);
- //
- // ultraGridSj
- //
- this.ultraGridSj.DataMember = "计量实绩";
- this.ultraGridSj.DataSource = this.dataSet2;
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.Hidden = true;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.Hidden = true;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn3.Header.VisiblePosition = 2;
- ultraGridColumn3.Hidden = true;
- ultraGridColumn4.Header.VisiblePosition = 3;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn5.Header.VisiblePosition = 4;
- ultraGridColumn5.Hidden = true;
- ultraGridColumn6.Header.VisiblePosition = 5;
- ultraGridColumn6.RowLayoutColumnInfo.OriginX = 32;
- ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn7.Header.VisiblePosition = 6;
- ultraGridColumn7.Hidden = true;
- ultraGridColumn8.Header.VisiblePosition = 7;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 28;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn9.Header.VisiblePosition = 8;
- ultraGridColumn9.Hidden = true;
- ultraGridColumn10.Header.VisiblePosition = 9;
- ultraGridColumn10.Hidden = true;
- ultraGridColumn11.Header.VisiblePosition = 10;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 34;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn12.Header.VisiblePosition = 11;
- ultraGridColumn12.Hidden = true;
- ultraGridColumn13.Header.VisiblePosition = 12;
- ultraGridColumn13.Hidden = true;
- ultraGridColumn14.Header.VisiblePosition = 13;
- ultraGridColumn14.Hidden = true;
- ultraGridColumn15.Header.VisiblePosition = 14;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn16.Header.VisiblePosition = 15;
- ultraGridColumn16.Hidden = true;
- ultraGridColumn17.Header.VisiblePosition = 16;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn18.Header.VisiblePosition = 17;
- ultraGridColumn18.Hidden = true;
- ultraGridColumn19.Header.VisiblePosition = 18;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn20.Header.VisiblePosition = 19;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn21.Header.VisiblePosition = 20;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn22.Header.VisiblePosition = 21;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 30;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn23.Header.VisiblePosition = 22;
- ultraGridColumn23.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn24.Header.VisiblePosition = 23;
- ultraGridColumn24.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn25.Header.VisiblePosition = 24;
- ultraGridColumn25.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn26.Header.VisiblePosition = 25;
- ultraGridColumn26.Hidden = true;
- ultraGridColumn27.Header.VisiblePosition = 26;
- ultraGridColumn27.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn28.Header.VisiblePosition = 27;
- ultraGridColumn28.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn29.Header.VisiblePosition = 28;
- ultraGridColumn29.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn30.Header.VisiblePosition = 29;
- ultraGridColumn30.Hidden = true;
- ultraGridColumn30.RowLayoutColumnInfo.OriginX = 36;
- ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn31.Header.VisiblePosition = 30;
- ultraGridColumn31.Hidden = true;
- ultraGridColumn31.RowLayoutColumnInfo.OriginX = 38;
- ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn32.Header.VisiblePosition = 31;
- ultraGridColumn32.Hidden = true;
- ultraGridColumn33.Header.VisiblePosition = 32;
- ultraGridColumn33.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn34.Header.VisiblePosition = 33;
- ultraGridColumn34.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn35.Header.VisiblePosition = 34;
- ultraGridColumn35.RowLayoutColumnInfo.OriginX = 36;
- ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
- 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});
- ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
- summarySettings1.DisplayFormat = "{0}";
- summarySettings1.GroupBySummaryValueAppearance = appearance8;
- summarySettings2.DisplayFormat = "{0}";
- summarySettings2.GroupBySummaryValueAppearance = appearance11;
- summarySettings3.DisplayFormat = "{0}";
- summarySettings3.GroupBySummaryValueAppearance = appearance76;
- summarySettings4.DisplayFormat = "{0}";
- summarySettings4.GroupBySummaryValueAppearance = appearance77;
- ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
- summarySettings1,
- summarySettings2,
- summarySettings3,
- summarySettings4});
- ultraGridBand1.SummaryFooterCaption = "合计";
- this.ultraGridSj.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGridSj.DisplayLayout.DefaultSelectedBackColor = System.Drawing.Color.Empty;
- this.ultraGridSj.DisplayLayout.DefaultSelectedForeColor = System.Drawing.Color.Empty;
- this.ultraGridSj.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Button3D;
- appearance13.TextVAlignAsString = "Middle";
- this.ultraGridSj.DisplayLayout.Override.CellAppearance = appearance13;
- this.ultraGridSj.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.ultraGridSj.DisplayLayout.Override.HeaderAppearance = appearance14;
- this.ultraGridSj.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- this.ultraGridSj.DisplayLayout.Override.MaxSelectedRows = 1;
- this.ultraGridSj.DisplayLayout.Override.MinRowHeight = 21;
- appearance15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- appearance15.TextVAlignAsString = "Middle";
- this.ultraGridSj.DisplayLayout.Override.RowSelectorAppearance = appearance15;
- this.ultraGridSj.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ultraGridSj.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ultraGridSj.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- this.ultraGridSj.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGridSj.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGridSj.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGridSj.Location = new System.Drawing.Point(0, 0);
- this.ultraGridSj.Name = "ultraGridSj";
- this.ultraGridSj.Size = new System.Drawing.Size(906, 425);
- this.ultraGridSj.TabIndex = 5;
- //
- // dataSet2
- //
- this.dataSet2.DataSetName = "NewDataSet";
- 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.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.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";
- //
- // ultraTabPageControl3
- //
- this.ultraTabPageControl3.Controls.Add(this.ultraGridJl);
- this.ultraTabPageControl3.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl3.Margin = new System.Windows.Forms.Padding(2);
- this.ultraTabPageControl3.Name = "ultraTabPageControl3";
- this.ultraTabPageControl3.Size = new System.Drawing.Size(906, 425);
- //
- // ultraGridJl
- //
- this.ultraGridJl.DataMember = "校秤记录";
- this.ultraGridJl.DataSource = this.dataSet1;
- ultraGridColumn36.Header.VisiblePosition = 0;
- ultraGridColumn36.Hidden = true;
- ultraGridColumn37.Header.VisiblePosition = 1;
- ultraGridColumn37.Hidden = true;
- ultraGridColumn38.Header.VisiblePosition = 2;
- ultraGridColumn38.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn39.Header.VisiblePosition = 3;
- ultraGridColumn39.Hidden = true;
- ultraGridColumn40.Header.VisiblePosition = 4;
- ultraGridColumn40.Hidden = true;
- ultraGridColumn40.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn41.Header.VisiblePosition = 5;
- ultraGridColumn41.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn42.Header.VisiblePosition = 6;
- ultraGridColumn42.Hidden = true;
- ultraGridColumn43.Header.VisiblePosition = 7;
- ultraGridColumn43.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn44.Header.VisiblePosition = 8;
- ultraGridColumn44.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(126, 0);
- ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn45.Header.VisiblePosition = 9;
- ultraGridColumn45.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn46.Header.VisiblePosition = 10;
- ultraGridColumn46.Hidden = true;
- ultraGridColumn46.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn46.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn46.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn47.Header.VisiblePosition = 11;
- ultraGridColumn47.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(126, 0);
- ultraGridColumn47.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn47.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn48.Header.VisiblePosition = 12;
- ultraGridColumn48.Hidden = true;
- ultraGridColumn48.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn48.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn48.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn49.Header.VisiblePosition = 13;
- ultraGridColumn49.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn49.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(126, 0);
- ultraGridColumn49.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn49.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn50.Header.VisiblePosition = 14;
- ultraGridColumn50.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn50.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn50.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn51.Header.VisiblePosition = 15;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41,
- ultraGridColumn42,
- ultraGridColumn43,
- ultraGridColumn44,
- ultraGridColumn45,
- ultraGridColumn46,
- ultraGridColumn47,
- ultraGridColumn48,
- ultraGridColumn49,
- ultraGridColumn50,
- ultraGridColumn51});
- ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
- ultraGridColumn52.Header.VisiblePosition = 0;
- ultraGridColumn52.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn52.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn52.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn53.Header.VisiblePosition = 1;
- ultraGridColumn53.Hidden = true;
- ultraGridColumn54.Header.VisiblePosition = 2;
- ultraGridColumn54.Hidden = true;
- ultraGridColumn55.Header.VisiblePosition = 3;
- ultraGridColumn55.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn55.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn56.Header.VisiblePosition = 4;
- ultraGridColumn56.Hidden = true;
- ultraGridColumn57.Header.VisiblePosition = 5;
- ultraGridColumn57.Hidden = true;
- ultraGridColumn58.Header.VisiblePosition = 6;
- ultraGridColumn58.Hidden = true;
- ultraGridColumn59.Header.VisiblePosition = 7;
- ultraGridColumn59.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn59.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn60.Header.VisiblePosition = 8;
- ultraGridColumn60.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn60.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn60.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn61.Header.VisiblePosition = 9;
- ultraGridColumn61.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn61.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn61.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn62.Header.VisiblePosition = 10;
- ultraGridColumn62.Hidden = true;
- ultraGridColumn63.Header.VisiblePosition = 11;
- ultraGridColumn63.Hidden = true;
- ultraGridColumn64.Header.VisiblePosition = 12;
- ultraGridColumn64.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn64.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn64.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn64.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn65.Header.VisiblePosition = 13;
- ultraGridColumn65.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn65.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn65.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn65.RowLayoutColumnInfo.SpanY = 2;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn52,
- ultraGridColumn53,
- ultraGridColumn54,
- ultraGridColumn55,
- ultraGridColumn56,
- ultraGridColumn57,
- ultraGridColumn58,
- ultraGridColumn59,
- ultraGridColumn60,
- ultraGridColumn61,
- ultraGridColumn62,
- ultraGridColumn63,
- ultraGridColumn64,
- ultraGridColumn65});
- ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
- this.ultraGridJl.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGridJl.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.ultraGridJl.DisplayLayout.DefaultSelectedBackColor = System.Drawing.Color.Empty;
- this.ultraGridJl.DisplayLayout.DefaultSelectedForeColor = System.Drawing.Color.Empty;
- this.ultraGridJl.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Button3D;
- appearance21.TextVAlignAsString = "Middle";
- this.ultraGridJl.DisplayLayout.Override.CellAppearance = appearance21;
- this.ultraGridJl.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
- appearance4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- appearance4.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- this.ultraGridJl.DisplayLayout.Override.HeaderAppearance = appearance4;
- this.ultraGridJl.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- this.ultraGridJl.DisplayLayout.Override.MaxSelectedRows = 1;
- this.ultraGridJl.DisplayLayout.Override.MinRowHeight = 21;
- appearance22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- appearance22.TextVAlignAsString = "Middle";
- this.ultraGridJl.DisplayLayout.Override.RowSelectorAppearance = appearance22;
- this.ultraGridJl.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ultraGridJl.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ultraGridJl.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- this.ultraGridJl.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGridJl.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGridJl.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGridJl.Location = new System.Drawing.Point(0, 0);
- this.ultraGridJl.Name = "ultraGridJl";
- this.ultraGridJl.Size = new System.Drawing.Size(906, 425);
- this.ultraGridJl.TabIndex = 6;
- //
- // dataSet1
- //
- this.dataSet1.DataSetName = "NewDataSet";
- this.dataSet1.Relations.AddRange(new System.Data.DataRelation[] {
- new System.Data.DataRelation("Relation1", "校秤记录", "校秤子表", new string[] {
- "calibrationMainNo"}, new string[] {
- "calibrationMainNo"}, false)});
- this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
- this.dtCalibration,
- this.dtJGPointInfo,
- this.dtBranch});
- //
- // dtCalibration
- //
- this.dtCalibration.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn126,
- this.dataColumn127,
- this.dataColumn128,
- this.dataColumn129,
- this.dataColumn130,
- this.dataColumn131,
- this.dataColumn132,
- this.dataColumn133,
- this.dataColumn134,
- this.dataColumn135,
- this.dataColumn136,
- this.dataColumn137,
- this.dataColumn138,
- this.dataColumn139,
- this.dataColumn140});
- this.dtCalibration.Constraints.AddRange(new System.Data.Constraint[] {
- new System.Data.UniqueConstraint("Constraint1", new string[] {
- "calibrationMainNo"}, false)});
- this.dtCalibration.TableName = "校秤记录";
- //
- // dataColumn126
- //
- this.dataColumn126.Caption = "校秤编号";
- this.dataColumn126.ColumnName = "calibrationMainNo";
- //
- // dataColumn127
- //
- this.dataColumn127.Caption = "计量点编号";
- this.dataColumn127.ColumnName = "baseSpotNo";
- //
- // dataColumn128
- //
- this.dataColumn128.Caption = "计量点名称";
- this.dataColumn128.ColumnName = "baseSpotName";
- //
- // dataColumn129
- //
- this.dataColumn129.Caption = "计量点类型编号";
- this.dataColumn129.ColumnName = "spotTypeNo";
- //
- // dataColumn130
- //
- this.dataColumn130.Caption = "计量点类型名称";
- this.dataColumn130.ColumnName = "spotTypeName";
- //
- // dataColumn131
- //
- this.dataColumn131.Caption = "校秤有效次数";
- this.dataColumn131.ColumnName = "calibrationNum";
- //
- // dataColumn132
- //
- this.dataColumn132.Caption = "校秤类型编号";
- this.dataColumn132.ColumnName = "calibrationTypeNo";
- //
- // dataColumn133
- //
- this.dataColumn133.Caption = "校秤类型名";
- this.dataColumn133.ColumnName = "calibrationTypeName";
- //
- // dataColumn134
- //
- this.dataColumn134.Caption = "校秤有效次数";
- this.dataColumn134.ColumnName = "calibrationActNum";
- //
- // dataColumn135
- //
- this.dataColumn135.Caption = "状态";
- this.dataColumn135.ColumnName = "valueFlag";
- //
- // dataColumn136
- //
- this.dataColumn136.Caption = "校秤对比计量点编号";
- this.dataColumn136.ColumnName = "baseContrastSpotNo";
- //
- // dataColumn137
- //
- this.dataColumn137.Caption = "校秤对比计量点";
- this.dataColumn137.ColumnName = "baseContrastSpotName";
- //
- // dataColumn138
- //
- this.dataColumn138.Caption = "校秤成功对比点编号";
- this.dataColumn138.ColumnName = "baseSuccContSpotNo";
- //
- // dataColumn139
- //
- this.dataColumn139.Caption = "校秤成功对比点";
- this.dataColumn139.ColumnName = "baseSuccConSpotName";
- //
- // dataColumn140
- //
- this.dataColumn140.Caption = "校秤时间";
- this.dataColumn140.ColumnName = "calibrationMainTime";
- //
- // dtJGPointInfo
- //
- this.dtJGPointInfo.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn157,
- this.dataColumn158,
- this.dataColumn159,
- this.dataColumn160,
- this.dataColumn220});
- this.dtJGPointInfo.TableName = "已接管计量点";
- //
- // dataColumn157
- //
- this.dataColumn157.Caption = "接管状态";
- this.dataColumn157.ColumnName = "validFlag";
- //
- // dataColumn158
- //
- this.dataColumn158.ColumnName = "baseSpotNo";
- //
- // dataColumn159
- //
- this.dataColumn159.Caption = "计量点";
- this.dataColumn159.ColumnName = "baseSpotName";
- //
- // dataColumn160
- //
- this.dataColumn160.Caption = "接管ip";
- this.dataColumn160.ColumnName = "controlIp";
- //
- // dataColumn220
- //
- this.dataColumn220.Caption = "重量偏差值";
- this.dataColumn220.ColumnName = "weightDiff";
- //
- // dtBranch
- //
- this.dtBranch.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn144,
- this.dataColumn145,
- this.dataColumn146,
- this.dataColumn147,
- this.dataColumn148,
- this.dataColumn149,
- this.dataColumn150,
- this.dataColumn151,
- this.dataColumn152,
- this.dataColumn153,
- this.dataColumn154,
- this.dataColumn161,
- this.dataColumn162,
- this.dataColumn163});
- this.dtBranch.Constraints.AddRange(new System.Data.Constraint[] {
- new System.Data.ForeignKeyConstraint("Relation1", "校秤记录", new string[] {
- "calibrationMainNo"}, new string[] {
- "calibrationMainNo"}, System.Data.AcceptRejectRule.None, System.Data.Rule.Cascade, System.Data.Rule.Cascade)});
- this.dtBranch.TableName = "校秤子表";
- //
- // dataColumn144
- //
- this.dataColumn144.Caption = "编号";
- this.dataColumn144.ColumnName = "calibrationBranchNo";
- //
- // dataColumn145
- //
- this.dataColumn145.ColumnName = "calibrationMainNo";
- //
- // dataColumn146
- //
- this.dataColumn146.ColumnName = "baseSpotNo";
- //
- // dataColumn147
- //
- this.dataColumn147.Caption = "计量点";
- this.dataColumn147.ColumnName = "baseSpotName";
- //
- // dataColumn148
- //
- this.dataColumn148.ColumnName = "spotTypeNo";
- //
- // dataColumn149
- //
- this.dataColumn149.Caption = "计量点类型";
- this.dataColumn149.ColumnName = "spotTypeName";
- //
- // dataColumn150
- //
- this.dataColumn150.ColumnName = "calibrationTypeNo";
- //
- // dataColumn151
- //
- this.dataColumn151.Caption = "校秤类型";
- this.dataColumn151.ColumnName = "calibrationTypeName";
- //
- // dataColumn152
- //
- this.dataColumn152.Caption = "校秤重量";
- this.dataColumn152.ColumnName = "calibrationWeight";
- //
- // dataColumn153
- //
- this.dataColumn153.Caption = "状态";
- this.dataColumn153.ColumnName = "valueFlag";
- //
- // dataColumn154
- //
- this.dataColumn154.Caption = "比对校秤计量编号";
- this.dataColumn154.ColumnName = "calibrContrastBranchNo";
- //
- // dataColumn161
- //
- this.dataColumn161.ColumnName = "createManNo";
- //
- // dataColumn162
- //
- this.dataColumn162.Caption = "计量员";
- this.dataColumn162.ColumnName = "createManName";
- //
- // dataColumn163
- //
- this.dataColumn163.Caption = "校秤时间";
- this.dataColumn163.ColumnName = "createTime";
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.panel3);
- this.ultraGroupBox1.Controls.Add(this.panel1);
- this.ultraGroupBox1.Controls.Add(this.panel2);
- 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(2);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(1709, 842);
- this.ultraGroupBox1.TabIndex = 3;
- this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // panel3
- //
- this.panel3.AutoScroll = true;
- this.panel3.BackColor = System.Drawing.Color.Transparent;
- this.panel3.Controls.Add(this.uTab);
- this.panel3.Controls.Add(this.panel14);
- this.panel3.Controls.Add(this.panel11);
- this.panel3.Controls.Add(this.panel10);
- this.panel3.Controls.Add(this.panel5);
- this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel3.Location = new System.Drawing.Point(418, 0);
- this.panel3.Margin = new System.Windows.Forms.Padding(2);
- this.panel3.MinimumSize = new System.Drawing.Size(518, 632);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(908, 839);
- this.panel3.TabIndex = 5;
- //
- // uTab
- //
- this.uTab.Controls.Add(this.ultraTabSharedControlsPage1);
- this.uTab.Controls.Add(this.ultraTabPageControl1);
- this.uTab.Controls.Add(this.ultraTabPageControl3);
- this.uTab.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uTab.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uTab.Location = new System.Drawing.Point(0, 388);
- this.uTab.Margin = new System.Windows.Forms.Padding(2);
- this.uTab.Name = "uTab";
- this.uTab.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.uTab.Size = new System.Drawing.Size(908, 451);
- this.uTab.TabIndex = 5;
- ultraTab1.TabPage = this.ultraTabPageControl1;
- ultraTab1.Text = "计量实绩";
- ultraTab3.TabPage = this.ultraTabPageControl3;
- ultraTab3.Text = "校秤记录";
- this.uTab.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab1,
- ultraTab3});
- this.uTab.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(2);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(906, 425);
- //
- // panel14
- //
- this.panel14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel14.Controls.Add(this.cbPC);
- this.panel14.Controls.Add(this.txtWcWgt);
- this.panel14.Controls.Add(this.label3);
- this.panel14.Controls.Add(this.txtWdWgt);
- this.panel14.Controls.Add(this.cbAuto);
- this.panel14.Controls.Add(this.btnSave);
- this.panel14.Controls.Add(this.btnCheckBalance);
- this.panel14.Controls.Add(this.btnOpenVoice);
- this.panel14.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel14.Location = new System.Drawing.Point(0, 347);
- this.panel14.Margin = new System.Windows.Forms.Padding(2);
- this.panel14.Name = "panel14";
- this.panel14.Size = new System.Drawing.Size(908, 41);
- this.panel14.TabIndex = 4;
- //
- // cbPC
- //
- this.cbPC.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbPC.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbPC.FormattingEnabled = true;
- this.cbPC.Items.AddRange(new object[] {
- "±",
- "+",
- "-"});
- this.cbPC.Location = new System.Drawing.Point(378, 6);
- this.cbPC.Name = "cbPC";
- this.cbPC.Size = new System.Drawing.Size(51, 28);
- this.cbPC.TabIndex = 18;
- this.cbPC.Visible = false;
- //
- // txtWcWgt
- //
- this.txtWcWgt.DecimalPlaces = 1;
- this.txtWcWgt.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtWcWgt.Location = new System.Drawing.Point(437, 4);
- this.txtWcWgt.Maximum = new decimal(new int[] {
- 10000,
- 0,
- 0,
- 0});
- this.txtWcWgt.Name = "txtWcWgt";
- this.txtWcWgt.Size = new System.Drawing.Size(118, 29);
- this.txtWcWgt.TabIndex = 17;
- this.txtWcWgt.Visible = false;
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label3.Location = new System.Drawing.Point(156, 10);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(95, 16);
- this.label3.TabIndex = 15;
- this.label3.Text = "稳定值(kg)";
- this.label3.Visible = false;
- //
- // txtWdWgt
- //
- this.txtWdWgt.DecimalPlaces = 1;
- this.txtWdWgt.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtWdWgt.Location = new System.Drawing.Point(254, 4);
- this.txtWdWgt.Maximum = new decimal(new int[] {
- 10000,
- 0,
- 0,
- 0});
- this.txtWdWgt.Name = "txtWdWgt";
- this.txtWdWgt.Size = new System.Drawing.Size(118, 29);
- this.txtWdWgt.TabIndex = 14;
- this.txtWdWgt.Visible = false;
- //
- // cbAuto
- //
- this.cbAuto.AutoSize = true;
- this.cbAuto.Dock = System.Windows.Forms.DockStyle.Left;
- this.cbAuto.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbAuto.Location = new System.Drawing.Point(0, 0);
- this.cbAuto.Name = "cbAuto";
- this.cbAuto.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
- this.cbAuto.Size = new System.Drawing.Size(118, 39);
- this.cbAuto.TabIndex = 13;
- this.cbAuto.Text = "自动过磅";
- this.cbAuto.UseVisualStyleBackColor = true;
- this.cbAuto.CheckedChanged += new System.EventHandler(this.cbAuto_CheckedChanged);
- //
- // btnSave
- //
- this.btnSave.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnSave.Font = new System.Drawing.Font("楷体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)), true);
- this.btnSave.ForeColor = System.Drawing.Color.White;
- this.btnSave.Location = new System.Drawing.Point(298, 4);
- this.btnSave.Name = "btnSave";
- this.btnSave.Size = new System.Drawing.Size(92, 32);
- this.btnSave.TabIndex = 9;
- this.btnSave.Text = "保存";
- this.btnSave.UseVisualStyleBackColor = false;
- this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
- //
- // btnCheckBalance
- //
- this.btnCheckBalance.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnCheckBalance.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnCheckBalance.Font = new System.Drawing.Font("楷体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)), true);
- this.btnCheckBalance.ForeColor = System.Drawing.Color.White;
- this.btnCheckBalance.Location = new System.Drawing.Point(581, 4);
- this.btnCheckBalance.Name = "btnCheckBalance";
- this.btnCheckBalance.Size = new System.Drawing.Size(92, 32);
- this.btnCheckBalance.TabIndex = 7;
- this.btnCheckBalance.Text = "校秤";
- this.btnCheckBalance.UseVisualStyleBackColor = false;
- this.btnCheckBalance.Click += new System.EventHandler(this.btnCheckBalance_Click);
- //
- // btnOpenVoice
- //
- this.btnOpenVoice.Location = new System.Drawing.Point(0, 0);
- this.btnOpenVoice.Name = "btnOpenVoice";
- this.btnOpenVoice.Size = new System.Drawing.Size(75, 23);
- this.btnOpenVoice.TabIndex = 19;
- //
- // panel11
- //
- this.panel11.Controls.Add(this.tableLayoutPanel1);
- this.panel11.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel11.Location = new System.Drawing.Point(0, 100);
- this.panel11.Margin = new System.Windows.Forms.Padding(2);
- this.panel11.Name = "panel11";
- this.panel11.Size = new System.Drawing.Size(908, 247);
- this.panel11.TabIndex = 3;
- //
- // tableLayoutPanel1
- //
- this.tableLayoutPanel1.ColumnCount = 4;
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel1.Controls.Add(this.txtBucketAddValue, 3, 6);
- this.tableLayoutPanel1.Controls.Add(this.label18, 2, 6);
- this.tableLayoutPanel1.Controls.Add(this.txtBucketNo, 1, 6);
- this.tableLayoutPanel1.Controls.Add(this.label6, 0, 6);
- this.tableLayoutPanel1.Controls.Add(this.cmbBUCKET_NO, 1, 4);
- this.tableLayoutPanel1.Controls.Add(this.cmbDH, 1, 5);
- this.tableLayoutPanel1.Controls.Add(this.txtMEMO, 3, 5);
- this.tableLayoutPanel1.Controls.Add(this.cmbStandard, 1, 1);
- this.tableLayoutPanel1.Controls.Add(this.cmbGrade, 3, 0);
- this.tableLayoutPanel1.Controls.Add(this.cmbMatterNo, 1, 0);
- this.tableLayoutPanel1.Controls.Add(this.txtBLOCK_NUM, 3, 1);
- this.tableLayoutPanel1.Controls.Add(this.label7, 0, 3);
- this.tableLayoutPanel1.Controls.Add(this.label8, 0, 2);
- this.tableLayoutPanel1.Controls.Add(this.label9, 0, 1);
- this.tableLayoutPanel1.Controls.Add(this.label10, 0, 0);
- this.tableLayoutPanel1.Controls.Add(this.label11, 2, 3);
- this.tableLayoutPanel1.Controls.Add(this.label12, 2, 2);
- this.tableLayoutPanel1.Controls.Add(this.label13, 2, 1);
- this.tableLayoutPanel1.Controls.Add(this.label14, 2, 0);
- this.tableLayoutPanel1.Controls.Add(this.txtSEAL_NO, 3, 3);
- this.tableLayoutPanel1.Controls.Add(this.txtPACKAGE_NO, 1, 3);
- this.tableLayoutPanel1.Controls.Add(this.txtBATCH_NO, 1, 2);
- this.tableLayoutPanel1.Controls.Add(this.label15, 0, 4);
- this.tableLayoutPanel1.Controls.Add(this.txtCOMBIN_NO, 3, 4);
- this.tableLayoutPanel1.Controls.Add(this.label16, 2, 4);
- this.tableLayoutPanel1.Controls.Add(this.label17, 0, 5);
- this.tableLayoutPanel1.Controls.Add(this.txtPRODUCT_DATE, 3, 2);
- this.tableLayoutPanel1.Controls.Add(this.label1, 2, 5);
- this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
- this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
- this.tableLayoutPanel1.Name = "tableLayoutPanel1";
- this.tableLayoutPanel1.Padding = new System.Windows.Forms.Padding(0, 5, 0, 0);
- this.tableLayoutPanel1.RowCount = 7;
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.7F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
- this.tableLayoutPanel1.Size = new System.Drawing.Size(908, 247);
- this.tableLayoutPanel1.TabIndex = 5;
- //
- // txtBucketAddValue
- //
- this.txtBucketAddValue.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtBucketAddValue.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtBucketAddValue.Location = new System.Drawing.Point(557, 212);
- this.txtBucketAddValue.Name = "txtBucketAddValue";
- this.txtBucketAddValue.Size = new System.Drawing.Size(348, 29);
- this.txtBucketAddValue.TabIndex = 105;
- //
- // label18
- //
- this.label18.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label18.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label18.Location = new System.Drawing.Point(456, 214);
- this.label18.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(98, 33);
- this.label18.TabIndex = 104;
- this.label18.Text = "桶号增值";
- this.label18.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // txtBucketNo
- //
- this.txtBucketNo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtBucketNo.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtBucketNo.Location = new System.Drawing.Point(103, 212);
- this.txtBucketNo.Maximum = new decimal(new int[] {
- 1000,
- 0,
- 0,
- 0});
- this.txtBucketNo.Name = "txtBucketNo";
- this.txtBucketNo.Size = new System.Drawing.Size(348, 29);
- this.txtBucketNo.TabIndex = 103;
- //
- // label6
- //
- this.label6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label6.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label6.Location = new System.Drawing.Point(2, 214);
- this.label6.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(98, 33);
- this.label6.TabIndex = 102;
- this.label6.Text = "起始桶号";
- this.label6.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // cmbBUCKET_NO
- //
- this.cmbBUCKET_NO.CheckedListSettings.CheckStateMember = "";
- appearance1.BackColor = System.Drawing.SystemColors.Window;
- appearance1.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmbBUCKET_NO.DisplayLayout.Appearance = appearance1;
- this.cmbBUCKET_NO.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmbBUCKET_NO.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance5.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance5.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance5.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance5.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbBUCKET_NO.DisplayLayout.GroupByBox.Appearance = appearance5;
- appearance6.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbBUCKET_NO.DisplayLayout.GroupByBox.BandLabelAppearance = appearance6;
- this.cmbBUCKET_NO.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance10.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance10.BackColor2 = System.Drawing.SystemColors.Control;
- appearance10.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance10.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbBUCKET_NO.DisplayLayout.GroupByBox.PromptAppearance = appearance10;
- this.cmbBUCKET_NO.DisplayLayout.MaxColScrollRegions = 1;
- this.cmbBUCKET_NO.DisplayLayout.MaxRowScrollRegions = 1;
- appearance12.BackColor = System.Drawing.SystemColors.Window;
- appearance12.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmbBUCKET_NO.DisplayLayout.Override.ActiveCellAppearance = appearance12;
- appearance19.BackColor = System.Drawing.SystemColors.Highlight;
- appearance19.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmbBUCKET_NO.DisplayLayout.Override.ActiveRowAppearance = appearance19;
- this.cmbBUCKET_NO.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmbBUCKET_NO.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance20.BackColor = System.Drawing.SystemColors.Window;
- this.cmbBUCKET_NO.DisplayLayout.Override.CardAreaAppearance = appearance20;
- appearance23.BorderColor = System.Drawing.Color.Silver;
- appearance23.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmbBUCKET_NO.DisplayLayout.Override.CellAppearance = appearance23;
- this.cmbBUCKET_NO.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmbBUCKET_NO.DisplayLayout.Override.CellPadding = 0;
- appearance24.BackColor = System.Drawing.SystemColors.Control;
- appearance24.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance24.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance24.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance24.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbBUCKET_NO.DisplayLayout.Override.GroupByRowAppearance = appearance24;
- appearance25.TextHAlignAsString = "Left";
- this.cmbBUCKET_NO.DisplayLayout.Override.HeaderAppearance = appearance25;
- this.cmbBUCKET_NO.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmbBUCKET_NO.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance26.BackColor = System.Drawing.SystemColors.Window;
- appearance26.BorderColor = System.Drawing.Color.Silver;
- this.cmbBUCKET_NO.DisplayLayout.Override.RowAppearance = appearance26;
- this.cmbBUCKET_NO.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance27.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmbBUCKET_NO.DisplayLayout.Override.TemplateAddRowAppearance = appearance27;
- this.cmbBUCKET_NO.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmbBUCKET_NO.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmbBUCKET_NO.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmbBUCKET_NO.Dock = System.Windows.Forms.DockStyle.Fill;
- this.cmbBUCKET_NO.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbBUCKET_NO.Location = new System.Drawing.Point(103, 144);
- this.cmbBUCKET_NO.Name = "cmbBUCKET_NO";
- this.cmbBUCKET_NO.Size = new System.Drawing.Size(348, 29);
- this.cmbBUCKET_NO.TabIndex = 101;
- this.cmbBUCKET_NO.RowSelected += new Infragistics.Win.UltraWinGrid.RowSelectedEventHandler(this.cmbBUCKET_NO_RowSelected);
- //
- // cmbDH
- //
- this.cmbDH.CheckedListSettings.CheckStateMember = "";
- appearance52.BackColor = System.Drawing.SystemColors.Window;
- appearance52.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmbDH.DisplayLayout.Appearance = appearance52;
- this.cmbDH.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmbDH.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance65.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance65.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance65.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance65.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbDH.DisplayLayout.GroupByBox.Appearance = appearance65;
- appearance66.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbDH.DisplayLayout.GroupByBox.BandLabelAppearance = appearance66;
- this.cmbDH.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance67.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance67.BackColor2 = System.Drawing.SystemColors.Control;
- appearance67.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance67.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbDH.DisplayLayout.GroupByBox.PromptAppearance = appearance67;
- this.cmbDH.DisplayLayout.MaxColScrollRegions = 1;
- this.cmbDH.DisplayLayout.MaxRowScrollRegions = 1;
- appearance68.BackColor = System.Drawing.SystemColors.Window;
- appearance68.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmbDH.DisplayLayout.Override.ActiveCellAppearance = appearance68;
- appearance69.BackColor = System.Drawing.SystemColors.Highlight;
- appearance69.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmbDH.DisplayLayout.Override.ActiveRowAppearance = appearance69;
- this.cmbDH.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmbDH.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance70.BackColor = System.Drawing.SystemColors.Window;
- this.cmbDH.DisplayLayout.Override.CardAreaAppearance = appearance70;
- appearance71.BorderColor = System.Drawing.Color.Silver;
- appearance71.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmbDH.DisplayLayout.Override.CellAppearance = appearance71;
- this.cmbDH.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmbDH.DisplayLayout.Override.CellPadding = 0;
- appearance72.BackColor = System.Drawing.SystemColors.Control;
- appearance72.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance72.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance72.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance72.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbDH.DisplayLayout.Override.GroupByRowAppearance = appearance72;
- appearance73.TextHAlignAsString = "Left";
- this.cmbDH.DisplayLayout.Override.HeaderAppearance = appearance73;
- this.cmbDH.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmbDH.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance74.BackColor = System.Drawing.SystemColors.Window;
- appearance74.BorderColor = System.Drawing.Color.Silver;
- this.cmbDH.DisplayLayout.Override.RowAppearance = appearance74;
- this.cmbDH.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance75.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmbDH.DisplayLayout.Override.TemplateAddRowAppearance = appearance75;
- this.cmbDH.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmbDH.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmbDH.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmbDH.Dock = System.Windows.Forms.DockStyle.Fill;
- this.cmbDH.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbDH.Location = new System.Drawing.Point(103, 178);
- this.cmbDH.Name = "cmbDH";
- this.cmbDH.Size = new System.Drawing.Size(348, 29);
- this.cmbDH.TabIndex = 100;
- this.cmbDH.RowSelected += new Infragistics.Win.UltraWinGrid.RowSelectedEventHandler(this.cmbDH_RowSelected);
- //
- // txtMEMO
- //
- appearance7.BackColor = System.Drawing.Color.White;
- appearance7.BackColor2 = System.Drawing.Color.White;
- appearance7.BackColorDisabled = System.Drawing.Color.White;
- appearance7.BackColorDisabled2 = System.Drawing.Color.White;
- appearance7.ForeColor = System.Drawing.Color.Black;
- appearance7.ForeColorDisabled = System.Drawing.Color.Black;
- this.txtMEMO.Appearance = appearance7;
- this.txtMEMO.BackColor = System.Drawing.Color.White;
- this.txtMEMO.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtMEMO.Font = new System.Drawing.Font("宋体", 13F);
- this.txtMEMO.Location = new System.Drawing.Point(557, 178);
- this.txtMEMO.Name = "txtMEMO";
- this.txtMEMO.Size = new System.Drawing.Size(348, 27);
- this.txtMEMO.TabIndex = 99;
- //
- // cmbStandard
- //
- this.cmbStandard.CheckedListSettings.CheckStateMember = "";
- appearance53.BackColor = System.Drawing.SystemColors.Window;
- appearance53.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmbStandard.DisplayLayout.Appearance = appearance53;
- this.cmbStandard.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmbStandard.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance54.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance54.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance54.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance54.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbStandard.DisplayLayout.GroupByBox.Appearance = appearance54;
- appearance55.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbStandard.DisplayLayout.GroupByBox.BandLabelAppearance = appearance55;
- this.cmbStandard.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance56.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance56.BackColor2 = System.Drawing.SystemColors.Control;
- appearance56.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance56.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbStandard.DisplayLayout.GroupByBox.PromptAppearance = appearance56;
- this.cmbStandard.DisplayLayout.MaxColScrollRegions = 1;
- this.cmbStandard.DisplayLayout.MaxRowScrollRegions = 1;
- appearance57.BackColor = System.Drawing.SystemColors.Window;
- appearance57.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmbStandard.DisplayLayout.Override.ActiveCellAppearance = appearance57;
- appearance58.BackColor = System.Drawing.SystemColors.Highlight;
- appearance58.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmbStandard.DisplayLayout.Override.ActiveRowAppearance = appearance58;
- this.cmbStandard.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmbStandard.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance59.BackColor = System.Drawing.SystemColors.Window;
- this.cmbStandard.DisplayLayout.Override.CardAreaAppearance = appearance59;
- appearance60.BorderColor = System.Drawing.Color.Silver;
- appearance60.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmbStandard.DisplayLayout.Override.CellAppearance = appearance60;
- this.cmbStandard.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmbStandard.DisplayLayout.Override.CellPadding = 0;
- appearance61.BackColor = System.Drawing.SystemColors.Control;
- appearance61.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance61.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance61.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance61.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbStandard.DisplayLayout.Override.GroupByRowAppearance = appearance61;
- appearance62.TextHAlignAsString = "Left";
- this.cmbStandard.DisplayLayout.Override.HeaderAppearance = appearance62;
- this.cmbStandard.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmbStandard.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance63.BackColor = System.Drawing.SystemColors.Window;
- appearance63.BorderColor = System.Drawing.Color.Silver;
- this.cmbStandard.DisplayLayout.Override.RowAppearance = appearance63;
- this.cmbStandard.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance64.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmbStandard.DisplayLayout.Override.TemplateAddRowAppearance = appearance64;
- this.cmbStandard.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmbStandard.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmbStandard.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmbStandard.Dock = System.Windows.Forms.DockStyle.Fill;
- this.cmbStandard.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbStandard.Location = new System.Drawing.Point(103, 42);
- this.cmbStandard.Name = "cmbStandard";
- this.cmbStandard.Size = new System.Drawing.Size(348, 29);
- this.cmbStandard.TabIndex = 97;
- //
- // cmbGrade
- //
- this.cmbGrade.CheckedListSettings.CheckStateMember = "";
- appearance28.BackColor = System.Drawing.SystemColors.Window;
- appearance28.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmbGrade.DisplayLayout.Appearance = appearance28;
- this.cmbGrade.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmbGrade.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance29.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance29.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance29.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance29.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbGrade.DisplayLayout.GroupByBox.Appearance = appearance29;
- appearance30.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbGrade.DisplayLayout.GroupByBox.BandLabelAppearance = appearance30;
- this.cmbGrade.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance31.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance31.BackColor2 = System.Drawing.SystemColors.Control;
- appearance31.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance31.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbGrade.DisplayLayout.GroupByBox.PromptAppearance = appearance31;
- this.cmbGrade.DisplayLayout.MaxColScrollRegions = 1;
- this.cmbGrade.DisplayLayout.MaxRowScrollRegions = 1;
- appearance32.BackColor = System.Drawing.SystemColors.Window;
- appearance32.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmbGrade.DisplayLayout.Override.ActiveCellAppearance = appearance32;
- appearance33.BackColor = System.Drawing.SystemColors.Highlight;
- appearance33.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmbGrade.DisplayLayout.Override.ActiveRowAppearance = appearance33;
- this.cmbGrade.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmbGrade.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance34.BackColor = System.Drawing.SystemColors.Window;
- this.cmbGrade.DisplayLayout.Override.CardAreaAppearance = appearance34;
- appearance35.BorderColor = System.Drawing.Color.Silver;
- appearance35.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmbGrade.DisplayLayout.Override.CellAppearance = appearance35;
- this.cmbGrade.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmbGrade.DisplayLayout.Override.CellPadding = 0;
- appearance36.BackColor = System.Drawing.SystemColors.Control;
- appearance36.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance36.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance36.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance36.BorderColor = System.Drawing.SystemColors.Window;
- this.cmbGrade.DisplayLayout.Override.GroupByRowAppearance = appearance36;
- appearance37.TextHAlignAsString = "Left";
- this.cmbGrade.DisplayLayout.Override.HeaderAppearance = appearance37;
- this.cmbGrade.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmbGrade.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance38.BackColor = System.Drawing.SystemColors.Window;
- appearance38.BorderColor = System.Drawing.Color.Silver;
- this.cmbGrade.DisplayLayout.Override.RowAppearance = appearance38;
- this.cmbGrade.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance39.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmbGrade.DisplayLayout.Override.TemplateAddRowAppearance = appearance39;
- this.cmbGrade.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmbGrade.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmbGrade.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmbGrade.Dock = System.Windows.Forms.DockStyle.Fill;
- this.cmbGrade.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbGrade.Location = new System.Drawing.Point(557, 8);
- this.cmbGrade.Name = "cmbGrade";
- this.cmbGrade.Size = new System.Drawing.Size(348, 29);
- this.cmbGrade.TabIndex = 95;
- //
- // cmbMatterNo
- //
- this.cmbMatterNo.CheckedListSettings.CheckStateMember = "";
- appearance40.BackColor = System.Drawing.SystemColors.Window;
- appearance40.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmbMatterNo.DisplayLayout.Appearance = appearance40;
- this.cmbMatterNo.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmbMatterNo.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.cmbMatterNo.DisplayLayout.GroupByBox.Appearance = appearance41;
- appearance42.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmbMatterNo.DisplayLayout.GroupByBox.BandLabelAppearance = appearance42;
- this.cmbMatterNo.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.cmbMatterNo.DisplayLayout.GroupByBox.PromptAppearance = appearance43;
- this.cmbMatterNo.DisplayLayout.MaxColScrollRegions = 1;
- this.cmbMatterNo.DisplayLayout.MaxRowScrollRegions = 1;
- appearance44.BackColor = System.Drawing.SystemColors.Window;
- appearance44.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmbMatterNo.DisplayLayout.Override.ActiveCellAppearance = appearance44;
- appearance45.BackColor = System.Drawing.SystemColors.Highlight;
- appearance45.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmbMatterNo.DisplayLayout.Override.ActiveRowAppearance = appearance45;
- this.cmbMatterNo.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmbMatterNo.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance46.BackColor = System.Drawing.SystemColors.Window;
- this.cmbMatterNo.DisplayLayout.Override.CardAreaAppearance = appearance46;
- appearance47.BorderColor = System.Drawing.Color.Silver;
- appearance47.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmbMatterNo.DisplayLayout.Override.CellAppearance = appearance47;
- this.cmbMatterNo.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmbMatterNo.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.cmbMatterNo.DisplayLayout.Override.GroupByRowAppearance = appearance48;
- appearance49.TextHAlignAsString = "Left";
- this.cmbMatterNo.DisplayLayout.Override.HeaderAppearance = appearance49;
- this.cmbMatterNo.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmbMatterNo.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance50.BackColor = System.Drawing.SystemColors.Window;
- appearance50.BorderColor = System.Drawing.Color.Silver;
- this.cmbMatterNo.DisplayLayout.Override.RowAppearance = appearance50;
- this.cmbMatterNo.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance51.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmbMatterNo.DisplayLayout.Override.TemplateAddRowAppearance = appearance51;
- this.cmbMatterNo.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmbMatterNo.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmbMatterNo.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmbMatterNo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.cmbMatterNo.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbMatterNo.Location = new System.Drawing.Point(103, 8);
- this.cmbMatterNo.Name = "cmbMatterNo";
- this.cmbMatterNo.Size = new System.Drawing.Size(348, 29);
- this.cmbMatterNo.TabIndex = 10;
- //
- // txtBLOCK_NUM
- //
- this.txtBLOCK_NUM.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtBLOCK_NUM.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtBLOCK_NUM.Location = new System.Drawing.Point(557, 42);
- this.txtBLOCK_NUM.Name = "txtBLOCK_NUM";
- this.txtBLOCK_NUM.Size = new System.Drawing.Size(348, 29);
- this.txtBLOCK_NUM.TabIndex = 5;
- //
- // label7
- //
- this.label7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label7.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label7.Location = new System.Drawing.Point(2, 112);
- this.label7.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(98, 29);
- this.label7.TabIndex = 1;
- this.label7.Text = "包 号";
- this.label7.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label8
- //
- this.label8.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label8.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label8.Location = new System.Drawing.Point(2, 78);
- this.label8.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(98, 29);
- this.label8.TabIndex = 1;
- this.label8.Text = "批 号";
- this.label8.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label9
- //
- this.label9.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label9.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label9.Location = new System.Drawing.Point(2, 44);
- this.label9.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(98, 29);
- this.label9.TabIndex = 1;
- this.label9.Text = "标 准";
- this.label9.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label10
- //
- this.label10.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label10.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label10.Location = new System.Drawing.Point(2, 10);
- this.label10.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(98, 29);
- this.label10.TabIndex = 1;
- this.label10.Text = "产品名称";
- this.label10.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label11
- //
- this.label11.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label11.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label11.Location = new System.Drawing.Point(456, 112);
- this.label11.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(98, 29);
- this.label11.TabIndex = 1;
- this.label11.Text = "铅 封 号";
- this.label11.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label12
- //
- this.label12.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label12.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label12.Location = new System.Drawing.Point(456, 78);
- this.label12.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(98, 29);
- this.label12.TabIndex = 1;
- this.label12.Text = "生产日期";
- this.label12.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label13
- //
- this.label13.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label13.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label13.Location = new System.Drawing.Point(456, 44);
- this.label13.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(98, 29);
- this.label13.TabIndex = 1;
- this.label13.Text = "块 数";
- this.label13.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label14
- //
- this.label14.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label14.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label14.Location = new System.Drawing.Point(456, 10);
- this.label14.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(98, 29);
- this.label14.TabIndex = 1;
- this.label14.Text = "牌 号";
- this.label14.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // txtSEAL_NO
- //
- appearance3.BackColor = System.Drawing.Color.White;
- appearance3.BackColor2 = System.Drawing.Color.White;
- appearance3.BackColorDisabled = System.Drawing.Color.White;
- appearance3.BackColorDisabled2 = System.Drawing.Color.White;
- appearance3.ForeColor = System.Drawing.Color.Black;
- appearance3.ForeColorDisabled = System.Drawing.Color.Black;
- this.txtSEAL_NO.Appearance = appearance3;
- this.txtSEAL_NO.BackColor = System.Drawing.Color.White;
- this.txtSEAL_NO.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtSEAL_NO.Font = new System.Drawing.Font("宋体", 13F);
- this.txtSEAL_NO.Location = new System.Drawing.Point(557, 110);
- this.txtSEAL_NO.Name = "txtSEAL_NO";
- this.txtSEAL_NO.Size = new System.Drawing.Size(348, 27);
- this.txtSEAL_NO.TabIndex = 7;
- //
- // txtPACKAGE_NO
- //
- appearance79.BackColor = System.Drawing.Color.White;
- appearance79.BackColor2 = System.Drawing.Color.White;
- appearance79.BackColorDisabled = System.Drawing.Color.White;
- appearance79.BackColorDisabled2 = System.Drawing.Color.White;
- appearance79.ForeColor = System.Drawing.Color.Black;
- appearance79.ForeColorDisabled = System.Drawing.Color.Black;
- this.txtPACKAGE_NO.Appearance = appearance79;
- this.txtPACKAGE_NO.BackColor = System.Drawing.Color.White;
- this.txtPACKAGE_NO.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtPACKAGE_NO.Font = new System.Drawing.Font("宋体", 13F);
- this.txtPACKAGE_NO.Location = new System.Drawing.Point(103, 110);
- this.txtPACKAGE_NO.Name = "txtPACKAGE_NO";
- this.txtPACKAGE_NO.Size = new System.Drawing.Size(348, 27);
- this.txtPACKAGE_NO.TabIndex = 6;
- //
- // txtBATCH_NO
- //
- appearance9.BackColor = System.Drawing.Color.White;
- appearance9.BackColor2 = System.Drawing.Color.White;
- appearance9.BackColorDisabled = System.Drawing.Color.White;
- appearance9.BackColorDisabled2 = System.Drawing.Color.White;
- appearance9.ForeColor = System.Drawing.Color.Black;
- appearance9.ForeColorDisabled = System.Drawing.Color.Black;
- this.txtBATCH_NO.Appearance = appearance9;
- this.txtBATCH_NO.BackColor = System.Drawing.Color.White;
- this.txtBATCH_NO.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtBATCH_NO.Font = new System.Drawing.Font("宋体", 13F);
- this.txtBATCH_NO.Location = new System.Drawing.Point(103, 76);
- this.txtBATCH_NO.Name = "txtBATCH_NO";
- this.txtBATCH_NO.Size = new System.Drawing.Size(348, 27);
- this.txtBATCH_NO.TabIndex = 4;
- this.txtBATCH_NO.MouseLeave += new System.EventHandler(this.txtBATCH_NO_MouseLeave);
- //
- // label15
- //
- this.label15.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label15.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label15.Location = new System.Drawing.Point(2, 146);
- this.label15.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(98, 29);
- this.label15.TabIndex = 1;
- this.label15.Text = "桶 类 型";
- this.label15.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // txtCOMBIN_NO
- //
- appearance2.BackColor = System.Drawing.Color.White;
- appearance2.BackColor2 = System.Drawing.Color.White;
- appearance2.BackColorDisabled = System.Drawing.Color.White;
- appearance2.BackColorDisabled2 = System.Drawing.Color.White;
- appearance2.ForeColor = System.Drawing.Color.Black;
- appearance2.ForeColorDisabled = System.Drawing.Color.Black;
- this.txtCOMBIN_NO.Appearance = appearance2;
- this.txtCOMBIN_NO.BackColor = System.Drawing.Color.White;
- this.txtCOMBIN_NO.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtCOMBIN_NO.Font = new System.Drawing.Font("宋体", 13F);
- this.txtCOMBIN_NO.Location = new System.Drawing.Point(557, 144);
- this.txtCOMBIN_NO.Name = "txtCOMBIN_NO";
- this.txtCOMBIN_NO.Size = new System.Drawing.Size(348, 27);
- this.txtCOMBIN_NO.TabIndex = 9;
- //
- // label16
- //
- this.label16.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label16.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label16.Location = new System.Drawing.Point(456, 146);
- this.label16.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(98, 29);
- this.label16.TabIndex = 1;
- this.label16.Text = "组合包号";
- this.label16.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label17
- //
- this.label17.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label17.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label17.Location = new System.Drawing.Point(2, 180);
- this.label17.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(98, 29);
- this.label17.TabIndex = 3;
- this.label17.Text = "斗 号";
- this.label17.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // txtPRODUCT_DATE
- //
- this.txtPRODUCT_DATE.CustomFormat = "yyyy-MM-dd HH:mm:ss";
- this.txtPRODUCT_DATE.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtPRODUCT_DATE.DropDownAlign = System.Windows.Forms.LeftRightAlignment.Right;
- this.txtPRODUCT_DATE.Font = new System.Drawing.Font("宋体", 13F);
- this.txtPRODUCT_DATE.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.txtPRODUCT_DATE.Location = new System.Drawing.Point(557, 76);
- this.txtPRODUCT_DATE.MaxDate = new System.DateTime(2998, 12, 31, 0, 0, 0, 0);
- this.txtPRODUCT_DATE.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
- this.txtPRODUCT_DATE.Name = "txtPRODUCT_DATE";
- this.txtPRODUCT_DATE.Size = new System.Drawing.Size(348, 27);
- this.txtPRODUCT_DATE.TabIndex = 11;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label1.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label1.Location = new System.Drawing.Point(457, 175);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(94, 34);
- this.label1.TabIndex = 98;
- this.label1.Text = "备 注";
- this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // panel10
- //
- this.panel10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel10.Controls.Add(this.tableLayoutPanel3);
- this.panel10.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel10.Location = new System.Drawing.Point(0, 60);
- this.panel10.Margin = new System.Windows.Forms.Padding(2);
- this.panel10.Name = "panel10";
- this.panel10.Size = new System.Drawing.Size(908, 40);
- this.panel10.TabIndex = 2;
- //
- // tableLayoutPanel3
- //
- this.tableLayoutPanel3.ColumnCount = 4;
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
- this.tableLayoutPanel3.Controls.Add(this.txtNetWgt, 3, 0);
- this.tableLayoutPanel3.Controls.Add(this.label2, 2, 0);
- this.tableLayoutPanel3.Controls.Add(this.txtTARE_WEIGHT, 1, 0);
- this.tableLayoutPanel3.Controls.Add(this.label4, 0, 0);
- this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
- this.tableLayoutPanel3.Name = "tableLayoutPanel3";
- this.tableLayoutPanel3.RowCount = 1;
- this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayoutPanel3.Size = new System.Drawing.Size(906, 38);
- this.tableLayoutPanel3.TabIndex = 0;
- //
- // txtNetWgt
- //
- this.txtNetWgt.DecimalPlaces = 1;
- this.txtNetWgt.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtNetWgt.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtNetWgt.Location = new System.Drawing.Point(556, 3);
- this.txtNetWgt.Maximum = new decimal(new int[] {
- 10000,
- 0,
- 0,
- 0});
- this.txtNetWgt.Minimum = new decimal(new int[] {
- 10000,
- 0,
- 0,
- -2147483648});
- this.txtNetWgt.Name = "txtNetWgt";
- this.txtNetWgt.Size = new System.Drawing.Size(347, 30);
- this.txtNetWgt.TabIndex = 12;
- this.txtNetWgt.ValueChanged += new System.EventHandler(this.txtNetWgt_ValueChanged);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label2.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label2.Location = new System.Drawing.Point(456, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(94, 38);
- this.label2.TabIndex = 17;
- this.label2.Text = "净重(kg)";
- this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // txtTARE_WEIGHT
- //
- this.txtTARE_WEIGHT.DecimalPlaces = 1;
- this.txtTARE_WEIGHT.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtTARE_WEIGHT.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtTARE_WEIGHT.Location = new System.Drawing.Point(103, 3);
- this.txtTARE_WEIGHT.Maximum = new decimal(new int[] {
- 10000,
- 0,
- 0,
- 0});
- this.txtTARE_WEIGHT.Minimum = new decimal(new int[] {
- 10000,
- 0,
- 0,
- -2147483648});
- this.txtTARE_WEIGHT.Name = "txtTARE_WEIGHT";
- this.txtTARE_WEIGHT.Size = new System.Drawing.Size(347, 30);
- this.txtTARE_WEIGHT.TabIndex = 4;
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label4.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label4.Location = new System.Drawing.Point(3, 0);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(94, 38);
- this.label4.TabIndex = 16;
- this.label4.Text = "皮重(kg)";
- this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // panel5
- //
- this.panel5.Controls.Add(this.tableLayoutPanel2);
- this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel5.Location = new System.Drawing.Point(0, 0);
- this.panel5.Margin = new System.Windows.Forms.Padding(2);
- this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(908, 60);
- this.panel5.TabIndex = 1;
- //
- // tableLayoutPanel2
- //
- this.tableLayoutPanel2.ColumnCount = 2;
- this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel2.Controls.Add(this.ucStorageWeightKg2, 0, 0);
- this.tableLayoutPanel2.Controls.Add(this.ucStorageWeightKg1, 0, 0);
- this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
- this.tableLayoutPanel2.Name = "tableLayoutPanel2";
- this.tableLayoutPanel2.RowCount = 1;
- this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 60F));
- this.tableLayoutPanel2.Size = new System.Drawing.Size(908, 60);
- this.tableLayoutPanel2.TabIndex = 0;
- //
- // ucStorageWeightKg2
- //
- this.ucStorageWeightKg2.BackColor = System.Drawing.Color.Transparent;
- this.ucStorageWeightKg2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ucStorageWeightKg2.Location = new System.Drawing.Point(457, 3);
- this.ucStorageWeightKg2.Name = "ucStorageWeightKg2";
- this.ucStorageWeightKg2.Size = new System.Drawing.Size(448, 54);
- this.ucStorageWeightKg2.TabIndex = 2;
- //
- // ucStorageWeightKg1
- //
- this.ucStorageWeightKg1.BackColor = System.Drawing.Color.Transparent;
- this.ucStorageWeightKg1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ucStorageWeightKg1.Location = new System.Drawing.Point(3, 3);
- this.ucStorageWeightKg1.Name = "ucStorageWeightKg1";
- this.ucStorageWeightKg1.Size = new System.Drawing.Size(448, 54);
- this.ucStorageWeightKg1.TabIndex = 1;
- //
- // panel1
- //
- this.panel1.AutoScroll = true;
- this.panel1.BackColor = System.Drawing.Color.Transparent;
- this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
- this.panel1.Location = new System.Drawing.Point(3, 0);
- this.panel1.Margin = new System.Windows.Forms.Padding(2);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(415, 839);
- this.panel1.TabIndex = 4;
- //
- // panel2
- //
- this.panel2.BackColor = System.Drawing.Color.Transparent;
- this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel2.Controls.Add(this.groupBox2);
- this.panel2.Controls.Add(this.panel15);
- this.panel2.Controls.Add(this.groupBox1);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Right;
- this.panel2.Location = new System.Drawing.Point(1326, 0);
- this.panel2.Margin = new System.Windows.Forms.Padding(2);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(380, 839);
- this.panel2.TabIndex = 1;
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.txtMsgInfo);
- this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.groupBox2.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox2.ForeColor = System.Drawing.Color.Blue;
- this.groupBox2.Location = new System.Drawing.Point(0, 433);
- this.groupBox2.Margin = new System.Windows.Forms.Padding(2);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Padding = new System.Windows.Forms.Padding(2);
- this.groupBox2.Size = new System.Drawing.Size(378, 404);
- this.groupBox2.TabIndex = 9;
- this.groupBox2.TabStop = false;
- this.groupBox2.Text = "提示信息";
- //
- // txtMsgInfo
- //
- this.txtMsgInfo.BackColor = System.Drawing.Color.White;
- this.txtMsgInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtMsgInfo.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtMsgInfo.Location = new System.Drawing.Point(2, 18);
- this.txtMsgInfo.Multiline = true;
- this.txtMsgInfo.Name = "txtMsgInfo";
- this.txtMsgInfo.ReadOnly = true;
- this.txtMsgInfo.Size = new System.Drawing.Size(374, 384);
- this.txtMsgInfo.TabIndex = 39;
- //
- // panel15
- //
- this.panel15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel15.Controls.Add(this.txtTimeLength);
- this.panel15.Controls.Add(this.label5);
- this.panel15.Controls.Add(this.btnStart);
- this.panel15.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel15.Location = new System.Drawing.Point(0, 389);
- this.panel15.Margin = new System.Windows.Forms.Padding(2);
- this.panel15.Name = "panel15";
- this.panel15.Size = new System.Drawing.Size(378, 44);
- this.panel15.TabIndex = 8;
- //
- // txtTimeLength
- //
- this.txtTimeLength.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtTimeLength.Location = new System.Drawing.Point(259, 5);
- this.txtTimeLength.Maximum = new decimal(new int[] {
- 10,
- 0,
- 0,
- 0});
- this.txtTimeLength.Name = "txtTimeLength";
- this.txtTimeLength.Size = new System.Drawing.Size(101, 29);
- this.txtTimeLength.TabIndex = 18;
- this.txtTimeLength.Value = new decimal(new int[] {
- 3,
- 0,
- 0,
- 0});
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label5.Location = new System.Drawing.Point(145, 12);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(111, 16);
- this.label5.TabIndex = 16;
- this.label5.Text = "稳定时间(秒)";
- //
- // btnStart
- //
- this.btnStart.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnStart.Font = new System.Drawing.Font("楷体", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)), true);
- this.btnStart.ForeColor = System.Drawing.Color.White;
- this.btnStart.Location = new System.Drawing.Point(3, 4);
- this.btnStart.Name = "btnStart";
- this.btnStart.Size = new System.Drawing.Size(95, 32);
- this.btnStart.TabIndex = 6;
- this.btnStart.Text = "接管";
- this.btnStart.UseVisualStyleBackColor = false;
- this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.ultraGridPW);
- this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.groupBox1.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox1.ForeColor = System.Drawing.Color.Blue;
- this.groupBox1.Location = new System.Drawing.Point(0, 0);
- this.groupBox1.Margin = new System.Windows.Forms.Padding(2);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Padding = new System.Windows.Forms.Padding(2);
- this.groupBox1.Size = new System.Drawing.Size(378, 389);
- this.groupBox1.TabIndex = 0;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "派位";
- //
- // ultraGridPW
- //
- this.ultraGridPW.DataMember = "已接管计量点";
- this.ultraGridPW.DataSource = this.dataSet1;
- ultraGridColumn66.Header.VisiblePosition = 0;
- ultraGridColumn66.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn66.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn66.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn66.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn67.Header.VisiblePosition = 1;
- ultraGridColumn67.Hidden = true;
- ultraGridColumn68.Header.VisiblePosition = 2;
- ultraGridColumn68.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn68.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn68.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn68.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn69.Header.VisiblePosition = 3;
- ultraGridColumn69.Hidden = true;
- ultraGridColumn69.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn69.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn69.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn69.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn70.Header.VisiblePosition = 4;
- ultraGridColumn70.Hidden = true;
- ultraGridColumn70.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn70.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn70.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn70.RowLayoutColumnInfo.SpanY = 2;
- ultraGridBand4.Columns.AddRange(new object[] {
- ultraGridColumn66,
- ultraGridColumn67,
- ultraGridColumn68,
- ultraGridColumn69,
- ultraGridColumn70});
- ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
- this.ultraGridPW.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
- this.ultraGridPW.DisplayLayout.DefaultSelectedBackColor = System.Drawing.Color.Empty;
- this.ultraGridPW.DisplayLayout.DefaultSelectedForeColor = System.Drawing.Color.Empty;
- this.ultraGridPW.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Button3D;
- appearance16.TextVAlignAsString = "Middle";
- this.ultraGridPW.DisplayLayout.Override.CellAppearance = appearance16;
- this.ultraGridPW.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
- appearance17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- appearance17.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- this.ultraGridPW.DisplayLayout.Override.HeaderAppearance = appearance17;
- this.ultraGridPW.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- this.ultraGridPW.DisplayLayout.Override.MaxSelectedRows = 1;
- this.ultraGridPW.DisplayLayout.Override.MinRowHeight = 21;
- appearance18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- appearance18.TextVAlignAsString = "Middle";
- this.ultraGridPW.DisplayLayout.Override.RowSelectorAppearance = appearance18;
- this.ultraGridPW.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ultraGridPW.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ultraGridPW.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- this.ultraGridPW.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGridPW.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGridPW.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGridPW.Location = new System.Drawing.Point(2, 18);
- this.ultraGridPW.Name = "ultraGridPW";
- this.ultraGridPW.Size = new System.Drawing.Size(374, 369);
- this.ultraGridPW.TabIndex = 8;
- //
- // plImgShow
- //
- this.plImgShow.Controls.Add(this.pictureShow);
- this.plImgShow.Location = new System.Drawing.Point(257, 300);
- this.plImgShow.Margin = new System.Windows.Forms.Padding(2);
- this.plImgShow.Name = "plImgShow";
- this.plImgShow.Size = new System.Drawing.Size(835, 466);
- this.plImgShow.TabIndex = 43;
- this.plImgShow.Visible = false;
- //
- // pictureShow
- //
- this.pictureShow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- this.pictureShow.Dock = System.Windows.Forms.DockStyle.Fill;
- this.pictureShow.Location = new System.Drawing.Point(0, 0);
- this.pictureShow.Margin = new System.Windows.Forms.Padding(2);
- this.pictureShow.Name = "pictureShow";
- this.pictureShow.Size = new System.Drawing.Size(835, 466);
- this.pictureShow.TabIndex = 1;
- this.pictureShow.TabStop = false;
- this.pictureShow.DoubleClick += new System.EventHandler(this.pictureShow_DoubleClick);
- //
- // timer1
- //
- this.timer1.Interval = 2000;
- this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
- //
- // timer2
- //
- this.timer2.Interval = 1000;
- this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
- //
- // frmMain
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1709, 842);
- this.Controls.Add(this.plImgShow);
- this.Controls.Add(this.ultraGroupBox1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Name = "frmMain";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
- this.Load += new System.EventHandler(this.frmMain_Load);
- this.ultraTabPageControl1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridSj)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- this.ultraTabPageControl3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridJl)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtCalibration)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtJGPointInfo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtBranch)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- this.panel3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.uTab)).EndInit();
- this.uTab.ResumeLayout(false);
- this.panel14.ResumeLayout(false);
- this.panel14.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtWcWgt)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtWdWgt)).EndInit();
- this.panel11.ResumeLayout(false);
- this.tableLayoutPanel1.ResumeLayout(false);
- this.tableLayoutPanel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtBucketAddValue)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBucketNo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbBUCKET_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbDH)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtMEMO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbStandard)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbGrade)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbMatterNo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBLOCK_NUM)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSEAL_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPACKAGE_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCOMBIN_NO)).EndInit();
- this.panel10.ResumeLayout(false);
- this.tableLayoutPanel3.ResumeLayout(false);
- this.tableLayoutPanel3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtNetWgt)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtTARE_WEIGHT)).EndInit();
- this.panel5.ResumeLayout(false);
- this.tableLayoutPanel2.ResumeLayout(false);
- this.panel2.ResumeLayout(false);
- this.groupBox2.ResumeLayout(false);
- this.groupBox2.PerformLayout();
- this.panel15.ResumeLayout(false);
- this.panel15.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtTimeLength)).EndInit();
- this.groupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridPW)).EndInit();
- this.plImgShow.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.pictureShow)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Data.DataColumn dataColumn158;
- private System.Data.DataColumn dataColumn159;
- 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 Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private System.Windows.Forms.Panel panel3;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl uTab;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridSj;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
- private System.Windows.Forms.Panel panel14;
- private System.Windows.Forms.Button btnSave;
- private System.Windows.Forms.Button btnCheckBalance;
- private System.Windows.Forms.Button btnOpenVoice;
- private System.Windows.Forms.Panel panel10;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Panel panel5;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Panel panel2;
- private System.Windows.Forms.GroupBox groupBox1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridPW;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridJl;
- private System.Windows.Forms.Panel panel11;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Label label12;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.Label label14;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSEAL_NO;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPACKAGE_NO;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_NO;
- private System.Windows.Forms.Label label15;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtCOMBIN_NO;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.DateTimePicker txtPRODUCT_DATE;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
- private MeterModuleLibrary.ucStorageWeightKg ucStorageWeightKg2;
- private MeterModuleLibrary.ucStorageWeightKg ucStorageWeightKg1;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
- private System.Windows.Forms.NumericUpDown txtTARE_WEIGHT;
- private System.Windows.Forms.Panel plImgShow;
- private System.Windows.Forms.PictureBox pictureShow;
- private System.Windows.Forms.NumericUpDown txtBLOCK_NUM;
- private System.Data.DataColumn dataColumn157;
- private System.Windows.Forms.GroupBox groupBox2;
- private System.Windows.Forms.TextBox txtMsgInfo;
- private System.Windows.Forms.Panel panel15;
- private System.Windows.Forms.Button btnStart;
- private System.Data.DataColumn dataColumn160;
- private System.Windows.Forms.Timer timer1;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmbMatterNo;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmbStandard;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmbGrade;
- private System.Data.DataSet dataSet1;
- private System.Data.DataTable dtCalibration;
- private System.Data.DataColumn dataColumn126;
- private System.Data.DataColumn dataColumn127;
- private System.Data.DataColumn dataColumn128;
- private System.Data.DataColumn dataColumn129;
- private System.Data.DataColumn dataColumn130;
- private System.Data.DataColumn dataColumn131;
- private System.Data.DataColumn dataColumn132;
- private System.Data.DataColumn dataColumn133;
- private System.Data.DataColumn dataColumn134;
- private System.Data.DataColumn dataColumn135;
- private System.Data.DataColumn dataColumn136;
- private System.Data.DataColumn dataColumn137;
- private System.Data.DataColumn dataColumn138;
- private System.Data.DataColumn dataColumn139;
- private System.Data.DataColumn dataColumn140;
- private System.Data.DataTable dtJGPointInfo;
- private System.Data.DataTable dtBranch;
- private System.Data.DataColumn dataColumn144;
- private System.Data.DataColumn dataColumn145;
- private System.Data.DataColumn dataColumn146;
- private System.Data.DataColumn dataColumn147;
- private System.Data.DataColumn dataColumn148;
- private System.Data.DataColumn dataColumn149;
- private System.Data.DataColumn dataColumn150;
- private System.Data.DataColumn dataColumn151;
- private System.Data.DataColumn dataColumn152;
- private System.Data.DataColumn dataColumn153;
- private System.Data.DataColumn dataColumn154;
- private System.Data.DataColumn dataColumn161;
- private System.Data.DataColumn dataColumn162;
- private System.Data.DataColumn dataColumn163;
- private System.Data.DataColumn dataColumn220;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmbDH;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtMEMO;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Timer timer2;
- 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 Infragistics.Win.UltraWinGrid.UltraCombo cmbBUCKET_NO;
- private System.Windows.Forms.NumericUpDown txtNetWgt;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.CheckBox cbAuto;
- private System.Windows.Forms.NumericUpDown txtWcWgt;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.NumericUpDown txtWdWgt;
- private System.Data.DataColumn dataColumn35;
- private System.Windows.Forms.NumericUpDown txtBucketAddValue;
- private System.Windows.Forms.Label label18;
- private System.Windows.Forms.NumericUpDown txtBucketNo;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.ComboBox cbPC;
- private System.Windows.Forms.NumericUpDown txtTimeLength;
- private System.Windows.Forms.Label label5;
- }
- }
|