| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950 |
- namespace Core.LgMes.Client.LgDeviceManager
- {
- partial class FrmZEROManage
- {
- /// <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.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("ultlbar1");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("BaseInfo");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PLUGIN");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("JJQWX");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("RepairDetail");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Select");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Modfiy");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("RepairDetail");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("BaseInfo");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("JJQWX");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Select");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Modfiy");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Delete");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PLUGIN");
- Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("dtBaseInfo", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("段位号");
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("铸机号");
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("流号");
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("状态");
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("班别");
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("通钢量");
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("连浇炉数");
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("断面");
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("使用炉数");
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("类型");
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("换上时间");
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("换下时间");
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("维护人员");
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("备注");
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("外弧铜板");
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("内弧铜板");
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("左侧铜板");
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("右侧铜板");
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VL1");
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VL2");
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VL3");
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VL4");
- Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VL5");
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VL6");
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("铜板厂家");
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("钢钟");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OUTAGE");
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INNERAGE");
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LEFTAGE");
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RIGHTAGE");
- Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("周期编号");
- Infragistics.Win.Appearance appearance130 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance131 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn1 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("段位号");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn2 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("铸机号");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn3 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("流号");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn4 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("状态");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn5 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("班别");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn6 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("通钢量");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn7 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("连浇炉数");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn8 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("断面");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn9 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("使用炉数");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn10 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("类型");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn11 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("换上时间");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn12 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("换下时间");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn13 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("维护人员");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn14 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("备注");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn15 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("外弧铜板");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn16 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("内弧铜板");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn17 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("左侧铜板");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn18 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("右侧铜板");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn19 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("VL1");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn20 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("VL2");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn21 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("VL3");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn22 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("VL4");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn23 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("VL5");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn24 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("VL6");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn25 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("铜板厂家");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn26 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("钢钟");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn27 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("OUTAGE");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn28 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("INNERAGE");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn29 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("LEFTAGE");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn30 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("RIGHTAGE");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn31 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("ID");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn32 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("周期编号");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn33 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("段位号");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn34 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("状态");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn35 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("铸机号");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn36 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("流号");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn37 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("通钢量");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn38 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("使用炉数");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn39 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("类型");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn40 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("生产日期");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn41 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("购买日期");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn42 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("备注");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn43 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("ID");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn44 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("OUTAGE");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn45 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("INNERAGE");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn46 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("LEFTAGE");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn47 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("RIGHTAGE");
- Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("dtBaseInfo", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("段位号");
- Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("状态");
- Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("铸机号");
- Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("流号");
- Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("通钢量");
- Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("使用炉数");
- Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("类型");
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("生产日期");
- Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("购买日期");
- Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("备注");
- Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ID");
- Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OUTAGE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INNERAGE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LEFTAGE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RIGHTAGE");
- Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
- this.ulexpgrpModel = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.txtWidth = new System.Windows.Forms.TextBox();
- this.label11 = new System.Windows.Forms.Label();
- this.label29 = new System.Windows.Forms.Label();
- this.label26 = new System.Windows.Forms.Label();
- this.label28 = new System.Windows.Forms.Label();
- this.label12 = new System.Windows.Forms.Label();
- this.label27 = new System.Windows.Forms.Label();
- this.label24 = new System.Windows.Forms.Label();
- this.tbCS6 = new System.Windows.Forms.TextBox();
- this.tbCS5 = new System.Windows.Forms.TextBox();
- this.tbCS4 = new System.Windows.Forms.TextBox();
- this.tbCS3 = new System.Windows.Forms.TextBox();
- this.tbCS2 = new System.Windows.Forms.TextBox();
- this.tbCS1 = new System.Windows.Forms.TextBox();
- this.tbNO6 = new System.Windows.Forms.TextBox();
- this.tbNO5 = new System.Windows.Forms.TextBox();
- this.tbNO4 = new System.Windows.Forms.TextBox();
- this.tbNO3 = new System.Windows.Forms.TextBox();
- this.tbNO2 = new System.Windows.Forms.TextBox();
- this.tbNO1 = new System.Windows.Forms.TextBox();
- this.ultraDateTimeEditor1 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultraDateTimeEditor2 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.cbbBC = new System.Windows.Forms.ComboBox();
- this.tbGZ = new System.Windows.Forms.TextBox();
- this.tbTGL = new System.Windows.Forms.TextBox();
- this.tbID = new System.Windows.Forms.TextBox();
- this.cbbType = new System.Windows.Forms.ComboBox();
- this.label7 = new System.Windows.Forms.Label();
- this.label1 = new System.Windows.Forms.Label();
- this.tbLJLS = new System.Windows.Forms.TextBox();
- this.label20 = new System.Windows.Forms.Label();
- this.tbWHRY = new System.Windows.Forms.TextBox();
- this.cbbBB = new System.Windows.Forms.ComboBox();
- this.label16 = new System.Windows.Forms.Label();
- this.cbbStatus = new System.Windows.Forms.ComboBox();
- this.label13 = new System.Windows.Forms.Label();
- this.cbbPos = new System.Windows.Forms.ComboBox();
- this.tbDM = new System.Windows.Forms.TextBox();
- this.label30 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.label5 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.tbSYCS = new System.Windows.Forms.TextBox();
- this.label9 = new System.Windows.Forms.Label();
- this.label14 = new System.Windows.Forms.Label();
- this.cbbCCM = new System.Windows.Forms.ComboBox();
- this.label15 = new System.Windows.Forms.Label();
- this.label8 = new System.Windows.Forms.Label();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
- this._FrmBase_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._FrmBase_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._FrmBase_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._FrmBase_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this.chkID = new System.Windows.Forms.CheckBox();
- this.cmbID = new System.Windows.Forms.ComboBox();
- this.ulgrpModel = new Infragistics.Win.Misc.UltraGroupBox();
- this.label23 = new System.Windows.Forms.Label();
- this.udteTo = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.udteFrom = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.chkDate = new System.Windows.Forms.CheckBox();
- this.chkCCM = new System.Windows.Forms.CheckBox();
- this.cmbZJH = new System.Windows.Forms.ComboBox();
- this.ulgridUseInfo = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultdsUseInfo = new Infragistics.Win.UltraWinDataSource.UltraDataSource(this.components);
- this.ultdsBaseInfo = new Infragistics.Win.UltraWinDataSource.UltraDataSource(this.components);
- this.panel1 = new System.Windows.Forms.Panel();
- this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ulgridBaseInfo = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ulexpgrpModel.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ulgrpModel)).BeginInit();
- this.ulgrpModel.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.udteTo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.udteFrom)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ulgridUseInfo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultdsUseInfo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultdsBaseInfo)).BeginInit();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
- this.ultraExpandableGroupBox2.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ulgridBaseInfo)).BeginInit();
- this.SuspendLayout();
- //
- // 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(1182, 110);
- this.ulexpgrpModel.TabIndex = 0;
- //
- // ultraGroupBox1
- //
- appearance2.FontData.Name = "宋体";
- appearance2.FontData.SizeInPoints = 9F;
- this.ultraGroupBox1.Appearance = appearance2;
- this.ultraGroupBox1.Controls.Add(this.txtWidth);
- this.ultraGroupBox1.Controls.Add(this.label11);
- this.ultraGroupBox1.Controls.Add(this.label29);
- this.ultraGroupBox1.Controls.Add(this.label26);
- this.ultraGroupBox1.Controls.Add(this.label28);
- this.ultraGroupBox1.Controls.Add(this.label12);
- this.ultraGroupBox1.Controls.Add(this.label27);
- this.ultraGroupBox1.Controls.Add(this.label24);
- this.ultraGroupBox1.Controls.Add(this.tbCS6);
- this.ultraGroupBox1.Controls.Add(this.tbCS5);
- this.ultraGroupBox1.Controls.Add(this.tbCS4);
- this.ultraGroupBox1.Controls.Add(this.tbCS3);
- this.ultraGroupBox1.Controls.Add(this.tbCS2);
- this.ultraGroupBox1.Controls.Add(this.tbCS1);
- this.ultraGroupBox1.Controls.Add(this.tbNO6);
- this.ultraGroupBox1.Controls.Add(this.tbNO5);
- this.ultraGroupBox1.Controls.Add(this.tbNO4);
- this.ultraGroupBox1.Controls.Add(this.tbNO3);
- this.ultraGroupBox1.Controls.Add(this.tbNO2);
- this.ultraGroupBox1.Controls.Add(this.tbNO1);
- this.ultraGroupBox1.Controls.Add(this.ultraDateTimeEditor1);
- this.ultraGroupBox1.Controls.Add(this.ultraDateTimeEditor2);
- this.ultraGroupBox1.Controls.Add(this.cbbBC);
- this.ultraGroupBox1.Controls.Add(this.tbGZ);
- this.ultraGroupBox1.Controls.Add(this.tbTGL);
- this.ultraGroupBox1.Controls.Add(this.tbID);
- this.ultraGroupBox1.Controls.Add(this.cbbType);
- this.ultraGroupBox1.Controls.Add(this.label7);
- this.ultraGroupBox1.Controls.Add(this.label1);
- this.ultraGroupBox1.Controls.Add(this.tbLJLS);
- this.ultraGroupBox1.Controls.Add(this.label20);
- this.ultraGroupBox1.Controls.Add(this.tbWHRY);
- this.ultraGroupBox1.Controls.Add(this.cbbBB);
- this.ultraGroupBox1.Controls.Add(this.label16);
- this.ultraGroupBox1.Controls.Add(this.cbbStatus);
- this.ultraGroupBox1.Controls.Add(this.label13);
- this.ultraGroupBox1.Controls.Add(this.cbbPos);
- this.ultraGroupBox1.Controls.Add(this.tbDM);
- this.ultraGroupBox1.Controls.Add(this.label30);
- this.ultraGroupBox1.Controls.Add(this.label2);
- this.ultraGroupBox1.Controls.Add(this.label3);
- this.ultraGroupBox1.Controls.Add(this.label5);
- this.ultraGroupBox1.Controls.Add(this.label6);
- this.ultraGroupBox1.Controls.Add(this.tbSYCS);
- this.ultraGroupBox1.Controls.Add(this.label9);
- this.ultraGroupBox1.Controls.Add(this.label14);
- this.ultraGroupBox1.Controls.Add(this.cbbCCM);
- this.ultraGroupBox1.Controls.Add(this.label15);
- this.ultraGroupBox1.Controls.Add(this.label8);
- 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(1182, 110);
- this.ultraGroupBox1.TabIndex = 0;
- this.ultraGroupBox1.Text = "使用记录";
- //
- // txtWidth
- //
- this.txtWidth.AcceptsReturn = true;
- this.txtWidth.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtWidth.Location = new System.Drawing.Point(246, 135);
- this.txtWidth.Name = "txtWidth";
- this.txtWidth.Size = new System.Drawing.Size(34, 21);
- this.txtWidth.TabIndex = 36;
- this.txtWidth.Visible = false;
- this.txtWidth.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtWidth_KeyPress);
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.BackColor = System.Drawing.Color.Transparent;
- this.label11.Location = new System.Drawing.Point(234, 139);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(11, 12);
- this.label11.TabIndex = 35;
- this.label11.Text = "X";
- this.label11.Visible = false;
- //
- // label29
- //
- this.label29.AutoSize = true;
- this.label29.BackColor = System.Drawing.Color.Transparent;
- this.label29.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label29.Location = new System.Drawing.Point(466, 164);
- this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(53, 12);
- this.label29.TabIndex = 0;
- this.label29.Text = "内弧水箱";
- this.label29.Visible = false;
- //
- // label26
- //
- this.label26.AutoSize = true;
- this.label26.BackColor = System.Drawing.Color.Transparent;
- this.label26.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label26.Location = new System.Drawing.Point(466, 136);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(53, 12);
- this.label26.TabIndex = 0;
- this.label26.Text = "外弧水箱";
- this.label26.Visible = false;
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.BackColor = System.Drawing.Color.Transparent;
- this.label28.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label28.Location = new System.Drawing.Point(942, 159);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(53, 12);
- this.label28.TabIndex = 0;
- this.label28.Text = "右侧铜板";
- this.label28.Visible = false;
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.BackColor = System.Drawing.Color.Transparent;
- this.label12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label12.Location = new System.Drawing.Point(942, 131);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(53, 12);
- this.label12.TabIndex = 0;
- this.label12.Text = "左侧铜板";
- this.label12.Visible = false;
- //
- // label27
- //
- this.label27.AutoSize = true;
- this.label27.BackColor = System.Drawing.Color.Transparent;
- this.label27.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label27.Location = new System.Drawing.Point(703, 163);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(53, 12);
- this.label27.TabIndex = 0;
- this.label27.Text = "内弧铜板";
- this.label27.Visible = false;
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.BackColor = System.Drawing.Color.Transparent;
- this.label24.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label24.Location = new System.Drawing.Point(702, 136);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(53, 12);
- this.label24.TabIndex = 0;
- this.label24.Text = "外弧铜板";
- this.label24.Visible = false;
- //
- // tbCS6
- //
- this.tbCS6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbCS6.Location = new System.Drawing.Point(597, 159);
- this.tbCS6.Name = "tbCS6";
- this.tbCS6.Size = new System.Drawing.Size(70, 21);
- this.tbCS6.TabIndex = 32;
- this.tbCS6.Visible = false;
- this.tbCS6.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumberEditor_KeyPress);
- //
- // tbCS5
- //
- this.tbCS5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbCS5.Location = new System.Drawing.Point(597, 132);
- this.tbCS5.Name = "tbCS5";
- this.tbCS5.Size = new System.Drawing.Size(70, 21);
- this.tbCS5.TabIndex = 30;
- this.tbCS5.Visible = false;
- this.tbCS5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumberEditor_KeyPress);
- //
- // tbCS4
- //
- this.tbCS4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbCS4.Location = new System.Drawing.Point(1001, 154);
- this.tbCS4.Name = "tbCS4";
- this.tbCS4.Size = new System.Drawing.Size(70, 21);
- this.tbCS4.TabIndex = 28;
- this.tbCS4.Visible = false;
- this.tbCS4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumberEditor_KeyPress);
- //
- // tbCS3
- //
- this.tbCS3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbCS3.Location = new System.Drawing.Point(1001, 126);
- this.tbCS3.Name = "tbCS3";
- this.tbCS3.Size = new System.Drawing.Size(70, 21);
- this.tbCS3.TabIndex = 26;
- this.tbCS3.Visible = false;
- this.tbCS3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumberEditor_KeyPress);
- //
- // tbCS2
- //
- this.tbCS2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbCS2.Location = new System.Drawing.Point(761, 159);
- this.tbCS2.Name = "tbCS2";
- this.tbCS2.Size = new System.Drawing.Size(70, 21);
- this.tbCS2.TabIndex = 24;
- this.tbCS2.Visible = false;
- this.tbCS2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumberEditor_KeyPress);
- //
- // tbCS1
- //
- this.tbCS1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbCS1.Location = new System.Drawing.Point(761, 131);
- this.tbCS1.Name = "tbCS1";
- this.tbCS1.Size = new System.Drawing.Size(70, 21);
- this.tbCS1.TabIndex = 22;
- this.tbCS1.Visible = false;
- this.tbCS1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumberEditor_KeyPress);
- //
- // tbNO6
- //
- this.tbNO6.BackColor = System.Drawing.Color.Gainsboro;
- this.tbNO6.Enabled = false;
- this.tbNO6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbNO6.Location = new System.Drawing.Point(529, 159);
- this.tbNO6.Name = "tbNO6";
- this.tbNO6.ReadOnly = true;
- this.tbNO6.Size = new System.Drawing.Size(70, 21);
- this.tbNO6.TabIndex = 31;
- this.tbNO6.Visible = false;
- //
- // tbNO5
- //
- this.tbNO5.BackColor = System.Drawing.Color.Gainsboro;
- this.tbNO5.Enabled = false;
- this.tbNO5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbNO5.Location = new System.Drawing.Point(529, 132);
- this.tbNO5.Name = "tbNO5";
- this.tbNO5.ReadOnly = true;
- this.tbNO5.Size = new System.Drawing.Size(70, 21);
- this.tbNO5.TabIndex = 29;
- this.tbNO5.Visible = false;
- //
- // tbNO4
- //
- this.tbNO4.BackColor = System.Drawing.Color.Gainsboro;
- this.tbNO4.Enabled = false;
- this.tbNO4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbNO4.Location = new System.Drawing.Point(1073, 154);
- this.tbNO4.Name = "tbNO4";
- this.tbNO4.ReadOnly = true;
- this.tbNO4.Size = new System.Drawing.Size(70, 21);
- this.tbNO4.TabIndex = 27;
- this.tbNO4.Visible = false;
- //
- // tbNO3
- //
- this.tbNO3.BackColor = System.Drawing.Color.Gainsboro;
- this.tbNO3.Enabled = false;
- this.tbNO3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbNO3.Location = new System.Drawing.Point(1073, 126);
- this.tbNO3.Name = "tbNO3";
- this.tbNO3.ReadOnly = true;
- this.tbNO3.Size = new System.Drawing.Size(70, 21);
- this.tbNO3.TabIndex = 25;
- this.tbNO3.Visible = false;
- //
- // tbNO2
- //
- this.tbNO2.BackColor = System.Drawing.Color.Gainsboro;
- this.tbNO2.Enabled = false;
- this.tbNO2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbNO2.Location = new System.Drawing.Point(833, 159);
- this.tbNO2.Name = "tbNO2";
- this.tbNO2.ReadOnly = true;
- this.tbNO2.Size = new System.Drawing.Size(70, 21);
- this.tbNO2.TabIndex = 23;
- this.tbNO2.Visible = false;
- //
- // tbNO1
- //
- this.tbNO1.BackColor = System.Drawing.Color.Gainsboro;
- this.tbNO1.Enabled = false;
- this.tbNO1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbNO1.Location = new System.Drawing.Point(833, 132);
- this.tbNO1.Name = "tbNO1";
- this.tbNO1.ReadOnly = true;
- this.tbNO1.Size = new System.Drawing.Size(70, 21);
- this.tbNO1.TabIndex = 21;
- this.tbNO1.Visible = false;
- //
- // ultraDateTimeEditor1
- //
- appearance3.BackColor = System.Drawing.Color.White;
- this.ultraDateTimeEditor1.Appearance = appearance3;
- this.ultraDateTimeEditor1.BackColor = System.Drawing.Color.White;
- this.ultraDateTimeEditor1.DateTime = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
- this.ultraDateTimeEditor1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraDateTimeEditor1.FormatProvider = new System.Globalization.CultureInfo("en-US");
- this.ultraDateTimeEditor1.FormatString = "yyyy-MM-dd HH:mm:ss";
- this.ultraDateTimeEditor1.Location = new System.Drawing.Point(761, 22);
- this.ultraDateTimeEditor1.MaskInput = "yyyy-mm-dd hh:mm:ss";
- this.ultraDateTimeEditor1.Name = "ultraDateTimeEditor1";
- this.ultraDateTimeEditor1.Size = new System.Drawing.Size(142, 21);
- this.ultraDateTimeEditor1.TabIndex = 18;
- this.ultraDateTimeEditor1.Value = null;
- //
- // ultraDateTimeEditor2
- //
- appearance4.BackColor = System.Drawing.Color.White;
- this.ultraDateTimeEditor2.Appearance = appearance4;
- this.ultraDateTimeEditor2.BackColor = System.Drawing.Color.White;
- this.ultraDateTimeEditor2.DateTime = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
- this.ultraDateTimeEditor2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraDateTimeEditor2.FormatProvider = new System.Globalization.CultureInfo("en-US");
- this.ultraDateTimeEditor2.FormatString = "yyyy-MM-dd HH:mm:ss";
- this.ultraDateTimeEditor2.Location = new System.Drawing.Point(1003, 18);
- this.ultraDateTimeEditor2.MaskInput = "yyyy-mm-dd hh:mm:ss";
- this.ultraDateTimeEditor2.Name = "ultraDateTimeEditor2";
- this.ultraDateTimeEditor2.Size = new System.Drawing.Size(142, 21);
- this.ultraDateTimeEditor2.TabIndex = 19;
- this.ultraDateTimeEditor2.Value = null;
- //
- // cbbBC
- //
- this.cbbBC.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbbBC.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbbBC.FormattingEnabled = true;
- this.cbbBC.Items.AddRange(new object[] {
- "白",
- "中",
- "夜"});
- this.cbbBC.Location = new System.Drawing.Point(583, 22);
- this.cbbBC.Name = "cbbBC";
- this.cbbBC.Size = new System.Drawing.Size(40, 20);
- this.cbbBC.TabIndex = 4;
- //
- // tbGZ
- //
- this.tbGZ.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbGZ.Location = new System.Drawing.Point(53, 136);
- this.tbGZ.Name = "tbGZ";
- this.tbGZ.Size = new System.Drawing.Size(96, 21);
- this.tbGZ.TabIndex = 11;
- this.tbGZ.Visible = false;
- //
- // tbTGL
- //
- this.tbTGL.BackColor = System.Drawing.SystemColors.Window;
- this.tbTGL.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbTGL.Location = new System.Drawing.Point(83, 50);
- this.tbTGL.Name = "tbTGL";
- this.tbTGL.Size = new System.Drawing.Size(76, 21);
- this.tbTGL.TabIndex = 6;
- this.tbTGL.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumberEditor_KeyPress);
- //
- // tbID
- //
- this.tbID.BackColor = System.Drawing.Color.Gainsboro;
- this.tbID.Enabled = false;
- this.tbID.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbID.Location = new System.Drawing.Point(83, 22);
- this.tbID.Name = "tbID";
- this.tbID.ReadOnly = true;
- this.tbID.Size = new System.Drawing.Size(76, 21);
- this.tbID.TabIndex = 1;
- //
- // cbbType
- //
- this.cbbType.BackColor = System.Drawing.Color.Gainsboro;
- this.cbbType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbbType.Enabled = false;
- this.cbbType.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbbType.FormattingEnabled = true;
- this.cbbType.Items.AddRange(new object[] {
- "垂直段",
- "弯曲段"});
- this.cbbType.Location = new System.Drawing.Point(583, 54);
- this.cbbType.Name = "cbbType";
- this.cbbType.Size = new System.Drawing.Size(81, 20);
- this.cbbType.TabIndex = 8;
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.BackColor = System.Drawing.Color.Transparent;
- this.label7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label7.Location = new System.Drawing.Point(549, 58);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(29, 12);
- this.label7.TabIndex = 0;
- this.label7.Text = "类型";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.BackColor = System.Drawing.Color.Transparent;
- this.label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label1.Location = new System.Drawing.Point(314, 140);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(53, 12);
- this.label1.TabIndex = 0;
- this.label1.Text = "连浇炉数";
- this.label1.Visible = false;
- //
- // tbLJLS
- //
- this.tbLJLS.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbLJLS.Location = new System.Drawing.Point(374, 136);
- this.tbLJLS.Name = "tbLJLS";
- this.tbLJLS.Size = new System.Drawing.Size(82, 21);
- this.tbLJLS.TabIndex = 15;
- this.tbLJLS.Visible = false;
- this.tbLJLS.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumberEditor_KeyPress);
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.BackColor = System.Drawing.Color.Transparent;
- this.label20.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label20.Location = new System.Drawing.Point(703, 58);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(53, 12);
- this.label20.TabIndex = 0;
- this.label20.Text = "维护人员";
- //
- // tbWHRY
- //
- this.tbWHRY.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbWHRY.Location = new System.Drawing.Point(761, 54);
- this.tbWHRY.Name = "tbWHRY";
- this.tbWHRY.Size = new System.Drawing.Size(82, 21);
- this.tbWHRY.TabIndex = 17;
- //
- // cbbBB
- //
- this.cbbBB.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbbBB.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbbBB.FormattingEnabled = true;
- this.cbbBB.Items.AddRange(new object[] {
- "甲",
- "乙",
- "丙",
- "丁"});
- this.cbbBB.Location = new System.Drawing.Point(625, 22);
- this.cbbBB.Name = "cbbBB";
- this.cbbBB.Size = new System.Drawing.Size(40, 20);
- this.cbbBB.TabIndex = 5;
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.BackColor = System.Drawing.Color.Transparent;
- this.label16.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label16.Location = new System.Drawing.Point(525, 26);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(53, 12);
- this.label16.TabIndex = 0;
- this.label16.Text = "班次班别";
- //
- // cbbStatus
- //
- this.cbbStatus.BackColor = System.Drawing.Color.Gainsboro;
- this.cbbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbbStatus.Enabled = false;
- this.cbbStatus.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbbStatus.FormattingEnabled = true;
- this.cbbStatus.Items.AddRange(new object[] {
- "备用",
- "上线",
- "下线",
- "维修"});
- this.cbbStatus.Location = new System.Drawing.Point(408, 54);
- this.cbbStatus.Name = "cbbStatus";
- this.cbbStatus.Size = new System.Drawing.Size(81, 20);
- this.cbbStatus.TabIndex = 7;
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.BackColor = System.Drawing.Color.Transparent;
- this.label13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label13.Location = new System.Drawing.Point(374, 58);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(29, 12);
- this.label13.TabIndex = 0;
- this.label13.Text = "状态";
- //
- // cbbPos
- //
- this.cbbPos.BackColor = System.Drawing.Color.Gainsboro;
- this.cbbPos.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbbPos.Enabled = false;
- this.cbbPos.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbbPos.FormattingEnabled = true;
- this.cbbPos.Items.AddRange(new object[] {
- "S1",
- "S2",
- "S3",
- "S4",
- "S5"});
- this.cbbPos.Location = new System.Drawing.Point(408, 22);
- this.cbbPos.Name = "cbbPos";
- this.cbbPos.Size = new System.Drawing.Size(81, 20);
- this.cbbPos.TabIndex = 3;
- //
- // tbDM
- //
- this.tbDM.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbDM.Location = new System.Drawing.Point(199, 135);
- this.tbDM.Name = "tbDM";
- this.tbDM.Size = new System.Drawing.Size(33, 21);
- this.tbDM.TabIndex = 12;
- this.tbDM.Visible = false;
- this.tbDM.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tbDM_KeyPress);
- //
- // label30
- //
- this.label30.AutoSize = true;
- this.label30.BackColor = System.Drawing.Color.Transparent;
- this.label30.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label30.Location = new System.Drawing.Point(36, 54);
- this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(41, 12);
- this.label30.TabIndex = 0;
- this.label30.Text = "通钢量";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.BackColor = System.Drawing.Color.Transparent;
- this.label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label2.Location = new System.Drawing.Point(165, 139);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(29, 12);
- this.label2.TabIndex = 0;
- this.label2.Text = "断面";
- this.label2.Visible = false;
- //
- // 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(23, 26);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(53, 12);
- this.label3.TabIndex = 0;
- this.label3.Text = "段位编号";
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.BackColor = System.Drawing.Color.Transparent;
- this.label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label5.Location = new System.Drawing.Point(944, 22);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(53, 12);
- this.label5.TabIndex = 0;
- this.label5.Text = "换下时间";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.BackColor = System.Drawing.Color.Transparent;
- this.label6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label6.Location = new System.Drawing.Point(702, 26);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(53, 12);
- this.label6.TabIndex = 0;
- this.label6.Text = "换上时间";
- //
- // tbSYCS
- //
- this.tbSYCS.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbSYCS.Location = new System.Drawing.Point(238, 49);
- this.tbSYCS.Name = "tbSYCS";
- this.tbSYCS.Size = new System.Drawing.Size(95, 21);
- this.tbSYCS.TabIndex = 10;
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.BackColor = System.Drawing.Color.Transparent;
- this.label9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label9.Location = new System.Drawing.Point(179, 54);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(53, 12);
- this.label9.TabIndex = 0;
- this.label9.Text = "使用炉数";
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.BackColor = System.Drawing.Color.Transparent;
- this.label14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label14.Location = new System.Drawing.Point(19, 140);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(29, 12);
- this.label14.TabIndex = 0;
- this.label14.Text = "钢种";
- this.label14.Visible = false;
- //
- // cbbCCM
- //
- this.cbbCCM.BackColor = System.Drawing.Color.Gainsboro;
- this.cbbCCM.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbbCCM.Enabled = false;
- this.cbbCCM.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbbCCM.FormattingEnabled = true;
- this.cbbCCM.Items.AddRange(new object[] {
- "1#连铸机",
- "2#连铸机",
- "3#连铸机"});
- this.cbbCCM.Location = new System.Drawing.Point(237, 22);
- this.cbbCCM.Name = "cbbCCM";
- this.cbbCCM.Size = new System.Drawing.Size(96, 20);
- this.cbbCCM.TabIndex = 2;
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.BackColor = System.Drawing.Color.Transparent;
- this.label15.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label15.Location = new System.Drawing.Point(191, 26);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(41, 12);
- this.label15.TabIndex = 0;
- this.label15.Text = "铸机号";
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.BackColor = System.Drawing.Color.Transparent;
- this.label8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label8.Location = new System.Drawing.Point(374, 26);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(29, 12);
- this.label8.TabIndex = 0;
- this.label8.Text = "流号";
- //
- // ultraExpandableGroupBox1
- //
- this.ultraExpandableGroupBox1.Controls.Add(this.ulexpgrpModel);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1186, 132);
- this.ultraExpandableGroupBox1.Font = new System.Drawing.Font("宋体", 9F);
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 448);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1186, 132);
- this.ultraExpandableGroupBox1.TabIndex = 2;
- this.ultraExpandableGroupBox1.Text = "详细信息";
- this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.VisualStudio2005;
- //
- // ultraToolbarsManager1
- //
- appearance6.FontData.Name = "宋体";
- appearance6.FontData.SizeInPoints = 9F;
- this.ultraToolbarsManager1.Appearance = appearance6;
- this.ultraToolbarsManager1.DesignerFlags = 1;
- this.ultraToolbarsManager1.DockWithinContainer = this;
- this.ultraToolbarsManager1.DockWithinContainerBaseType = typeof(Core.Mes.Client.Common.frmStyleBase);
- this.ultraToolbarsManager1.LockToolbars = true;
- this.ultraToolbarsManager1.MdiMergeable = false;
- this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
- this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
- this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2007;
- ultraToolbar1.DockedColumn = 0;
- ultraToolbar1.DockedRow = 0;
- buttonTool1.InstanceProps.IsFirstInGroup = true;
- buttonTool2.InstanceProps.IsFirstInGroup = true;
- buttonTool3.InstanceProps.IsFirstInGroup = true;
- buttonTool4.InstanceProps.IsFirstInGroup = true;
- buttonTool5.InstanceProps.IsFirstInGroup = true;
- buttonTool6.InstanceProps.IsFirstInGroup = true;
- buttonTool7.InstanceProps.IsFirstInGroup = true;
- buttonTool8.InstanceProps.IsFirstInGroup = true;
- ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool1,
- buttonTool2,
- buttonTool3,
- buttonTool4,
- buttonTool5,
- buttonTool6,
- buttonTool7,
- buttonTool8});
- ultraToolbar1.Text = "ultlbar1";
- this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
- ultraToolbar1});
- buttonTool9.SharedPropsInternal.Caption = "关闭";
- buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool10.SharedPropsInternal.Caption = "维修记录查询";
- buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool11.SharedPropsInternal.Caption = "基本信息";
- buttonTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool12.SharedPropsInternal.Caption = "段位维修";
- buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool13.SharedPropsInternal.Caption = "查询";
- buttonTool13.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool14.SharedPropsInternal.Caption = "修改";
- buttonTool14.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool15.SharedPropsInternal.Caption = "删除";
- buttonTool15.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool16.SharedPropsInternal.Caption = "段位插件";
- buttonTool16.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool9,
- buttonTool10,
- buttonTool11,
- buttonTool12,
- buttonTool13,
- buttonTool14,
- buttonTool15,
- buttonTool16});
- this.ultraToolbarsManager1.Visible = false;
- this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
- //
- // _FrmBase_Toolbars_Dock_Area_Top
- //
- this._FrmBase_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._FrmBase_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
- this._FrmBase_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
- this._FrmBase_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
- this._FrmBase_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
- this._FrmBase_Toolbars_Dock_Area_Top.Name = "_FrmBase_Toolbars_Dock_Area_Top";
- this._FrmBase_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1186, 26);
- this._FrmBase_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _FrmBase_Toolbars_Dock_Area_Bottom
- //
- this._FrmBase_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._FrmBase_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
- this._FrmBase_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
- this._FrmBase_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
- this._FrmBase_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 580);
- this._FrmBase_Toolbars_Dock_Area_Bottom.Name = "_FrmBase_Toolbars_Dock_Area_Bottom";
- this._FrmBase_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1186, 0);
- this._FrmBase_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _FrmBase_Toolbars_Dock_Area_Left
- //
- this._FrmBase_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._FrmBase_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
- this._FrmBase_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
- this._FrmBase_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
- this._FrmBase_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 26);
- this._FrmBase_Toolbars_Dock_Area_Left.Name = "_FrmBase_Toolbars_Dock_Area_Left";
- this._FrmBase_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 554);
- this._FrmBase_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _FrmBase_Toolbars_Dock_Area_Right
- //
- this._FrmBase_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._FrmBase_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
- this._FrmBase_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
- this._FrmBase_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
- this._FrmBase_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1186, 26);
- this._FrmBase_Toolbars_Dock_Area_Right.Name = "_FrmBase_Toolbars_Dock_Area_Right";
- this._FrmBase_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 554);
- this._FrmBase_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // chkID
- //
- this.chkID.AutoSize = true;
- this.chkID.BackColor = System.Drawing.Color.Transparent;
- this.chkID.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkID.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.chkID.Location = new System.Drawing.Point(218, 10);
- this.chkID.Name = "chkID";
- this.chkID.Size = new System.Drawing.Size(69, 16);
- this.chkID.TabIndex = 2;
- this.chkID.Text = "段位编号";
- this.chkID.UseVisualStyleBackColor = false;
- this.chkID.CheckedChanged += new System.EventHandler(this.chkID_CheckedChanged);
- //
- // cmbID
- //
- this.cmbID.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbID.Enabled = false;
- this.cmbID.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbID.FormattingEnabled = true;
- this.cmbID.Location = new System.Drawing.Point(301, 10);
- this.cmbID.Name = "cmbID";
- this.cmbID.Size = new System.Drawing.Size(104, 20);
- this.cmbID.TabIndex = 3;
- //
- // ulgrpModel
- //
- appearance70.FontData.Name = "宋体";
- appearance70.FontData.SizeInPoints = 9F;
- this.ulgrpModel.Appearance = appearance70;
- this.ulgrpModel.Controls.Add(this.label23);
- this.ulgrpModel.Controls.Add(this.udteTo);
- this.ulgrpModel.Controls.Add(this.udteFrom);
- this.ulgrpModel.Controls.Add(this.chkDate);
- this.ulgrpModel.Controls.Add(this.chkCCM);
- this.ulgrpModel.Controls.Add(this.cmbZJH);
- this.ulgrpModel.Controls.Add(this.cmbID);
- this.ulgrpModel.Controls.Add(this.chkID);
- this.ulgrpModel.Dock = System.Windows.Forms.DockStyle.Top;
- this.ulgrpModel.Location = new System.Drawing.Point(0, 26);
- this.ulgrpModel.Name = "ulgrpModel";
- this.ulgrpModel.Size = new System.Drawing.Size(1186, 40);
- this.ulgrpModel.TabIndex = 1;
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.BackColor = System.Drawing.Color.Transparent;
- this.label23.Location = new System.Drawing.Point(662, 14);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(17, 12);
- this.label23.TabIndex = 0;
- this.label23.Text = "到";
- //
- // udteTo
- //
- this.udteTo.Enabled = false;
- this.udteTo.Location = new System.Drawing.Point(686, 10);
- this.udteTo.MaskInput = "{date}";
- this.udteTo.Name = "udteTo";
- this.udteTo.Nullable = false;
- this.udteTo.Size = new System.Drawing.Size(116, 21);
- this.udteTo.TabIndex = 6;
- //
- // udteFrom
- //
- this.udteFrom.Enabled = false;
- this.udteFrom.Location = new System.Drawing.Point(541, 10);
- this.udteFrom.MaskInput = "{date}";
- this.udteFrom.Name = "udteFrom";
- this.udteFrom.Nullable = false;
- this.udteFrom.Size = new System.Drawing.Size(115, 21);
- this.udteFrom.TabIndex = 5;
- //
- // chkDate
- //
- this.chkDate.AutoSize = true;
- this.chkDate.BackColor = System.Drawing.Color.Transparent;
- this.chkDate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkDate.Location = new System.Drawing.Point(435, 11);
- this.chkDate.Name = "chkDate";
- this.chkDate.Size = new System.Drawing.Size(105, 16);
- this.chkDate.TabIndex = 4;
- this.chkDate.Text = "换上时间 从:";
- this.chkDate.UseVisualStyleBackColor = false;
- this.chkDate.CheckedChanged += new System.EventHandler(this.cbDate_CheckedChanged);
- //
- // chkCCM
- //
- this.chkCCM.AutoSize = true;
- this.chkCCM.BackColor = System.Drawing.Color.Transparent;
- this.chkCCM.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.chkCCM.Font = new System.Drawing.Font("宋体", 9F);
- this.chkCCM.Location = new System.Drawing.Point(23, 10);
- this.chkCCM.Name = "chkCCM";
- this.chkCCM.Size = new System.Drawing.Size(57, 16);
- this.chkCCM.TabIndex = 0;
- this.chkCCM.Text = "铸机号";
- this.chkCCM.UseVisualStyleBackColor = false;
- this.chkCCM.CheckedChanged += new System.EventHandler(this.cbCCM_CheckedChanged);
- //
- // cmbZJH
- //
- this.cmbZJH.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbZJH.Enabled = false;
- this.cmbZJH.Font = new System.Drawing.Font("宋体", 9F);
- this.cmbZJH.FormattingEnabled = true;
- this.cmbZJH.Items.AddRange(new object[] {
- "1#连铸机",
- "2#连铸机"});
- this.cmbZJH.Location = new System.Drawing.Point(81, 10);
- this.cmbZJH.Name = "cmbZJH";
- this.cmbZJH.Size = new System.Drawing.Size(104, 20);
- this.cmbZJH.TabIndex = 1;
- this.cmbZJH.SelectedIndexChanged += new System.EventHandler(this.cbbZJH_SelectedIndexChanged);
- //
- // ulgridUseInfo
- //
- this.ulgridUseInfo.DataSource = this.ultdsUseInfo;
- appearance1.TextVAlignAsString = "Middle";
- ultraGridColumn1.CellAppearance = appearance1;
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(40, 0);
- ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 45);
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn1.Width = 37;
- appearance5.TextVAlignAsString = "Middle";
- ultraGridColumn2.CellAppearance = appearance5;
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(66, 0);
- ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 45);
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn2.Width = 63;
- appearance7.TextVAlignAsString = "Middle";
- ultraGridColumn3.CellAppearance = appearance7;
- ultraGridColumn3.Header.VisiblePosition = 2;
- ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(40, 0);
- ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 45);
- ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn3.Width = 39;
- appearance8.TextVAlignAsString = "Middle";
- ultraGridColumn4.CellAppearance = appearance8;
- ultraGridColumn4.Header.VisiblePosition = 3;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(47, 0);
- ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 45);
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn4.Width = 43;
- appearance9.TextVAlignAsString = "Middle";
- ultraGridColumn5.CellAppearance = appearance9;
- ultraGridColumn5.Header.VisiblePosition = 4;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
- ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 45);
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn5.Width = 52;
- appearance10.TextVAlignAsString = "Middle";
- ultraGridColumn6.CellAppearance = appearance10;
- ultraGridColumn6.Header.VisiblePosition = 5;
- ultraGridColumn6.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(59, 0);
- ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 45);
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn6.Width = 68;
- appearance11.TextVAlignAsString = "Middle";
- ultraGridColumn7.CellAppearance = appearance11;
- ultraGridColumn7.Header.VisiblePosition = 6;
- ultraGridColumn7.Hidden = true;
- ultraGridColumn7.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(40, 0);
- ultraGridColumn7.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 45);
- ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn7.Width = 63;
- appearance12.TextVAlignAsString = "Middle";
- ultraGridColumn8.CellAppearance = appearance12;
- ultraGridColumn8.Header.VisiblePosition = 7;
- ultraGridColumn8.Hidden = true;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
- ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 45);
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn8.Width = 67;
- appearance13.TextVAlignAsString = "Middle";
- ultraGridColumn9.CellAppearance = appearance13;
- ultraGridColumn9.Header.VisiblePosition = 8;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(39, 0);
- ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 45);
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn9.Width = 78;
- appearance14.TextVAlignAsString = "Middle";
- ultraGridColumn10.CellAppearance = appearance14;
- ultraGridColumn10.Header.VisiblePosition = 9;
- ultraGridColumn10.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
- ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 45);
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn10.Width = 45;
- appearance15.TextVAlignAsString = "Middle";
- ultraGridColumn11.CellAppearance = appearance15;
- ultraGridColumn11.Header.VisiblePosition = 10;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(134, 0);
- ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 45);
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn11.Width = 144;
- appearance16.TextVAlignAsString = "Middle";
- ultraGridColumn12.CellAppearance = appearance16;
- ultraGridColumn12.Header.VisiblePosition = 11;
- ultraGridColumn12.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(137, 0);
- ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 45);
- ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn12.Width = 145;
- appearance17.TextVAlignAsString = "Middle";
- ultraGridColumn13.CellAppearance = appearance17;
- ultraGridColumn13.Header.VisiblePosition = 12;
- ultraGridColumn13.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 45);
- ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn13.Width = 69;
- appearance18.TextVAlignAsString = "Middle";
- ultraGridColumn14.CellAppearance = appearance18;
- ultraGridColumn14.Header.VisiblePosition = 13;
- ultraGridColumn14.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(120, 0);
- ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 45);
- ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn14.Width = 133;
- appearance19.TextVAlignAsString = "Middle";
- ultraGridColumn15.CellAppearance = appearance19;
- ultraGridColumn15.Header.VisiblePosition = 14;
- ultraGridColumn15.Hidden = true;
- ultraGridColumn15.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(114, 0);
- ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 3;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
- appearance20.TextVAlignAsString = "Middle";
- ultraGridColumn16.CellAppearance = appearance20;
- ultraGridColumn16.Header.VisiblePosition = 15;
- ultraGridColumn16.Hidden = true;
- ultraGridColumn16.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
- ultraGridColumn16.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(117, 0);
- ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
- ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
- appearance21.TextVAlignAsString = "Middle";
- ultraGridColumn17.CellAppearance = appearance21;
- ultraGridColumn17.Header.VisiblePosition = 16;
- ultraGridColumn17.Hidden = true;
- ultraGridColumn17.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 17;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
- appearance22.TextVAlignAsString = "Middle";
- ultraGridColumn18.CellAppearance = appearance22;
- ultraGridColumn18.Header.VisiblePosition = 17;
- ultraGridColumn18.Hidden = true;
- ultraGridColumn18.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
- ultraGridColumn18.RowLayoutColumnInfo.OriginX = 19;
- ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(117, 0);
- ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
- ultraGridColumn18.RowLayoutColumnInfo.SpanX = 3;
- ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
- appearance23.TextVAlignAsString = "Middle";
- ultraGridColumn19.CellAppearance = appearance23;
- ultraGridColumn19.Header.Caption = "次数";
- ultraGridColumn19.Header.VisiblePosition = 18;
- ultraGridColumn19.Hidden = true;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 1;
- ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
- appearance24.TextVAlignAsString = "Middle";
- ultraGridColumn20.CellAppearance = appearance24;
- ultraGridColumn20.Header.Caption = "次数";
- ultraGridColumn20.Header.VisiblePosition = 19;
- ultraGridColumn20.Hidden = true;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 1;
- ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn20.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
- appearance25.TextVAlignAsString = "Middle";
- ultraGridColumn21.CellAppearance = appearance25;
- ultraGridColumn21.Header.Caption = "次数";
- ultraGridColumn21.Header.VisiblePosition = 20;
- ultraGridColumn21.Hidden = true;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 17;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 1;
- ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
- appearance26.TextVAlignAsString = "Middle";
- ultraGridColumn22.CellAppearance = appearance26;
- ultraGridColumn22.Header.Caption = "次数";
- ultraGridColumn22.Header.VisiblePosition = 21;
- ultraGridColumn22.Hidden = true;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 1;
- ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
- appearance27.TextVAlignAsString = "Middle";
- ultraGridColumn23.CellAppearance = appearance27;
- ultraGridColumn23.Header.Caption = "次数";
- ultraGridColumn23.Header.VisiblePosition = 22;
- ultraGridColumn23.Hidden = true;
- ultraGridColumn23.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn23.RowLayoutColumnInfo.OriginY = 1;
- ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn23.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
- appearance28.TextVAlignAsString = "Middle";
- ultraGridColumn24.CellAppearance = appearance28;
- ultraGridColumn24.Header.Caption = "次数";
- ultraGridColumn24.Header.VisiblePosition = 23;
- ultraGridColumn24.Hidden = true;
- ultraGridColumn24.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn24.RowLayoutColumnInfo.OriginY = 1;
- ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
- appearance29.TextVAlignAsString = "Middle";
- ultraGridColumn25.CellAppearance = appearance29;
- ultraGridColumn25.Header.VisiblePosition = 24;
- ultraGridColumn25.Hidden = true;
- ultraGridColumn25.RowLayoutColumnInfo.OriginX = 25;
- ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 45);
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn26.Header.VisiblePosition = 25;
- ultraGridColumn26.Hidden = true;
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(97, 0);
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
- appearance30.TextVAlignAsString = "Middle";
- ultraGridColumn27.CellAppearance = appearance30;
- appearance31.TextVAlignAsString = "Bottom";
- ultraGridColumn27.Header.Appearance = appearance31;
- ultraGridColumn27.Header.Caption = "通钢量";
- ultraGridColumn27.Header.VisiblePosition = 26;
- ultraGridColumn27.Hidden = true;
- ultraGridColumn27.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn27.RowLayoutColumnInfo.OriginY = 1;
- ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(54, 0);
- ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
- appearance32.TextVAlignAsString = "Middle";
- ultraGridColumn28.CellAppearance = appearance32;
- appearance33.TextVAlignAsString = "Bottom";
- ultraGridColumn28.Header.Appearance = appearance33;
- ultraGridColumn28.Header.Caption = "通钢量";
- ultraGridColumn28.Header.VisiblePosition = 27;
- ultraGridColumn28.Hidden = true;
- ultraGridColumn28.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn28.RowLayoutColumnInfo.OriginY = 1;
- ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(57, 0);
- ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
- appearance34.TextVAlignAsString = "Middle";
- ultraGridColumn29.CellAppearance = appearance34;
- appearance35.TextVAlignAsString = "Bottom";
- ultraGridColumn29.Header.Appearance = appearance35;
- ultraGridColumn29.Header.Caption = "通钢量";
- ultraGridColumn29.Header.VisiblePosition = 28;
- ultraGridColumn29.Hidden = true;
- ultraGridColumn29.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn29.RowLayoutColumnInfo.OriginY = 1;
- ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(57, 0);
- ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
- appearance36.TextVAlignAsString = "Middle";
- ultraGridColumn30.CellAppearance = appearance36;
- appearance37.TextVAlignAsString = "Bottom";
- ultraGridColumn30.Header.Appearance = appearance37;
- ultraGridColumn30.Header.Caption = "通钢量";
- ultraGridColumn30.Header.VisiblePosition = 29;
- ultraGridColumn30.Hidden = true;
- ultraGridColumn30.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn30.RowLayoutColumnInfo.OriginY = 1;
- ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(57, 0);
- ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn31.Header.VisiblePosition = 30;
- ultraGridColumn31.Hidden = true;
- ultraGridColumn32.Header.VisiblePosition = 31;
- ultraGridColumn32.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,
- ultraGridColumn29,
- ultraGridColumn30,
- ultraGridColumn31,
- ultraGridColumn32});
- 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.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
- this.ulgridUseInfo.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- appearance130.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
- appearance130.FontData.SizeInPoints = 9F;
- appearance130.TextHAlignAsString = "Left";
- this.ulgridUseInfo.DisplayLayout.CaptionAppearance = appearance130;
- this.ulgridUseInfo.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
- appearance131.BackColor = System.Drawing.Color.LightSteelBlue;
- this.ulgridUseInfo.DisplayLayout.Override.HeaderAppearance = appearance131;
- this.ulgridUseInfo.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- this.ulgridUseInfo.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ulgridUseInfo.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ulgridUseInfo.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- this.ulgridUseInfo.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
- this.ulgridUseInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ulgridUseInfo.Font = new System.Drawing.Font("宋体", 9F);
- this.ulgridUseInfo.Location = new System.Drawing.Point(376, 0);
- this.ulgridUseInfo.Name = "ulgridUseInfo";
- this.ulgridUseInfo.Size = new System.Drawing.Size(810, 382);
- this.ulgridUseInfo.TabIndex = 1;
- this.ulgridUseInfo.AfterRowActivate += new System.EventHandler(this.ulgridUseInfo_AfterRowActivate);
- //
- // ultdsUseInfo
- //
- ultraDataColumn19.Tag = "次数";
- ultraDataColumn20.Tag = "次数";
- ultraDataColumn21.Tag = "次数";
- ultraDataColumn22.Tag = "次数";
- ultraDataColumn23.Tag = "次数";
- ultraDataColumn24.Tag = "次数";
- this.ultdsUseInfo.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,
- ultraDataColumn29,
- ultraDataColumn30,
- ultraDataColumn31,
- ultraDataColumn32});
- this.ultdsUseInfo.Band.Key = "dtBaseInfo";
- //
- // ultdsBaseInfo
- //
- this.ultdsBaseInfo.Band.Columns.AddRange(new object[] {
- ultraDataColumn33,
- ultraDataColumn34,
- ultraDataColumn35,
- ultraDataColumn36,
- ultraDataColumn37,
- ultraDataColumn38,
- ultraDataColumn39,
- ultraDataColumn40,
- ultraDataColumn41,
- ultraDataColumn42,
- ultraDataColumn43,
- ultraDataColumn44,
- ultraDataColumn45,
- ultraDataColumn46,
- ultraDataColumn47});
- this.ultdsBaseInfo.Band.Key = "dtBaseInfo";
- //
- // panel1
- //
- this.panel1.Controls.Add(this.ulgridUseInfo);
- this.panel1.Controls.Add(this.ultraExpandableGroupBox2);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel1.Location = new System.Drawing.Point(0, 66);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1186, 382);
- this.panel1.TabIndex = 0;
- //
- // ultraExpandableGroupBox2
- //
- appearance50.BackColor = System.Drawing.Color.Gainsboro;
- this.ultraExpandableGroupBox2.Appearance = appearance50;
- 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(376, 382);
- this.ultraExpandableGroupBox2.Font = new System.Drawing.Font("宋体", 9F);
- this.ultraExpandableGroupBox2.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftOnBorder;
- this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(0, 0);
- this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
- this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(376, 382);
- this.ultraExpandableGroupBox2.TabIndex = 0;
- this.ultraExpandableGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.VisualStudio2005;
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ulgridBaseInfo);
- 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(361, 378);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- //
- // ulgridBaseInfo
- //
- this.ulgridBaseInfo.DataSource = this.ultdsBaseInfo;
- appearance38.TextVAlignAsString = "Middle";
- ultraGridColumn33.CellAppearance = appearance38;
- ultraGridColumn33.Header.VisiblePosition = 0;
- ultraGridColumn33.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
- ultraGridColumn33.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 35);
- ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn33.Width = 37;
- appearance39.TextVAlignAsString = "Middle";
- ultraGridColumn34.CellAppearance = appearance39;
- ultraGridColumn34.Header.VisiblePosition = 1;
- ultraGridColumn34.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn34.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 35);
- ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn34.Width = 45;
- appearance40.TextVAlignAsString = "Middle";
- ultraGridColumn35.CellAppearance = appearance40;
- ultraGridColumn35.Header.VisiblePosition = 2;
- ultraGridColumn35.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(57, 0);
- ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 35);
- ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn35.Width = 60;
- appearance41.TextVAlignAsString = "Middle";
- ultraGridColumn36.CellAppearance = appearance41;
- ultraGridColumn36.Header.VisiblePosition = 3;
- ultraGridColumn36.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn36.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 35);
- ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn36.Width = 39;
- appearance42.TextVAlignAsString = "Middle";
- ultraGridColumn37.CellAppearance = appearance42;
- ultraGridColumn37.Header.VisiblePosition = 4;
- ultraGridColumn37.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
- ultraGridColumn37.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 35);
- ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn37.Width = 54;
- appearance43.TextVAlignAsString = "Middle";
- ultraGridColumn38.CellAppearance = appearance43;
- ultraGridColumn38.Header.VisiblePosition = 10;
- ultraGridColumn38.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn38.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 35);
- ultraGridColumn38.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
- appearance44.TextVAlignAsString = "Middle";
- ultraGridColumn39.CellAppearance = appearance44;
- ultraGridColumn39.Header.VisiblePosition = 5;
- ultraGridColumn39.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(62, 0);
- ultraGridColumn39.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 35);
- ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn39.Width = 41;
- appearance45.TextVAlignAsString = "Middle";
- ultraGridColumn40.CellAppearance = appearance45;
- ultraGridColumn40.Header.VisiblePosition = 6;
- ultraGridColumn40.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn40.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 35);
- ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn40.RowLayoutColumnInfo.SpanY = 2;
- appearance46.TextVAlignAsString = "Middle";
- ultraGridColumn41.CellAppearance = appearance46;
- ultraGridColumn41.Header.VisiblePosition = 7;
- ultraGridColumn41.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn41.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 35);
- ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
- appearance47.TextVAlignAsString = "Middle";
- ultraGridColumn42.CellAppearance = appearance47;
- ultraGridColumn42.Header.VisiblePosition = 8;
- ultraGridColumn42.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn42.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 35);
- ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
- appearance48.TextVAlignAsString = "Middle";
- ultraGridColumn43.CellAppearance = appearance48;
- ultraGridColumn43.Header.VisiblePosition = 9;
- ultraGridColumn43.Hidden = true;
- ultraGridColumn43.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn43.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn44.Header.Caption = "外弧铜板通钢量";
- ultraGridColumn44.Header.VisiblePosition = 11;
- ultraGridColumn44.Hidden = true;
- ultraGridColumn44.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
- ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn45.Header.Caption = "内弧铜板通钢量";
- ultraGridColumn45.Header.VisiblePosition = 12;
- ultraGridColumn45.Hidden = true;
- ultraGridColumn45.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(63, 0);
- ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn46.Header.Caption = "左侧铜板通钢量";
- ultraGridColumn46.Header.VisiblePosition = 13;
- ultraGridColumn46.Hidden = true;
- ultraGridColumn46.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn46.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(57, 0);
- ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn46.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn47.Header.Caption = "右侧铜板通钢量";
- ultraGridColumn47.Header.VisiblePosition = 14;
- ultraGridColumn47.Hidden = true;
- ultraGridColumn47.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(63, 0);
- ultraGridColumn47.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn47.RowLayoutColumnInfo.SpanY = 2;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn33,
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41,
- ultraGridColumn42,
- ultraGridColumn43,
- ultraGridColumn44,
- ultraGridColumn45,
- ultraGridColumn46,
- ultraGridColumn47});
- ultraGridBand2.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
- ultraGridBand2.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
- ultraGridBand2.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
- ultraGridBand2.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
- ultraGridBand2.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
- ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
- this.ulgridBaseInfo.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- appearance68.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
- appearance68.FontData.SizeInPoints = 9F;
- appearance68.TextHAlignAsString = "Left";
- this.ulgridBaseInfo.DisplayLayout.CaptionAppearance = appearance68;
- this.ulgridBaseInfo.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
- appearance69.BackColor = System.Drawing.Color.LightSteelBlue;
- this.ulgridBaseInfo.DisplayLayout.Override.HeaderAppearance = appearance69;
- this.ulgridBaseInfo.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- this.ulgridBaseInfo.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ulgridBaseInfo.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ulgridBaseInfo.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- this.ulgridBaseInfo.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
- this.ulgridBaseInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ulgridBaseInfo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ulgridBaseInfo.Location = new System.Drawing.Point(0, 0);
- this.ulgridBaseInfo.Name = "ulgridBaseInfo";
- this.ulgridBaseInfo.Size = new System.Drawing.Size(361, 378);
- this.ulgridBaseInfo.TabIndex = 0;
- this.ulgridBaseInfo.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.ulgridBaseInfo_DoubleClickRow);
- this.ulgridBaseInfo.AfterRowActivate += new System.EventHandler(this.ulgridBaseInfo_AfterRowActivate);
- //
- // FrmZEROManage
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1186, 580);
- this.Controls.Add(this.panel1);
- this.Controls.Add(this.ultraExpandableGroupBox1);
- this.Controls.Add(this.ulgrpModel);
- this.Controls.Add(this._FrmBase_Toolbars_Dock_Area_Left);
- this.Controls.Add(this._FrmBase_Toolbars_Dock_Area_Right);
- this.Controls.Add(this._FrmBase_Toolbars_Dock_Area_Top);
- this.Controls.Add(this._FrmBase_Toolbars_Dock_Area_Bottom);
- this.Name = "FrmZEROManage";
- this.Text = "零段管理";
- this.Load += new System.EventHandler(this.FrmCrystallizerManageBP_Load);
- this.ulexpgrpModel.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- this.ultraGroupBox1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ulgrpModel)).EndInit();
- this.ulgrpModel.ResumeLayout(false);
- this.ulgrpModel.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.udteTo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.udteFrom)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ulgridUseInfo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultdsUseInfo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultdsBaseInfo)).EndInit();
- this.panel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
- this.ultraExpandableGroupBox2.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ulgridBaseInfo)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- public Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ulexpgrpModel;
- public Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _FrmBase_Toolbars_Dock_Area_Left;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _FrmBase_Toolbars_Dock_Area_Right;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _FrmBase_Toolbars_Dock_Area_Top;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _FrmBase_Toolbars_Dock_Area_Bottom;
- public Infragistics.Win.Misc.UltraGroupBox ulgrpModel;
- private System.Windows.Forms.ComboBox cmbID;
- private System.Windows.Forms.CheckBox chkID;
- public Infragistics.Win.UltraWinGrid.UltraGrid ulgridUseInfo;
- private Infragistics.Win.UltraWinDataSource.UltraDataSource ultdsBaseInfo;
- private System.Windows.Forms.Panel panel1;
- public Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox2;
- public Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- public Infragistics.Win.UltraWinGrid.UltraGrid ulgridBaseInfo;
- private Infragistics.Win.UltraWinDataSource.UltraDataSource ultdsUseInfo;
- private System.Windows.Forms.CheckBox chkCCM;
- private System.Windows.Forms.ComboBox cmbZJH;
- private System.Windows.Forms.Label label23;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udteTo;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udteFrom;
- private System.Windows.Forms.CheckBox chkDate;
- public Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private System.Windows.Forms.TextBox txtWidth;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Label label29;
- private System.Windows.Forms.Label label26;
- private System.Windows.Forms.Label label28;
- private System.Windows.Forms.Label label12;
- private System.Windows.Forms.Label label27;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.TextBox tbCS6;
- private System.Windows.Forms.TextBox tbCS5;
- private System.Windows.Forms.TextBox tbCS4;
- private System.Windows.Forms.TextBox tbCS3;
- private System.Windows.Forms.TextBox tbCS2;
- private System.Windows.Forms.TextBox tbCS1;
- private System.Windows.Forms.TextBox tbNO6;
- private System.Windows.Forms.TextBox tbNO5;
- private System.Windows.Forms.TextBox tbNO4;
- private System.Windows.Forms.TextBox tbNO3;
- private System.Windows.Forms.TextBox tbNO2;
- private System.Windows.Forms.TextBox tbNO1;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor1;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor2;
- private System.Windows.Forms.ComboBox cbbBC;
- private System.Windows.Forms.TextBox tbGZ;
- private System.Windows.Forms.TextBox tbTGL;
- private System.Windows.Forms.TextBox tbID;
- private System.Windows.Forms.ComboBox cbbType;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox tbLJLS;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.TextBox tbWHRY;
- private System.Windows.Forms.ComboBox cbbBB;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.ComboBox cbbStatus;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.ComboBox cbbPos;
- private System.Windows.Forms.TextBox tbDM;
- private System.Windows.Forms.Label label30;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.TextBox tbSYCS;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.ComboBox cbbCCM;
- private System.Windows.Forms.Label label15;
- private System.Windows.Forms.Label label8;
- }
- }
|