| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001 |
- namespace Core.LgMes.Client.LgDeviceManager
- {
- partial class FrmTundishManage
- {
- /// <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.UltraWinDataSource.UltraDataColumn ultraDataColumn1 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("TUNDISHID");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn2 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("AGE");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn3 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("STATUS");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn4 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("NOWPOSITION");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn5 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("LADLELIDID");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn6 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("ONCLASS");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn7 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("STATIONS");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn8 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("UPLADLETIME");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn9 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("GRUDE");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn10 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("MOULDID");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn11 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("MINFIREBEGINTIME");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn12 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("MIDDLEFIREBEGINTIME");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn13 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("MAXBEGINTIME");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn14 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("CYCID");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn15 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("OPENWCLASS");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn16 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("BEGINTIME");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn17 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("ENDTIME");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn18 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("REASON");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn19 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("TUNDISHUSE");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn20 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("CHECKNAME");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn21 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("FACTORYNAME");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn22 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("SLIDEGATENOZZLEFACTROY");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn23 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("DOPEFACTROY");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn24 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("UPNOZZLEFACTROY");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn25 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("STICKFACTROY");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn26 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("DOWNNOZZLEFACTROY");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn27 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("MEMO");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn28 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("ID");
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TUNDISHID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AGE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATUS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("NOWPOSITION");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LADLELIDID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ONCLASS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATIONS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPLADLETIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRUDE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MOULDID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MINFIREBEGINTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MIDDLEFIREBEGINTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAXBEGINTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CYCID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OPENWCLASS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BEGINTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ENDTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REASON");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TUNDISHUSE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECKNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FACTORYNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLIDEGATENOZZLEFACTROY");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DOPEFACTROY");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPNOZZLEFACTROY");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STICKFACTROY");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DOWNNOZZLEFACTROY");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ID");
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueList valueList1 = new Infragistics.Win.ValueList(463841501);
- Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueList valueList2 = new Infragistics.Win.ValueList(465061454);
- Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueList valueList3 = new Infragistics.Win.ValueList(875567876);
- Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueList valueList4 = new Infragistics.Win.ValueList(954418485);
- Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TUNDISHID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AGE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATUS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CCM_ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATIONS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATIVEDATE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUYDATE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("THELEVEL");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("USETIMES");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PARAID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ID");
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueList valueList5 = new Infragistics.Win.ValueList(891407563);
- Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn29 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("TUNDISHID");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn30 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("AGE");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn31 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("STATUS");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn32 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("CCM_ID");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn33 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("STATIONS");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn34 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("CREATIVEDATE");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn35 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("BUYDATE");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn36 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("MEMO");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn37 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("THELEVEL");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn38 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("USETIMES");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn39 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("PARAID");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn40 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("ID");
- this.udsrUseInfo = new Infragistics.Win.UltraWinDataSource.UltraDataSource(this.components);
- this.ucmeID = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ucmeZJH = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label1 = new System.Windows.Forms.Label();
- this.udteEnd = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.udteStart = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.chkZJH = new System.Windows.Forms.CheckBox();
- this.chkID = new System.Windows.Forms.CheckBox();
- this.chkDate = new System.Windows.Forms.CheckBox();
- this.ulexpgrpModel = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
- this.lblTundishName2 = new System.Windows.Forms.Label();
- this.txtTundishName = new System.Windows.Forms.TextBox();
- this.btn_MinFire = new Infragistics.Win.Misc.UltraButton();
- this.udteMinFireBeginTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.btn_MiddleFire = new Infragistics.Win.Misc.UltraButton();
- this.lblMinFireBeginTime = new System.Windows.Forms.Label();
- this.udteMiddleFireBeginTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.btnClrMid = new Infragistics.Win.Misc.UltraButton();
- this.btnClrMax = new Infragistics.Win.Misc.UltraButton();
- this.lblMiddleFireBeginTime = new System.Windows.Forms.Label();
- this.lblMaxFireBeginTime = new System.Windows.Forms.Label();
- this.btn_MaxFire = new Infragistics.Win.Misc.UltraButton();
- this.btnClrMin = new Infragistics.Win.Misc.UltraButton();
- this.udteMaxFireBeginTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultraGroupBox5 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ucmeGrude = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.lblTundishName = new System.Windows.Forms.Label();
- this.ucmeDownNozzleFactory = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txtAge = new System.Windows.Forms.TextBox();
- this.ucmeUpNozzleFactory = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.lblSlidegateNozzleFactory = new System.Windows.Forms.Label();
- this.ucmeSlidegateNozzleFactory = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.lblUpLableDate = new System.Windows.Forms.Label();
- this.ucmeStickFactory = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.lblReason = new System.Windows.Forms.Label();
- this.ucmeDopeFactory = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.lblBeginDate = new System.Windows.Forms.Label();
- this.ucmeReason = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.lblDownNozzleFactory = new System.Windows.Forms.Label();
- this.ucmeClass = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.lblStickFactory = new System.Windows.Forms.Label();
- this.ucmeUpClass = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.lblUpNozzleFactory = new System.Windows.Forms.Label();
- this.txtTundishName1 = new System.Windows.Forms.TextBox();
- this.lblDopeFactory = new System.Windows.Forms.Label();
- this.lblFactoryName = new System.Windows.Forms.Label();
- this.lblAge = new System.Windows.Forms.Label();
- this.txtFactoryName = new System.Windows.Forms.TextBox();
- this.lblMouldID = new System.Windows.Forms.Label();
- this.lblCheckName = new System.Windows.Forms.Label();
- this.txtMouldID = new System.Windows.Forms.TextBox();
- this.txtCheckName = new System.Windows.Forms.TextBox();
- this.txtMemo = new System.Windows.Forms.TextBox();
- this.lblClass = new System.Windows.Forms.Label();
- this.lblMemo = new System.Windows.Forms.Label();
- this.udtpEndTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.lblGrude = new System.Windows.Forms.Label();
- this.lblEndTime = new System.Windows.Forms.Label();
- this.lblStatus = new System.Windows.Forms.Label();
- this.lblUpClass = new System.Windows.Forms.Label();
- this.cmbStatus = new System.Windows.Forms.ComboBox();
- this.cmbPositionId = new System.Windows.Forms.ComboBox();
- this.lblCcmPositionID = new System.Windows.Forms.Label();
- this.lblPositionId = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.uldtpUpLableDate = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.uldtpBeginDate = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.lblLadlelId = new System.Windows.Forms.Label();
- this.cmbCcmPositionID = new System.Windows.Forms.ComboBox();
- this.txtLadlelId = new System.Windows.Forms.TextBox();
- this.txtTundidhUse = new System.Windows.Forms.TextBox();
- this.lblTundidhUse = new System.Windows.Forms.Label();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ugrdUseInfo = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ugrdBaseInfo = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.udsrBaseInfo = new Infragistics.Win.UltraWinDataSource.UltraDataSource(this.components);
- this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
- this.splitter2 = new System.Windows.Forms.Splitter();
- ((System.ComponentModel.ISupportInitialize)(this.udsrUseInfo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeID)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeZJH)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.udteEnd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.udteStart)).BeginInit();
- this.ulexpgrpModel.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
- this.ultraGroupBox2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.udteMinFireBeginTime)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.udteMiddleFireBeginTime)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.udteMaxFireBeginTime)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).BeginInit();
- this.ultraGroupBox5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeGrude)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeDownNozzleFactory)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeUpNozzleFactory)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeSlidegateNozzleFactory)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeStickFactory)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeDopeFactory)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeReason)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeClass)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeUpClass)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.udtpEndTime)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uldtpUpLableDate)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uldtpBeginDate)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ugrdUseInfo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
- this.ultraExpandableGroupBox2.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ugrdBaseInfo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.udsrBaseInfo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
- this.ultraGroupBox3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
- this.ultraGroupBox4.SuspendLayout();
- this.ultraPanel1.ClientArea.SuspendLayout();
- this.ultraPanel1.SuspendLayout();
- this.SuspendLayout();
- //
- // udsrUseInfo
- //
- this.udsrUseInfo.Band.Columns.AddRange(new object[] {
- ultraDataColumn1,
- ultraDataColumn2,
- ultraDataColumn3,
- ultraDataColumn4,
- ultraDataColumn5,
- ultraDataColumn6,
- ultraDataColumn7,
- ultraDataColumn8,
- ultraDataColumn9,
- ultraDataColumn10,
- ultraDataColumn11,
- ultraDataColumn12,
- ultraDataColumn13,
- ultraDataColumn14,
- ultraDataColumn15,
- ultraDataColumn16,
- ultraDataColumn17,
- ultraDataColumn18,
- ultraDataColumn19,
- ultraDataColumn20,
- ultraDataColumn21,
- ultraDataColumn22,
- ultraDataColumn23,
- ultraDataColumn24,
- ultraDataColumn25,
- ultraDataColumn26,
- ultraDataColumn27,
- ultraDataColumn28});
- //
- // ucmeID
- //
- appearance2.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
- appearance2.BorderColor = System.Drawing.Color.Black;
- this.ucmeID.Appearance = appearance2;
- this.ucmeID.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ucmeID.Enabled = false;
- this.ucmeID.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ucmeID.Location = new System.Drawing.Point(284, 9);
- this.ucmeID.Name = "ucmeID";
- this.ucmeID.Size = new System.Drawing.Size(97, 19);
- this.ucmeID.TabIndex = 290;
- this.ucmeID.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- //
- // ucmeZJH
- //
- appearance3.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
- appearance3.BorderColor = System.Drawing.Color.Black;
- this.ucmeZJH.Appearance = appearance3;
- this.ucmeZJH.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ucmeZJH.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.ucmeZJH.Enabled = false;
- this.ucmeZJH.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- valueListItem2.DataValue = "1";
- valueListItem2.DisplayText = "1#连铸机";
- valueListItem3.DataValue = "2";
- valueListItem3.DisplayText = "2#连铸机";
- valueListItem4.DataValue = "3";
- valueListItem4.DisplayText = "3#连铸机";
- this.ucmeZJH.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem2,
- valueListItem3,
- valueListItem4});
- this.ucmeZJH.Location = new System.Drawing.Point(84, 9);
- this.ucmeZJH.Name = "ucmeZJH";
- this.ucmeZJH.Size = new System.Drawing.Size(97, 19);
- this.ucmeZJH.TabIndex = 289;
- this.ucmeZJH.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- this.ucmeZJH.SelectionChanged += new System.EventHandler(this.cbbZJH_SelectedIndexChanged);
- //
- // label1
- //
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Location = new System.Drawing.Point(636, 12);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(21, 14);
- this.label1.TabIndex = 0;
- this.label1.Text = "到";
- //
- // udteEnd
- //
- this.udteEnd.Enabled = false;
- this.udteEnd.Location = new System.Drawing.Point(663, 7);
- this.udteEnd.MaskInput = "{date}";
- this.udteEnd.Name = "udteEnd";
- this.udteEnd.Size = new System.Drawing.Size(117, 23);
- this.udteEnd.TabIndex = 6;
- //
- // udteStart
- //
- this.udteStart.Enabled = false;
- this.udteStart.Location = new System.Drawing.Point(514, 8);
- this.udteStart.MaskInput = "{date}";
- this.udteStart.Name = "udteStart";
- this.udteStart.Size = new System.Drawing.Size(117, 23);
- this.udteStart.TabIndex = 5;
- //
- // chkZJH
- //
- this.chkZJH.BackColor = System.Drawing.Color.Transparent;
- this.chkZJH.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkZJH.Location = new System.Drawing.Point(20, 10);
- this.chkZJH.Name = "chkZJH";
- this.chkZJH.Size = new System.Drawing.Size(65, 18);
- this.chkZJH.TabIndex = 0;
- this.chkZJH.Text = "铸机号";
- this.chkZJH.UseVisualStyleBackColor = false;
- this.chkZJH.CheckedChanged += new System.EventHandler(this.chkQPositionID_CheckedChanged);
- //
- // chkID
- //
- this.chkID.BackColor = System.Drawing.Color.Transparent;
- this.chkID.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkID.Location = new System.Drawing.Point(194, 10);
- this.chkID.Name = "chkID";
- this.chkID.Size = new System.Drawing.Size(93, 18);
- this.chkID.TabIndex = 2;
- this.chkID.Text = "中间包编号";
- this.chkID.UseVisualStyleBackColor = false;
- this.chkID.CheckedChanged += new System.EventHandler(this.chkQTundishName_CheckedChanged);
- //
- // chkDate
- //
- this.chkDate.BackColor = System.Drawing.Color.Transparent;
- this.chkDate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkDate.Location = new System.Drawing.Point(393, 10);
- this.chkDate.Name = "chkDate";
- this.chkDate.Size = new System.Drawing.Size(121, 18);
- this.chkDate.TabIndex = 4;
- this.chkDate.Text = "上包时间 从:";
- this.chkDate.UseVisualStyleBackColor = false;
- this.chkDate.CheckedChanged += new System.EventHandler(this.cbDate_CheckedChanged);
- //
- // ulexpgrpModel
- //
- this.ulexpgrpModel.Controls.Add(this.ultraGroupBox1);
- this.ulexpgrpModel.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ulexpgrpModel.Location = new System.Drawing.Point(2, 20);
- this.ulexpgrpModel.Name = "ulexpgrpModel";
- this.ulexpgrpModel.Size = new System.Drawing.Size(1021, 255);
- this.ulexpgrpModel.TabIndex = 0;
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.ultraGroupBox2);
- this.ultraGroupBox1.Controls.Add(this.ultraGroupBox5);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(1021, 255);
- this.ultraGroupBox1.TabIndex = 331;
- //
- // ultraGroupBox2
- //
- this.ultraGroupBox2.Controls.Add(this.lblTundishName2);
- this.ultraGroupBox2.Controls.Add(this.txtTundishName);
- this.ultraGroupBox2.Controls.Add(this.btn_MinFire);
- this.ultraGroupBox2.Controls.Add(this.udteMinFireBeginTime);
- this.ultraGroupBox2.Controls.Add(this.btn_MiddleFire);
- this.ultraGroupBox2.Controls.Add(this.lblMinFireBeginTime);
- this.ultraGroupBox2.Controls.Add(this.udteMiddleFireBeginTime);
- this.ultraGroupBox2.Controls.Add(this.btnClrMid);
- this.ultraGroupBox2.Controls.Add(this.btnClrMax);
- this.ultraGroupBox2.Controls.Add(this.lblMiddleFireBeginTime);
- this.ultraGroupBox2.Controls.Add(this.lblMaxFireBeginTime);
- this.ultraGroupBox2.Controls.Add(this.btn_MaxFire);
- this.ultraGroupBox2.Controls.Add(this.btnClrMin);
- this.ultraGroupBox2.Controls.Add(this.udteMaxFireBeginTime);
- this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox2.Location = new System.Drawing.Point(679, 0);
- this.ultraGroupBox2.Name = "ultraGroupBox2";
- this.ultraGroupBox2.Size = new System.Drawing.Size(339, 252);
- this.ultraGroupBox2.TabIndex = 3;
- this.ultraGroupBox2.Text = "烘烤记录";
- //
- // lblTundishName2
- //
- this.lblTundishName2.AutoSize = true;
- this.lblTundishName2.BackColor = System.Drawing.Color.Transparent;
- this.lblTundishName2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblTundishName2.Location = new System.Drawing.Point(22, 33);
- this.lblTundishName2.Name = "lblTundishName2";
- this.lblTundishName2.Size = new System.Drawing.Size(65, 12);
- this.lblTundishName2.TabIndex = 0;
- this.lblTundishName2.Text = "中间包编号";
- //
- // txtTundishName
- //
- this.txtTundishName.AcceptsReturn = true;
- this.txtTundishName.Enabled = false;
- this.txtTundishName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtTundishName.Location = new System.Drawing.Point(92, 27);
- this.txtTundishName.Name = "txtTundishName";
- this.txtTundishName.ReadOnly = true;
- this.txtTundishName.Size = new System.Drawing.Size(151, 21);
- this.txtTundishName.TabIndex = 1;
- this.txtTundishName.Text = " ";
- //
- // btn_MinFire
- //
- this.btn_MinFire.BackColorInternal = System.Drawing.Color.Transparent;
- this.btn_MinFire.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn_MinFire.Location = new System.Drawing.Point(245, 54);
- this.btn_MinFire.Name = "btn_MinFire";
- this.btn_MinFire.Size = new System.Drawing.Size(45, 22);
- this.btn_MinFire.TabIndex = 3;
- this.btn_MinFire.Text = "确定";
- this.btn_MinFire.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- this.btn_MinFire.Click += new System.EventHandler(this.btn_MinFire_Click);
- //
- // udteMinFireBeginTime
- //
- this.udteMinFireBeginTime.DateTime = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
- this.udteMinFireBeginTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.udteMinFireBeginTime.FormatProvider = new System.Globalization.CultureInfo("en-US");
- this.udteMinFireBeginTime.FormatString = "yyyy-MM-dd HH:mm:ss";
- this.udteMinFireBeginTime.Location = new System.Drawing.Point(92, 55);
- this.udteMinFireBeginTime.MaskInput = "yyyy-mm-dd hh:mm:ss";
- this.udteMinFireBeginTime.Name = "udteMinFireBeginTime";
- this.udteMinFireBeginTime.Size = new System.Drawing.Size(151, 21);
- this.udteMinFireBeginTime.TabIndex = 2;
- this.udteMinFireBeginTime.Value = null;
- //
- // btn_MiddleFire
- //
- this.btn_MiddleFire.BackColorInternal = System.Drawing.Color.Transparent;
- this.btn_MiddleFire.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn_MiddleFire.Location = new System.Drawing.Point(245, 82);
- this.btn_MiddleFire.Name = "btn_MiddleFire";
- this.btn_MiddleFire.Size = new System.Drawing.Size(45, 22);
- this.btn_MiddleFire.TabIndex = 6;
- this.btn_MiddleFire.Text = "确定";
- this.btn_MiddleFire.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- this.btn_MiddleFire.Click += new System.EventHandler(this.btn_MiddleFire_Click);
- //
- // lblMinFireBeginTime
- //
- this.lblMinFireBeginTime.AutoSize = true;
- this.lblMinFireBeginTime.BackColor = System.Drawing.Color.Transparent;
- this.lblMinFireBeginTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblMinFireBeginTime.Location = new System.Drawing.Point(10, 61);
- this.lblMinFireBeginTime.Name = "lblMinFireBeginTime";
- this.lblMinFireBeginTime.Size = new System.Drawing.Size(77, 12);
- this.lblMinFireBeginTime.TabIndex = 0;
- this.lblMinFireBeginTime.Text = "小火开始时间";
- //
- // udteMiddleFireBeginTime
- //
- this.udteMiddleFireBeginTime.DateTime = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
- this.udteMiddleFireBeginTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.udteMiddleFireBeginTime.FormatProvider = new System.Globalization.CultureInfo("en-US");
- this.udteMiddleFireBeginTime.FormatString = "yyyy-MM-dd HH:mm:ss";
- this.udteMiddleFireBeginTime.Location = new System.Drawing.Point(92, 83);
- this.udteMiddleFireBeginTime.MaskInput = "yyyy-mm-dd hh:mm:ss";
- this.udteMiddleFireBeginTime.Name = "udteMiddleFireBeginTime";
- this.udteMiddleFireBeginTime.Size = new System.Drawing.Size(151, 21);
- this.udteMiddleFireBeginTime.TabIndex = 5;
- this.udteMiddleFireBeginTime.Value = null;
- //
- // btnClrMid
- //
- this.btnClrMid.BackColorInternal = System.Drawing.Color.Transparent;
- this.btnClrMid.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClrMid.Location = new System.Drawing.Point(293, 82);
- this.btnClrMid.Name = "btnClrMid";
- this.btnClrMid.Size = new System.Drawing.Size(45, 22);
- this.btnClrMid.TabIndex = 7;
- this.btnClrMid.Text = "清除";
- this.btnClrMid.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- this.btnClrMid.Click += new System.EventHandler(this.btnClrMid_Click);
- //
- // btnClrMax
- //
- this.btnClrMax.BackColorInternal = System.Drawing.Color.Transparent;
- this.btnClrMax.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClrMax.Location = new System.Drawing.Point(293, 110);
- this.btnClrMax.Name = "btnClrMax";
- this.btnClrMax.Size = new System.Drawing.Size(45, 22);
- this.btnClrMax.TabIndex = 10;
- this.btnClrMax.Text = "清除";
- this.btnClrMax.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- this.btnClrMax.Click += new System.EventHandler(this.btnClrMax_Click);
- //
- // lblMiddleFireBeginTime
- //
- this.lblMiddleFireBeginTime.AutoSize = true;
- this.lblMiddleFireBeginTime.BackColor = System.Drawing.Color.Transparent;
- this.lblMiddleFireBeginTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblMiddleFireBeginTime.Location = new System.Drawing.Point(10, 89);
- this.lblMiddleFireBeginTime.Name = "lblMiddleFireBeginTime";
- this.lblMiddleFireBeginTime.Size = new System.Drawing.Size(77, 12);
- this.lblMiddleFireBeginTime.TabIndex = 0;
- this.lblMiddleFireBeginTime.Text = "中火开始时间";
- //
- // lblMaxFireBeginTime
- //
- this.lblMaxFireBeginTime.AutoSize = true;
- this.lblMaxFireBeginTime.BackColor = System.Drawing.Color.Transparent;
- this.lblMaxFireBeginTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblMaxFireBeginTime.Location = new System.Drawing.Point(10, 117);
- this.lblMaxFireBeginTime.Name = "lblMaxFireBeginTime";
- this.lblMaxFireBeginTime.Size = new System.Drawing.Size(77, 12);
- this.lblMaxFireBeginTime.TabIndex = 0;
- this.lblMaxFireBeginTime.Text = "大火开始时间";
- //
- // btn_MaxFire
- //
- this.btn_MaxFire.BackColorInternal = System.Drawing.Color.Transparent;
- this.btn_MaxFire.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn_MaxFire.Location = new System.Drawing.Point(245, 110);
- this.btn_MaxFire.Name = "btn_MaxFire";
- this.btn_MaxFire.Size = new System.Drawing.Size(45, 22);
- this.btn_MaxFire.TabIndex = 9;
- this.btn_MaxFire.Text = "确定";
- this.btn_MaxFire.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- this.btn_MaxFire.Click += new System.EventHandler(this.btn_MaxFire_Click);
- //
- // btnClrMin
- //
- this.btnClrMin.BackColorInternal = System.Drawing.Color.Transparent;
- this.btnClrMin.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClrMin.Location = new System.Drawing.Point(293, 54);
- this.btnClrMin.Name = "btnClrMin";
- this.btnClrMin.Size = new System.Drawing.Size(45, 22);
- this.btnClrMin.TabIndex = 4;
- this.btnClrMin.Text = "清除";
- this.btnClrMin.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- this.btnClrMin.Click += new System.EventHandler(this.btnClrMin_Click);
- //
- // udteMaxFireBeginTime
- //
- this.udteMaxFireBeginTime.DateTime = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
- this.udteMaxFireBeginTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.udteMaxFireBeginTime.FormatProvider = new System.Globalization.CultureInfo("en-US");
- this.udteMaxFireBeginTime.FormatString = "yyyy-MM-dd HH:mm:ss";
- this.udteMaxFireBeginTime.Location = new System.Drawing.Point(92, 111);
- this.udteMaxFireBeginTime.MaskInput = "yyyy-mm-dd hh:mm:ss";
- this.udteMaxFireBeginTime.Name = "udteMaxFireBeginTime";
- this.udteMaxFireBeginTime.Size = new System.Drawing.Size(151, 21);
- this.udteMaxFireBeginTime.TabIndex = 8;
- this.udteMaxFireBeginTime.Value = null;
- //
- // ultraGroupBox5
- //
- this.ultraGroupBox5.Controls.Add(this.ucmeGrude);
- this.ultraGroupBox5.Controls.Add(this.lblTundishName);
- this.ultraGroupBox5.Controls.Add(this.ucmeDownNozzleFactory);
- this.ultraGroupBox5.Controls.Add(this.txtAge);
- this.ultraGroupBox5.Controls.Add(this.ucmeUpNozzleFactory);
- this.ultraGroupBox5.Controls.Add(this.lblSlidegateNozzleFactory);
- this.ultraGroupBox5.Controls.Add(this.ucmeSlidegateNozzleFactory);
- this.ultraGroupBox5.Controls.Add(this.lblUpLableDate);
- this.ultraGroupBox5.Controls.Add(this.ucmeStickFactory);
- this.ultraGroupBox5.Controls.Add(this.lblReason);
- this.ultraGroupBox5.Controls.Add(this.ucmeDopeFactory);
- this.ultraGroupBox5.Controls.Add(this.lblBeginDate);
- this.ultraGroupBox5.Controls.Add(this.ucmeReason);
- this.ultraGroupBox5.Controls.Add(this.lblDownNozzleFactory);
- this.ultraGroupBox5.Controls.Add(this.ucmeClass);
- this.ultraGroupBox5.Controls.Add(this.lblStickFactory);
- this.ultraGroupBox5.Controls.Add(this.ucmeUpClass);
- this.ultraGroupBox5.Controls.Add(this.lblUpNozzleFactory);
- this.ultraGroupBox5.Controls.Add(this.txtTundishName1);
- this.ultraGroupBox5.Controls.Add(this.lblDopeFactory);
- this.ultraGroupBox5.Controls.Add(this.lblFactoryName);
- this.ultraGroupBox5.Controls.Add(this.lblAge);
- this.ultraGroupBox5.Controls.Add(this.txtFactoryName);
- this.ultraGroupBox5.Controls.Add(this.lblMouldID);
- this.ultraGroupBox5.Controls.Add(this.lblCheckName);
- this.ultraGroupBox5.Controls.Add(this.txtMouldID);
- this.ultraGroupBox5.Controls.Add(this.txtCheckName);
- this.ultraGroupBox5.Controls.Add(this.txtMemo);
- this.ultraGroupBox5.Controls.Add(this.lblClass);
- this.ultraGroupBox5.Controls.Add(this.lblMemo);
- this.ultraGroupBox5.Controls.Add(this.udtpEndTime);
- this.ultraGroupBox5.Controls.Add(this.lblGrude);
- this.ultraGroupBox5.Controls.Add(this.lblEndTime);
- this.ultraGroupBox5.Controls.Add(this.lblStatus);
- this.ultraGroupBox5.Controls.Add(this.lblUpClass);
- this.ultraGroupBox5.Controls.Add(this.cmbStatus);
- this.ultraGroupBox5.Controls.Add(this.cmbPositionId);
- this.ultraGroupBox5.Controls.Add(this.lblCcmPositionID);
- this.ultraGroupBox5.Controls.Add(this.lblPositionId);
- this.ultraGroupBox5.Controls.Add(this.label3);
- this.ultraGroupBox5.Controls.Add(this.uldtpUpLableDate);
- this.ultraGroupBox5.Controls.Add(this.uldtpBeginDate);
- this.ultraGroupBox5.Controls.Add(this.lblLadlelId);
- this.ultraGroupBox5.Controls.Add(this.cmbCcmPositionID);
- this.ultraGroupBox5.Controls.Add(this.txtLadlelId);
- this.ultraGroupBox5.Controls.Add(this.txtTundidhUse);
- this.ultraGroupBox5.Controls.Add(this.lblTundidhUse);
- this.ultraGroupBox5.Dock = System.Windows.Forms.DockStyle.Left;
- this.ultraGroupBox5.Location = new System.Drawing.Point(3, 0);
- this.ultraGroupBox5.Name = "ultraGroupBox5";
- this.ultraGroupBox5.Size = new System.Drawing.Size(676, 252);
- this.ultraGroupBox5.TabIndex = 2;
- this.ultraGroupBox5.Text = "使用记录";
- //
- // ucmeGrude
- //
- appearance13.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
- appearance13.BorderColor = System.Drawing.Color.Black;
- this.ucmeGrude.Appearance = appearance13;
- this.ucmeGrude.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ucmeGrude.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.ucmeGrude.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ucmeGrude.Location = new System.Drawing.Point(85, 77);
- this.ucmeGrude.Name = "ucmeGrude";
- this.ucmeGrude.Size = new System.Drawing.Size(75, 19);
- this.ucmeGrude.TabIndex = 336;
- this.ucmeGrude.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- //
- // lblTundishName
- //
- this.lblTundishName.AutoSize = true;
- this.lblTundishName.BackColor = System.Drawing.Color.Transparent;
- this.lblTundishName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblTundishName.Location = new System.Drawing.Point(15, 32);
- this.lblTundishName.Name = "lblTundishName";
- this.lblTundishName.Size = new System.Drawing.Size(65, 12);
- this.lblTundishName.TabIndex = 0;
- this.lblTundishName.Text = "中间包编号";
- //
- // ucmeDownNozzleFactory
- //
- appearance14.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
- appearance14.BorderColor = System.Drawing.Color.Black;
- this.ucmeDownNozzleFactory.Appearance = appearance14;
- this.ucmeDownNozzleFactory.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ucmeDownNozzleFactory.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.ucmeDownNozzleFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ucmeDownNozzleFactory.Location = new System.Drawing.Point(390, 205);
- this.ucmeDownNozzleFactory.Name = "ucmeDownNozzleFactory";
- this.ucmeDownNozzleFactory.Size = new System.Drawing.Size(247, 19);
- this.ucmeDownNozzleFactory.TabIndex = 335;
- this.ucmeDownNozzleFactory.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- //
- // txtAge
- //
- this.txtAge.AcceptsReturn = true;
- this.txtAge.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtAge.Location = new System.Drawing.Point(212, 26);
- this.txtAge.Name = "txtAge";
- this.txtAge.Size = new System.Drawing.Size(60, 21);
- this.txtAge.TabIndex = 2;
- //
- // ucmeUpNozzleFactory
- //
- appearance15.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
- appearance15.BorderColor = System.Drawing.Color.Black;
- this.ucmeUpNozzleFactory.Appearance = appearance15;
- this.ucmeUpNozzleFactory.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ucmeUpNozzleFactory.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.ucmeUpNozzleFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ucmeUpNozzleFactory.Location = new System.Drawing.Point(390, 180);
- this.ucmeUpNozzleFactory.Name = "ucmeUpNozzleFactory";
- this.ucmeUpNozzleFactory.Size = new System.Drawing.Size(247, 19);
- this.ucmeUpNozzleFactory.TabIndex = 334;
- this.ucmeUpNozzleFactory.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- //
- // lblSlidegateNozzleFactory
- //
- this.lblSlidegateNozzleFactory.AutoSize = true;
- this.lblSlidegateNozzleFactory.BackColor = System.Drawing.Color.Transparent;
- this.lblSlidegateNozzleFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblSlidegateNozzleFactory.Location = new System.Drawing.Point(308, 159);
- this.lblSlidegateNozzleFactory.Name = "lblSlidegateNozzleFactory";
- this.lblSlidegateNozzleFactory.Size = new System.Drawing.Size(77, 12);
- this.lblSlidegateNozzleFactory.TabIndex = 272;
- this.lblSlidegateNozzleFactory.Text = "滑动水口厂家";
- //
- // ucmeSlidegateNozzleFactory
- //
- appearance16.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
- appearance16.BorderColor = System.Drawing.Color.Black;
- this.ucmeSlidegateNozzleFactory.Appearance = appearance16;
- this.ucmeSlidegateNozzleFactory.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ucmeSlidegateNozzleFactory.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.ucmeSlidegateNozzleFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ucmeSlidegateNozzleFactory.Location = new System.Drawing.Point(390, 154);
- this.ucmeSlidegateNozzleFactory.Name = "ucmeSlidegateNozzleFactory";
- this.ucmeSlidegateNozzleFactory.Size = new System.Drawing.Size(247, 19);
- this.ucmeSlidegateNozzleFactory.TabIndex = 333;
- this.ucmeSlidegateNozzleFactory.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- //
- // lblUpLableDate
- //
- this.lblUpLableDate.AutoSize = true;
- this.lblUpLableDate.BackColor = System.Drawing.Color.Transparent;
- this.lblUpLableDate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblUpLableDate.Location = new System.Drawing.Point(437, 57);
- this.lblUpLableDate.Name = "lblUpLableDate";
- this.lblUpLableDate.Size = new System.Drawing.Size(53, 12);
- this.lblUpLableDate.TabIndex = 272;
- this.lblUpLableDate.Text = "上包时间";
- //
- // ucmeStickFactory
- //
- appearance17.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
- appearance17.BorderColor = System.Drawing.Color.Black;
- this.ucmeStickFactory.Appearance = appearance17;
- this.ucmeStickFactory.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ucmeStickFactory.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.ucmeStickFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ucmeStickFactory.Location = new System.Drawing.Point(86, 205);
- this.ucmeStickFactory.Name = "ucmeStickFactory";
- this.ucmeStickFactory.Size = new System.Drawing.Size(203, 19);
- this.ucmeStickFactory.TabIndex = 332;
- this.ucmeStickFactory.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- //
- // lblReason
- //
- this.lblReason.AutoSize = true;
- this.lblReason.BackColor = System.Drawing.Color.Transparent;
- this.lblReason.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblReason.Location = new System.Drawing.Point(280, 107);
- this.lblReason.Name = "lblReason";
- this.lblReason.Size = new System.Drawing.Size(53, 12);
- this.lblReason.TabIndex = 272;
- this.lblReason.Text = "停浇原因";
- //
- // ucmeDopeFactory
- //
- appearance18.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
- appearance18.BorderColor = System.Drawing.Color.Black;
- this.ucmeDopeFactory.Appearance = appearance18;
- this.ucmeDopeFactory.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ucmeDopeFactory.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.ucmeDopeFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ucmeDopeFactory.Location = new System.Drawing.Point(86, 180);
- this.ucmeDopeFactory.Name = "ucmeDopeFactory";
- this.ucmeDopeFactory.Size = new System.Drawing.Size(203, 19);
- this.ucmeDopeFactory.TabIndex = 331;
- this.ucmeDopeFactory.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- //
- // lblBeginDate
- //
- this.lblBeginDate.AutoSize = true;
- this.lblBeginDate.BackColor = System.Drawing.Color.Transparent;
- this.lblBeginDate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblBeginDate.Location = new System.Drawing.Point(437, 82);
- this.lblBeginDate.Name = "lblBeginDate";
- this.lblBeginDate.Size = new System.Drawing.Size(53, 12);
- this.lblBeginDate.TabIndex = 272;
- this.lblBeginDate.Text = "开浇时间";
- //
- // ucmeReason
- //
- appearance19.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
- appearance19.BorderColor = System.Drawing.Color.Black;
- this.ucmeReason.Appearance = appearance19;
- this.ucmeReason.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ucmeReason.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- valueListItem21.DataValue = "1";
- valueListItem21.DisplayText = "计划停浇";
- valueListItem22.DataValue = "2";
- valueListItem22.DisplayText = "非计划停浇";
- this.ucmeReason.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem21,
- valueListItem22});
- this.ucmeReason.Location = new System.Drawing.Point(335, 102);
- this.ucmeReason.Name = "ucmeReason";
- this.ucmeReason.Size = new System.Drawing.Size(86, 19);
- this.ucmeReason.TabIndex = 330;
- this.ucmeReason.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- //
- // lblDownNozzleFactory
- //
- this.lblDownNozzleFactory.AutoSize = true;
- this.lblDownNozzleFactory.BackColor = System.Drawing.Color.Transparent;
- this.lblDownNozzleFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblDownNozzleFactory.Location = new System.Drawing.Point(320, 210);
- this.lblDownNozzleFactory.Name = "lblDownNozzleFactory";
- this.lblDownNozzleFactory.Size = new System.Drawing.Size(65, 12);
- this.lblDownNozzleFactory.TabIndex = 272;
- this.lblDownNozzleFactory.Text = "下水口厂家";
- //
- // ucmeClass
- //
- appearance20.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
- appearance20.BorderColor = System.Drawing.Color.Black;
- this.ucmeClass.Appearance = appearance20;
- this.ucmeClass.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ucmeClass.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.ucmeClass.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- valueListItem23.DataValue = "1";
- valueListItem23.DisplayText = "甲班";
- valueListItem24.DataValue = "2";
- valueListItem24.DisplayText = "乙班";
- valueListItem25.DataValue = "3";
- valueListItem25.DisplayText = "丙班";
- valueListItem26.DataValue = "4";
- valueListItem26.DisplayText = "丁班";
- this.ucmeClass.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem23,
- valueListItem24,
- valueListItem25,
- valueListItem26});
- this.ucmeClass.Location = new System.Drawing.Point(335, 77);
- this.ucmeClass.Name = "ucmeClass";
- this.ucmeClass.Size = new System.Drawing.Size(86, 19);
- this.ucmeClass.TabIndex = 329;
- this.ucmeClass.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- //
- // lblStickFactory
- //
- this.lblStickFactory.AutoSize = true;
- this.lblStickFactory.BackColor = System.Drawing.Color.Transparent;
- this.lblStickFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblStickFactory.Location = new System.Drawing.Point(27, 210);
- this.lblStickFactory.Name = "lblStickFactory";
- this.lblStickFactory.Size = new System.Drawing.Size(53, 12);
- this.lblStickFactory.TabIndex = 272;
- this.lblStickFactory.Text = "塞棒厂家";
- //
- // ucmeUpClass
- //
- appearance21.BorderAlpha = Infragistics.Win.Alpha.UseAlphaLevel;
- appearance21.BorderColor = System.Drawing.Color.Black;
- this.ucmeUpClass.Appearance = appearance21;
- this.ucmeUpClass.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ucmeUpClass.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.ucmeUpClass.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- valueListItem27.DataValue = "1";
- valueListItem27.DisplayText = "甲班";
- valueListItem28.DataValue = "2";
- valueListItem28.DisplayText = "乙班";
- valueListItem29.DataValue = "3";
- valueListItem29.DisplayText = "丙班";
- valueListItem30.DataValue = "4";
- valueListItem30.DisplayText = "丁班";
- this.ucmeUpClass.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem27,
- valueListItem28,
- valueListItem29,
- valueListItem30});
- this.ucmeUpClass.Location = new System.Drawing.Point(335, 52);
- this.ucmeUpClass.Name = "ucmeUpClass";
- this.ucmeUpClass.Size = new System.Drawing.Size(86, 19);
- this.ucmeUpClass.TabIndex = 328;
- this.ucmeUpClass.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
- //
- // lblUpNozzleFactory
- //
- this.lblUpNozzleFactory.AutoSize = true;
- this.lblUpNozzleFactory.BackColor = System.Drawing.Color.Transparent;
- this.lblUpNozzleFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblUpNozzleFactory.Location = new System.Drawing.Point(320, 185);
- this.lblUpNozzleFactory.Name = "lblUpNozzleFactory";
- this.lblUpNozzleFactory.Size = new System.Drawing.Size(65, 12);
- this.lblUpNozzleFactory.TabIndex = 272;
- this.lblUpNozzleFactory.Text = "上水口厂家";
- //
- // txtTundishName1
- //
- this.txtTundishName1.AcceptsReturn = true;
- this.txtTundishName1.Enabled = false;
- this.txtTundishName1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtTundishName1.Location = new System.Drawing.Point(85, 26);
- this.txtTundishName1.Name = "txtTundishName1";
- this.txtTundishName1.ReadOnly = true;
- this.txtTundishName1.Size = new System.Drawing.Size(75, 21);
- this.txtTundishName1.TabIndex = 1;
- //
- // lblDopeFactory
- //
- this.lblDopeFactory.AutoSize = true;
- this.lblDopeFactory.BackColor = System.Drawing.Color.Transparent;
- this.lblDopeFactory.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblDopeFactory.Location = new System.Drawing.Point(27, 185);
- this.lblDopeFactory.Name = "lblDopeFactory";
- this.lblDopeFactory.Size = new System.Drawing.Size(53, 12);
- this.lblDopeFactory.TabIndex = 272;
- this.lblDopeFactory.Text = "涂料厂家";
- //
- // lblFactoryName
- //
- this.lblFactoryName.AutoSize = true;
- this.lblFactoryName.BackColor = System.Drawing.Color.Transparent;
- this.lblFactoryName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblFactoryName.Location = new System.Drawing.Point(27, 159);
- this.lblFactoryName.Name = "lblFactoryName";
- this.lblFactoryName.Size = new System.Drawing.Size(53, 12);
- this.lblFactoryName.TabIndex = 327;
- this.lblFactoryName.Text = "厂家签名";
- //
- // lblAge
- //
- this.lblAge.AutoSize = true;
- this.lblAge.BackColor = System.Drawing.Color.Transparent;
- this.lblAge.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblAge.Location = new System.Drawing.Point(178, 32);
- this.lblAge.Name = "lblAge";
- this.lblAge.Size = new System.Drawing.Size(29, 12);
- this.lblAge.TabIndex = 273;
- this.lblAge.Text = "包龄";
- //
- // txtFactoryName
- //
- this.txtFactoryName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtFactoryName.Location = new System.Drawing.Point(85, 153);
- this.txtFactoryName.MaxLength = 50;
- this.txtFactoryName.Name = "txtFactoryName";
- this.txtFactoryName.Size = new System.Drawing.Size(203, 21);
- this.txtFactoryName.TabIndex = 18;
- //
- // lblMouldID
- //
- this.lblMouldID.AutoSize = true;
- this.lblMouldID.BackColor = System.Drawing.Color.Transparent;
- this.lblMouldID.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblMouldID.Location = new System.Drawing.Point(166, 82);
- this.lblMouldID.Name = "lblMouldID";
- this.lblMouldID.Size = new System.Drawing.Size(41, 12);
- this.lblMouldID.TabIndex = 279;
- this.lblMouldID.Text = "浇次号";
- //
- // lblCheckName
- //
- this.lblCheckName.AutoSize = true;
- this.lblCheckName.BackColor = System.Drawing.Color.Transparent;
- this.lblCheckName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblCheckName.Location = new System.Drawing.Point(425, 107);
- this.lblCheckName.Name = "lblCheckName";
- this.lblCheckName.Size = new System.Drawing.Size(65, 12);
- this.lblCheckName.TabIndex = 325;
- this.lblCheckName.Text = "验包人签名";
- //
- // txtMouldID
- //
- this.txtMouldID.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtMouldID.Location = new System.Drawing.Point(212, 76);
- this.txtMouldID.Name = "txtMouldID";
- this.txtMouldID.Size = new System.Drawing.Size(60, 21);
- this.txtMouldID.TabIndex = 10;
- this.txtMouldID.Text = " ";
- //
- // txtCheckName
- //
- this.txtCheckName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtCheckName.Location = new System.Drawing.Point(494, 101);
- this.txtCheckName.MaxLength = 15;
- this.txtCheckName.Name = "txtCheckName";
- this.txtCheckName.Size = new System.Drawing.Size(143, 21);
- this.txtCheckName.TabIndex = 15;
- //
- // txtMemo
- //
- this.txtMemo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtMemo.Location = new System.Drawing.Point(85, 229);
- this.txtMemo.MaxLength = 300;
- this.txtMemo.Name = "txtMemo";
- this.txtMemo.Size = new System.Drawing.Size(552, 21);
- this.txtMemo.TabIndex = 24;
- //
- // lblClass
- //
- this.lblClass.AutoSize = true;
- this.lblClass.BackColor = System.Drawing.Color.Transparent;
- this.lblClass.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblClass.Location = new System.Drawing.Point(280, 82);
- this.lblClass.Name = "lblClass";
- this.lblClass.Size = new System.Drawing.Size(53, 12);
- this.lblClass.TabIndex = 323;
- this.lblClass.Text = "开浇班别";
- //
- // lblMemo
- //
- this.lblMemo.AutoSize = true;
- this.lblMemo.BackColor = System.Drawing.Color.Transparent;
- this.lblMemo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblMemo.Location = new System.Drawing.Point(51, 235);
- this.lblMemo.Name = "lblMemo";
- this.lblMemo.Size = new System.Drawing.Size(29, 12);
- this.lblMemo.TabIndex = 288;
- this.lblMemo.Text = "备注";
- //
- // udtpEndTime
- //
- appearance22.BackColor = System.Drawing.Color.White;
- this.udtpEndTime.Appearance = appearance22;
- this.udtpEndTime.BackColor = System.Drawing.Color.White;
- this.udtpEndTime.DateTime = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
- this.udtpEndTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.udtpEndTime.FormatProvider = new System.Globalization.CultureInfo("en-US");
- this.udtpEndTime.FormatString = "yyyy-MM-dd HH:mm:ss";
- this.udtpEndTime.Location = new System.Drawing.Point(85, 101);
- this.udtpEndTime.MaskInput = "yyyy-mm-dd hh:mm:ss";
- this.udtpEndTime.Name = "udtpEndTime";
- this.udtpEndTime.Size = new System.Drawing.Size(187, 21);
- this.udtpEndTime.TabIndex = 13;
- this.udtpEndTime.Value = null;
- //
- // lblGrude
- //
- this.lblGrude.AutoSize = true;
- this.lblGrude.BackColor = System.Drawing.Color.Transparent;
- this.lblGrude.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblGrude.Location = new System.Drawing.Point(51, 82);
- this.lblGrude.Name = "lblGrude";
- this.lblGrude.Size = new System.Drawing.Size(29, 12);
- this.lblGrude.TabIndex = 290;
- this.lblGrude.Text = "钢种";
- //
- // lblEndTime
- //
- this.lblEndTime.AutoSize = true;
- this.lblEndTime.BackColor = System.Drawing.Color.Transparent;
- this.lblEndTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblEndTime.Location = new System.Drawing.Point(27, 107);
- this.lblEndTime.Name = "lblEndTime";
- this.lblEndTime.Size = new System.Drawing.Size(53, 12);
- this.lblEndTime.TabIndex = 321;
- this.lblEndTime.Text = "停浇时间";
- //
- // lblStatus
- //
- this.lblStatus.AutoSize = true;
- this.lblStatus.BackColor = System.Drawing.Color.Transparent;
- this.lblStatus.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblStatus.Location = new System.Drawing.Point(461, 32);
- this.lblStatus.Name = "lblStatus";
- this.lblStatus.Size = new System.Drawing.Size(29, 12);
- this.lblStatus.TabIndex = 294;
- this.lblStatus.Text = "状态";
- //
- // lblUpClass
- //
- this.lblUpClass.AutoSize = true;
- this.lblUpClass.BackColor = System.Drawing.Color.Transparent;
- this.lblUpClass.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblUpClass.Location = new System.Drawing.Point(280, 57);
- this.lblUpClass.Name = "lblUpClass";
- this.lblUpClass.Size = new System.Drawing.Size(53, 12);
- this.lblUpClass.TabIndex = 319;
- this.lblUpClass.Text = "上包班别";
- //
- // cmbStatus
- //
- this.cmbStatus.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(244)))), ((int)(((byte)(252)))));
- this.cmbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbStatus.Enabled = false;
- this.cmbStatus.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbStatus.Items.AddRange(new object[] {
- "备用",
- "等待位",
- "浇铸位",
- "下线"});
- this.cmbStatus.Location = new System.Drawing.Point(494, 26);
- this.cmbStatus.Name = "cmbStatus";
- this.cmbStatus.Size = new System.Drawing.Size(143, 20);
- this.cmbStatus.TabIndex = 4;
- //
- // cmbPositionId
- //
- this.cmbPositionId.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(244)))), ((int)(((byte)(252)))));
- this.cmbPositionId.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbPositionId.Enabled = false;
- this.cmbPositionId.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbPositionId.Items.AddRange(new object[] {
- "南",
- "北"});
- this.cmbPositionId.Location = new System.Drawing.Point(212, 51);
- this.cmbPositionId.Name = "cmbPositionId";
- this.cmbPositionId.Size = new System.Drawing.Size(60, 20);
- this.cmbPositionId.TabIndex = 6;
- //
- // lblCcmPositionID
- //
- this.lblCcmPositionID.AutoSize = true;
- this.lblCcmPositionID.BackColor = System.Drawing.Color.Transparent;
- this.lblCcmPositionID.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblCcmPositionID.Location = new System.Drawing.Point(39, 57);
- this.lblCcmPositionID.Name = "lblCcmPositionID";
- this.lblCcmPositionID.Size = new System.Drawing.Size(41, 12);
- this.lblCcmPositionID.TabIndex = 0;
- this.lblCcmPositionID.Text = "铸机号";
- //
- // lblPositionId
- //
- this.lblPositionId.AutoSize = true;
- this.lblPositionId.BackColor = System.Drawing.Color.Transparent;
- this.lblPositionId.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblPositionId.Location = new System.Drawing.Point(178, 57);
- this.lblPositionId.Name = "lblPositionId";
- this.lblPositionId.Size = new System.Drawing.Size(29, 12);
- this.lblPositionId.TabIndex = 317;
- this.lblPositionId.Text = "工位";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.Color.Transparent;
- this.label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label3.Location = new System.Drawing.Point(259, 63);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(0, 12);
- this.label3.TabIndex = 301;
- this.label3.Visible = false;
- //
- // uldtpUpLableDate
- //
- appearance23.BackColor = System.Drawing.Color.White;
- this.uldtpUpLableDate.Appearance = appearance23;
- this.uldtpUpLableDate.BackColor = System.Drawing.Color.White;
- this.uldtpUpLableDate.DateTime = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
- this.uldtpUpLableDate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uldtpUpLableDate.FormatProvider = new System.Globalization.CultureInfo("en-US");
- this.uldtpUpLableDate.FormatString = "yyyy-MM-dd HH:mm:ss";
- this.uldtpUpLableDate.Location = new System.Drawing.Point(494, 51);
- this.uldtpUpLableDate.MaskInput = "yyyy-mm-dd hh:mm:ss";
- this.uldtpUpLableDate.Name = "uldtpUpLableDate";
- this.uldtpUpLableDate.Size = new System.Drawing.Size(143, 21);
- this.uldtpUpLableDate.TabIndex = 8;
- this.uldtpUpLableDate.Value = null;
- //
- // uldtpBeginDate
- //
- appearance24.BackColor = System.Drawing.Color.White;
- this.uldtpBeginDate.Appearance = appearance24;
- this.uldtpBeginDate.BackColor = System.Drawing.Color.White;
- this.uldtpBeginDate.DateTime = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
- this.uldtpBeginDate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uldtpBeginDate.FormatProvider = new System.Globalization.CultureInfo("en-US");
- this.uldtpBeginDate.FormatString = "yyyy-MM-dd HH:mm:ss";
- this.uldtpBeginDate.Location = new System.Drawing.Point(494, 76);
- this.uldtpBeginDate.MaskInput = "yyyy-mm-dd hh:mm:ss";
- this.uldtpBeginDate.Name = "uldtpBeginDate";
- this.uldtpBeginDate.Size = new System.Drawing.Size(143, 21);
- this.uldtpBeginDate.TabIndex = 12;
- this.uldtpBeginDate.Value = null;
- //
- // lblLadlelId
- //
- this.lblLadlelId.AutoSize = true;
- this.lblLadlelId.BackColor = System.Drawing.Color.Transparent;
- this.lblLadlelId.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblLadlelId.Location = new System.Drawing.Point(292, 32);
- this.lblLadlelId.Name = "lblLadlelId";
- this.lblLadlelId.Size = new System.Drawing.Size(41, 12);
- this.lblLadlelId.TabIndex = 313;
- this.lblLadlelId.Text = "包盖号";
- //
- // cmbCcmPositionID
- //
- this.cmbCcmPositionID.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(244)))), ((int)(((byte)(252)))));
- this.cmbCcmPositionID.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbCcmPositionID.Enabled = false;
- this.cmbCcmPositionID.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbCcmPositionID.Items.AddRange(new object[] {
- "1#连铸机",
- "2#连铸机",
- "3#连铸机"});
- this.cmbCcmPositionID.Location = new System.Drawing.Point(85, 51);
- this.cmbCcmPositionID.Name = "cmbCcmPositionID";
- this.cmbCcmPositionID.Size = new System.Drawing.Size(75, 20);
- this.cmbCcmPositionID.TabIndex = 5;
- //
- // txtLadlelId
- //
- this.txtLadlelId.AcceptsReturn = true;
- this.txtLadlelId.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtLadlelId.Location = new System.Drawing.Point(335, 26);
- this.txtLadlelId.MaxLength = 10;
- this.txtLadlelId.Name = "txtLadlelId";
- this.txtLadlelId.Size = new System.Drawing.Size(86, 21);
- this.txtLadlelId.TabIndex = 3;
- //
- // txtTundidhUse
- //
- this.txtTundidhUse.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtTundidhUse.Location = new System.Drawing.Point(85, 127);
- this.txtTundidhUse.MaxLength = 50;
- this.txtTundidhUse.Name = "txtTundidhUse";
- this.txtTundidhUse.Size = new System.Drawing.Size(552, 21);
- this.txtTundidhUse.TabIndex = 16;
- //
- // lblTundidhUse
- //
- this.lblTundidhUse.AutoSize = true;
- this.lblTundidhUse.BackColor = System.Drawing.Color.Transparent;
- this.lblTundidhUse.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblTundidhUse.Location = new System.Drawing.Point(3, 133);
- this.lblTundidhUse.Name = "lblTundidhUse";
- this.lblTundidhUse.Size = new System.Drawing.Size(77, 12);
- this.lblTundidhUse.TabIndex = 311;
- this.lblTundidhUse.Text = "中包使用情况";
- //
- // ultraExpandableGroupBox1
- //
- appearance10.BackColor = System.Drawing.Color.Gainsboro;
- this.ultraExpandableGroupBox1.Appearance = appearance10;
- this.ultraExpandableGroupBox1.Controls.Add(this.ulexpgrpModel);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1025, 277);
- this.ultraExpandableGroupBox1.Font = new System.Drawing.Font("宋体", 9F);
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 210);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1025, 277);
- this.ultraExpandableGroupBox1.TabIndex = 1;
- this.ultraExpandableGroupBox1.Text = "编辑区";
- this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.VisualStudio2005;
- //
- // ugrdUseInfo
- //
- this.ugrdUseInfo.DataSource = this.udsrUseInfo;
- ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn1.Header.Caption = "中间包编号";
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(40, 0);
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn1.Width = 39;
- ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn2.Header.Caption = "包龄";
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(44, 0);
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn2.Width = 40;
- ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn3.Header.Caption = "状态";
- ultraGridColumn3.Header.VisiblePosition = 9;
- ultraGridColumn3.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn3.Width = 52;
- ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn4.Header.Caption = "铸机号";
- ultraGridColumn4.Header.VisiblePosition = 7;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn4.Width = 65;
- ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn5.Header.Caption = "包盖号";
- ultraGridColumn5.Header.VisiblePosition = 2;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn5.Width = 50;
- ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn6.Header.Caption = "上包班别";
- ultraGridColumn6.Header.VisiblePosition = 3;
- ultraGridColumn6.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn6.Width = 58;
- ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn7.Header.Caption = "工位";
- ultraGridColumn7.Header.VisiblePosition = 4;
- ultraGridColumn7.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(46, 0);
- ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn7.Width = 39;
- ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn8.Header.Caption = "上包时间";
- ultraGridColumn8.Header.VisiblePosition = 5;
- ultraGridColumn8.MaskInput = "";
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(135, 0);
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn8.Width = 139;
- ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn9.Header.Caption = "钢种";
- ultraGridColumn9.Header.VisiblePosition = 6;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(76, 0);
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn9.Width = 79;
- ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn10.Header.Caption = "浇次号";
- ultraGridColumn10.Header.VisiblePosition = 8;
- ultraGridColumn10.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(63, 0);
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn10.Width = 66;
- ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn11.Header.Caption = "小火开始时间";
- ultraGridColumn11.Header.VisiblePosition = 10;
- ultraGridColumn11.MaskInput = "";
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(135, 0);
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn11.Width = 143;
- ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn12.Header.Caption = "中火开始时间";
- ultraGridColumn12.Header.VisiblePosition = 11;
- ultraGridColumn12.MaskInput = "";
- ultraGridColumn12.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(135, 0);
- ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn12.Width = 148;
- ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn13.Header.Caption = "大火开始时间";
- ultraGridColumn13.Header.VisiblePosition = 12;
- ultraGridColumn13.MaskInput = "";
- ultraGridColumn13.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(135, 0);
- ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn13.Width = 142;
- ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn14.Header.Caption = "周期编号";
- ultraGridColumn14.Header.VisiblePosition = 13;
- ultraGridColumn14.Hidden = true;
- ultraGridColumn14.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn15.Header.Caption = "开浇班别";
- ultraGridColumn15.Header.VisiblePosition = 14;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 28;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(59, 0);
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn15.Width = 58;
- ultraGridColumn16.Header.Caption = "开浇时间";
- ultraGridColumn16.Header.VisiblePosition = 15;
- ultraGridColumn16.RowLayoutColumnInfo.OriginX = 30;
- ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(135, 0);
- ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn16.Width = 144;
- ultraGridColumn17.Header.Caption = "停浇时间";
- ultraGridColumn17.Header.VisiblePosition = 16;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 32;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(135, 0);
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn17.Width = 142;
- ultraGridColumn18.Header.Caption = "停浇原因";
- ultraGridColumn18.Header.VisiblePosition = 17;
- ultraGridColumn18.RowLayoutColumnInfo.OriginX = 34;
- ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn18.Width = 84;
- ultraGridColumn19.Header.Caption = "中包使用情况";
- ultraGridColumn19.Header.VisiblePosition = 18;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 36;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(115, 0);
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn20.Header.Caption = "验包人签名";
- ultraGridColumn20.Header.VisiblePosition = 19;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 38;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(75, 0);
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn20.Width = 85;
- ultraGridColumn21.Header.Caption = "厂家签名";
- ultraGridColumn21.Header.VisiblePosition = 20;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 40;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn22.Header.Caption = "滑动水口厂家";
- ultraGridColumn22.Header.VisiblePosition = 21;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 42;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn23.Header.Caption = "涂料厂家";
- ultraGridColumn23.Header.VisiblePosition = 22;
- ultraGridColumn23.RowLayoutColumnInfo.OriginX = 44;
- ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn24.Header.Caption = "上水口厂家";
- ultraGridColumn24.Header.VisiblePosition = 23;
- ultraGridColumn24.RowLayoutColumnInfo.OriginX = 46;
- ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn25.Header.Caption = "塞棒厂家";
- ultraGridColumn25.Header.VisiblePosition = 24;
- ultraGridColumn25.RowLayoutColumnInfo.OriginX = 48;
- ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn26.Header.Caption = "下水口厂家";
- ultraGridColumn26.Header.VisiblePosition = 25;
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 50;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn27.Header.Caption = "备注";
- ultraGridColumn27.Header.VisiblePosition = 26;
- ultraGridColumn27.RowLayoutColumnInfo.OriginX = 52;
- ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(160, 0);
- ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn28.Header.VisiblePosition = 27;
- ultraGridColumn28.Hidden = true;
- 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});
- ultraGridBand1.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
- ultraGridBand1.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
- ultraGridBand1.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
- ultraGridBand1.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
- ultraGridBand1.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
- ultraGridBand1.Override.CellMultiLine = Infragistics.Win.DefaultableBoolean.True;
- ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ugrdUseInfo.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- appearance5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
- appearance5.FontData.SizeInPoints = 9F;
- appearance5.TextHAlignAsString = "Left";
- this.ugrdUseInfo.DisplayLayout.CaptionAppearance = appearance5;
- this.ugrdUseInfo.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
- appearance6.BackColor = System.Drawing.Color.LightSteelBlue;
- this.ugrdUseInfo.DisplayLayout.Override.HeaderAppearance = appearance6;
- this.ugrdUseInfo.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- this.ugrdUseInfo.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ugrdUseInfo.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ugrdUseInfo.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- valueList1.Key = "positionid";
- valueListItem5.DataValue = "1";
- valueListItem5.DisplayText = "东";
- valueListItem6.DataValue = "2";
- valueListItem6.DisplayText = "西";
- valueList1.ValueListItems.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem5,
- valueListItem6});
- valueList2.Key = "UpClassDuty";
- valueListItem7.DataValue = "1";
- valueListItem7.DisplayText = "甲班";
- valueListItem8.DataValue = "2";
- valueListItem8.DisplayText = "乙班";
- valueListItem9.DataValue = "3";
- valueListItem9.DisplayText = "丙班";
- valueListItem10.DataValue = "4";
- valueListItem10.DisplayText = "丁班";
- valueList2.ValueListItems.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem7,
- valueListItem8,
- valueListItem9,
- valueListItem10});
- valueList3.Key = "LadleStatus";
- valueListItem11.DataValue = "0";
- valueListItem11.DisplayText = "下线";
- valueListItem12.DataValue = "1";
- valueListItem12.DisplayText = "等待位";
- valueListItem13.DataValue = "2";
- valueListItem13.DisplayText = "浇铸位";
- valueList3.ValueListItems.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem11,
- valueListItem12,
- valueListItem13});
- valueList4.Key = "KaiJiaoDuty";
- valueListItem14.DataValue = "1";
- valueListItem14.DisplayText = "甲班";
- valueListItem15.DataValue = "2";
- valueListItem15.DisplayText = "乙班";
- valueListItem16.DataValue = "3";
- valueListItem16.DisplayText = "丙班";
- valueListItem17.DataValue = "4";
- valueListItem17.DisplayText = "丁班";
- valueList4.ValueListItems.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem14,
- valueListItem15,
- valueListItem16,
- valueListItem17});
- this.ugrdUseInfo.DisplayLayout.ValueLists.AddRange(new Infragistics.Win.ValueList[] {
- valueList1,
- valueList2,
- valueList3,
- valueList4});
- this.ugrdUseInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ugrdUseInfo.Font = new System.Drawing.Font("宋体", 9F);
- this.ugrdUseInfo.Location = new System.Drawing.Point(0, 0);
- this.ugrdUseInfo.Name = "ugrdUseInfo";
- this.ugrdUseInfo.Size = new System.Drawing.Size(626, 168);
- this.ugrdUseInfo.TabIndex = 1;
- this.ugrdUseInfo.AfterRowActivate += new System.EventHandler(this.ulgridUseInfo_AfterRowActivate);
- //
- // ultraExpandableGroupBox2
- //
- appearance7.BackColor = System.Drawing.Color.Gainsboro;
- this.ultraExpandableGroupBox2.Appearance = appearance7;
- this.ultraExpandableGroupBox2.CaptionAlignment = Infragistics.Win.Misc.GroupBoxCaptionAlignment.Far;
- this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Left;
- this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(390, 168);
- this.ultraExpandableGroupBox2.Font = new System.Drawing.Font("宋体", 9F);
- this.ultraExpandableGroupBox2.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftOnBorder;
- this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(3, 0);
- this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
- this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(390, 168);
- this.ultraExpandableGroupBox2.TabIndex = 0;
- this.ultraExpandableGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.VisualStudio2005;
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ugrdBaseInfo);
- this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(13, 2);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(375, 164);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- //
- // ugrdBaseInfo
- //
- this.ugrdBaseInfo.DataSource = this.udsrBaseInfo;
- ultraGridColumn29.Header.Caption = "中间包编号";
- ultraGridColumn29.Header.VisiblePosition = 0;
- ultraGridColumn29.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn29.Width = 39;
- ultraGridColumn30.Header.Caption = "包龄";
- ultraGridColumn30.Header.VisiblePosition = 1;
- ultraGridColumn30.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn30.Width = 42;
- ultraGridColumn31.Header.Caption = "状态";
- ultraGridColumn31.Header.VisiblePosition = 2;
- ultraGridColumn31.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn31.Width = 60;
- ultraGridColumn32.Header.Caption = "铸机号";
- ultraGridColumn32.Header.VisiblePosition = 3;
- ultraGridColumn32.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn32.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn32.Width = 63;
- ultraGridColumn33.Header.Caption = "工位";
- ultraGridColumn33.Header.VisiblePosition = 4;
- ultraGridColumn33.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn33.Width = 45;
- ultraGridColumn34.Header.Caption = "生产日期";
- ultraGridColumn34.Header.VisiblePosition = 5;
- ultraGridColumn34.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn34.Width = 93;
- ultraGridColumn35.Header.Caption = "购买日期";
- ultraGridColumn35.Header.VisiblePosition = 6;
- ultraGridColumn35.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn35.Width = 95;
- ultraGridColumn36.Header.Caption = "备注";
- ultraGridColumn36.Header.VisiblePosition = 7;
- ultraGridColumn36.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn36.Width = 137;
- ultraGridColumn37.Header.Caption = "包级";
- ultraGridColumn37.Header.VisiblePosition = 8;
- ultraGridColumn37.Hidden = true;
- ultraGridColumn37.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn38.Header.Caption = "使用炉数";
- ultraGridColumn38.Header.VisiblePosition = 9;
- ultraGridColumn38.Hidden = true;
- ultraGridColumn38.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn39.Header.Caption = "参数类型编号";
- ultraGridColumn39.Header.VisiblePosition = 10;
- ultraGridColumn39.Hidden = true;
- ultraGridColumn39.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn40.Header.VisiblePosition = 11;
- ultraGridColumn40.Hidden = true;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn29,
- ultraGridColumn30,
- ultraGridColumn31,
- ultraGridColumn32,
- ultraGridColumn33,
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40});
- ultraGridBand2.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
- ultraGridBand2.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
- ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
- this.ugrdBaseInfo.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- appearance8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
- appearance8.FontData.SizeInPoints = 9F;
- appearance8.TextHAlignAsString = "Left";
- this.ugrdBaseInfo.DisplayLayout.CaptionAppearance = appearance8;
- this.ugrdBaseInfo.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
- appearance9.BackColor = System.Drawing.Color.LightSteelBlue;
- this.ugrdBaseInfo.DisplayLayout.Override.HeaderAppearance = appearance9;
- this.ugrdBaseInfo.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- this.ugrdBaseInfo.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ugrdBaseInfo.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ugrdBaseInfo.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- valueList5.Key = "ladlestatus";
- valueListItem18.DataValue = "0";
- valueListItem18.DisplayText = "下线";
- valueListItem19.DataValue = "1";
- valueListItem19.DisplayText = "等待位";
- valueListItem20.DataValue = "2";
- valueListItem20.DisplayText = "浇铸位";
- valueList5.ValueListItems.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem18,
- valueListItem19,
- valueListItem20});
- this.ugrdBaseInfo.DisplayLayout.ValueLists.AddRange(new Infragistics.Win.ValueList[] {
- valueList5});
- this.ugrdBaseInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ugrdBaseInfo.Font = new System.Drawing.Font("宋体", 9F);
- this.ugrdBaseInfo.Location = new System.Drawing.Point(0, 0);
- this.ugrdBaseInfo.Name = "ugrdBaseInfo";
- this.ugrdBaseInfo.Size = new System.Drawing.Size(375, 164);
- this.ugrdBaseInfo.TabIndex = 0;
- this.ugrdBaseInfo.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ulgridBaseInfo_DoubleClickRow);
- this.ugrdBaseInfo.AfterRowActivate += new System.EventHandler(this.ulgridBaseInfo_AfterRowActivate);
- //
- // udsrBaseInfo
- //
- this.udsrBaseInfo.Band.Columns.AddRange(new object[] {
- ultraDataColumn29,
- ultraDataColumn30,
- ultraDataColumn31,
- ultraDataColumn32,
- ultraDataColumn33,
- ultraDataColumn34,
- ultraDataColumn35,
- ultraDataColumn36,
- ultraDataColumn37,
- ultraDataColumn38,
- ultraDataColumn39,
- ultraDataColumn40});
- //
- // ultraGroupBox3
- //
- this.ultraGroupBox3.Controls.Add(this.ucmeID);
- this.ultraGroupBox3.Controls.Add(this.udteEnd);
- this.ultraGroupBox3.Controls.Add(this.ucmeZJH);
- this.ultraGroupBox3.Controls.Add(this.chkZJH);
- this.ultraGroupBox3.Controls.Add(this.chkDate);
- this.ultraGroupBox3.Controls.Add(this.udteStart);
- this.ultraGroupBox3.Controls.Add(this.label1);
- this.ultraGroupBox3.Controls.Add(this.chkID);
- this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox3.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox3.Name = "ultraGroupBox3";
- this.ultraGroupBox3.Size = new System.Drawing.Size(1025, 39);
- this.ultraGroupBox3.TabIndex = 257;
- //
- // ultraGroupBox4
- //
- this.ultraGroupBox4.Controls.Add(this.ultraPanel1);
- this.ultraGroupBox4.Controls.Add(this.splitter2);
- this.ultraGroupBox4.Controls.Add(this.ultraExpandableGroupBox2);
- this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox4.Location = new System.Drawing.Point(0, 39);
- this.ultraGroupBox4.Name = "ultraGroupBox4";
- this.ultraGroupBox4.Size = new System.Drawing.Size(1025, 171);
- this.ultraGroupBox4.TabIndex = 258;
- //
- // ultraPanel1
- //
- //
- // ultraPanel1.ClientArea
- //
- this.ultraPanel1.ClientArea.Controls.Add(this.ugrdUseInfo);
- this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel1.Location = new System.Drawing.Point(396, 0);
- this.ultraPanel1.Name = "ultraPanel1";
- this.ultraPanel1.Size = new System.Drawing.Size(626, 168);
- this.ultraPanel1.TabIndex = 4;
- //
- // splitter2
- //
- this.splitter2.BackColor = System.Drawing.SystemColors.InactiveCaptionText;
- this.splitter2.Location = new System.Drawing.Point(393, 0);
- this.splitter2.Name = "splitter2";
- this.splitter2.Size = new System.Drawing.Size(3, 168);
- this.splitter2.TabIndex = 3;
- this.splitter2.TabStop = false;
- //
- // FrmTundishManage
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1025, 487);
- this.Controls.Add(this.ultraGroupBox4);
- this.Controls.Add(this.ultraGroupBox3);
- this.Controls.Add(this.ultraExpandableGroupBox1);
- this.Font = new System.Drawing.Font("宋体", 10.5F);
- this.Name = "FrmTundishManage";
- this.Text = "中间包信息管理";
- this.Load += new System.EventHandler(this.FrmTundishManage_Load);
- ((System.ComponentModel.ISupportInitialize)(this.udsrUseInfo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeID)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeZJH)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.udteEnd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.udteStart)).EndInit();
- this.ulexpgrpModel.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
- this.ultraGroupBox2.ResumeLayout(false);
- this.ultraGroupBox2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.udteMinFireBeginTime)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.udteMiddleFireBeginTime)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.udteMaxFireBeginTime)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).EndInit();
- this.ultraGroupBox5.ResumeLayout(false);
- this.ultraGroupBox5.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeGrude)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeDownNozzleFactory)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeUpNozzleFactory)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeSlidegateNozzleFactory)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeStickFactory)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeDopeFactory)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeReason)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeClass)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ucmeUpClass)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.udtpEndTime)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uldtpUpLableDate)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uldtpBeginDate)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ugrdUseInfo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
- this.ultraExpandableGroupBox2.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ugrdBaseInfo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.udsrBaseInfo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
- this.ultraGroupBox3.ResumeLayout(false);
- this.ultraGroupBox3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
- this.ultraGroupBox4.ResumeLayout(false);
- this.ultraPanel1.ClientArea.ResumeLayout(false);
- this.ultraPanel1.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.CheckBox chkID;
- public Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- public Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ulexpgrpModel;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private System.Windows.Forms.ComboBox cmbCcmPositionID;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor uldtpBeginDate;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label lblCcmPositionID;
- private System.Windows.Forms.ComboBox cmbStatus;
- private System.Windows.Forms.Label lblStatus;
- private System.Windows.Forms.Label lblTundishName;
- private System.Windows.Forms.Label lblGrude;
- private System.Windows.Forms.Label lblMemo;
- private System.Windows.Forms.TextBox txtMemo;
- private System.Windows.Forms.TextBox txtMouldID;
- private System.Windows.Forms.Label lblMouldID;
- private System.Windows.Forms.Label lblAge;
- private System.Windows.Forms.Label lblDopeFactory;
- private System.Windows.Forms.Label lblUpNozzleFactory;
- private System.Windows.Forms.Label lblStickFactory;
- private System.Windows.Forms.Label lblDownNozzleFactory;
- private System.Windows.Forms.Label lblBeginDate;
- private System.Windows.Forms.Label lblReason;
- private System.Windows.Forms.Label lblUpLableDate;
- private System.Windows.Forms.Label lblSlidegateNozzleFactory;
- private System.Windows.Forms.TextBox txtAge;
- private System.Windows.Forms.Label lblTundidhUse;
- private System.Windows.Forms.TextBox txtTundidhUse;
- private Infragistics.Win.Misc.UltraButton btn_MaxFire;
- private Infragistics.Win.Misc.UltraButton btn_MiddleFire;
- private Infragistics.Win.Misc.UltraButton btn_MinFire;
- private System.Windows.Forms.Label lblMaxFireBeginTime;
- private System.Windows.Forms.Label lblMiddleFireBeginTime;
- private System.Windows.Forms.Label lblMinFireBeginTime;
- private System.Windows.Forms.Label lblLadlelId;
- private System.Windows.Forms.TextBox txtLadlelId;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udteMaxFireBeginTime;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udteMiddleFireBeginTime;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udteMinFireBeginTime;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor uldtpUpLableDate;
- private System.Windows.Forms.TextBox txtTundishName;
- private System.Windows.Forms.Label lblTundishName2;
- public Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox2;
- public Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- public Infragistics.Win.UltraWinGrid.UltraGrid ugrdBaseInfo;
- private Infragistics.Win.UltraWinDataSource.UltraDataSource udsrUseInfo;
- private System.Windows.Forms.ComboBox cmbPositionId;
- private System.Windows.Forms.Label lblPositionId;
- private System.Windows.Forms.Label lblClass;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udtpEndTime;
- private System.Windows.Forms.Label lblEndTime;
- private System.Windows.Forms.Label lblUpClass;
- private System.Windows.Forms.Label lblFactoryName;
- private System.Windows.Forms.TextBox txtFactoryName;
- private System.Windows.Forms.Label lblCheckName;
- private System.Windows.Forms.TextBox txtCheckName;
- private System.Windows.Forms.CheckBox chkZJH;
- private Infragistics.Win.UltraWinDataSource.UltraDataSource udsrBaseInfo;
- private System.Windows.Forms.TextBox txtTundishName1;
- public Infragistics.Win.UltraWinGrid.UltraGrid ugrdUseInfo;
- private System.Windows.Forms.CheckBox chkDate;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udteStart;
- private System.Windows.Forms.Label label1;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udteEnd;
- private Infragistics.Win.Misc.UltraButton btnClrMax;
- private Infragistics.Win.Misc.UltraButton btnClrMid;
- private Infragistics.Win.Misc.UltraButton btnClrMin;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeID;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeZJH;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeReason;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeClass;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeUpClass;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeDownNozzleFactory;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeUpNozzleFactory;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeSlidegateNozzleFactory;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeStickFactory;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeDopeFactory;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ucmeGrude;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
- private System.Windows.Forms.Splitter splitter2;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox5;
- private Infragistics.Win.Misc.UltraPanel ultraPanel1;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
- }
- }
|