| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845 |
- namespace Core.LZMes.Client.UIK
- {
- partial class UIK050010
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEG_FLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STAND_ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_TYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_ID_UP");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_DIAMETER_UP");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_CROWN_UP");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_ROUGHNESS_UP");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_SHAPE_UP");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_PROPERTY_CLASS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OP_CHOCK_NO_UP");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DR_CHOCK_NO_UP");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SA1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SA2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SA3");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SA4");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SA5");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SA6");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SA7");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REG_DTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SELECT_ITEM", 0, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Descending, false);
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC_NO", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Descending, false);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REG_ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REG_DTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STAND_ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_TYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_ID_LO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_DIAMETER_LO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_CROWN_LO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_ROUGHNESS_LO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_SHAPE_LO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_PROPERTY_CLASS_LO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OP_CHOCK_NO_LO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DR_CHOCK_NO_LO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XA1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XA2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XA3");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XA4");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XA5");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XA6");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XA7");
- Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraCheckEditor1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.zgArea = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.zgNumber = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet1 = new System.Data.DataSet();
- this.dataTable1 = new System.Data.DataTable();
- this.dataColumn1 = new System.Data.DataColumn();
- this.dataColumn2 = new System.Data.DataColumn();
- this.dataColumn3 = new System.Data.DataColumn();
- this.dataColumn4 = new System.Data.DataColumn();
- this.dataColumn5 = new System.Data.DataColumn();
- this.dataColumn6 = new System.Data.DataColumn();
- this.dataColumn7 = new System.Data.DataColumn();
- this.dataColumn8 = new System.Data.DataColumn();
- this.dataColumn9 = new System.Data.DataColumn();
- this.dataColumn10 = new System.Data.DataColumn();
- this.dataColumn11 = new System.Data.DataColumn();
- this.dataColumn12 = new System.Data.DataColumn();
- this.dataColumn13 = new System.Data.DataColumn();
- this.dataColumn14 = new System.Data.DataColumn();
- this.dataColumn15 = new System.Data.DataColumn();
- this.dataColumn16 = new System.Data.DataColumn();
- this.dataColumn17 = new System.Data.DataColumn();
- this.dataColumn18 = new System.Data.DataColumn();
- this.dataColumn19 = new System.Data.DataColumn();
- this.dataColumn40 = new System.Data.DataColumn();
- this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet2 = new System.Data.DataSet();
- this.dataTable2 = new System.Data.DataTable();
- this.dataColumn20 = new System.Data.DataColumn();
- this.dataColumn21 = new System.Data.DataColumn();
- this.dataColumn22 = new System.Data.DataColumn();
- this.dataColumn23 = new System.Data.DataColumn();
- this.dataColumn24 = new System.Data.DataColumn();
- this.dataColumn25 = new System.Data.DataColumn();
- this.dataColumn26 = new System.Data.DataColumn();
- this.dataColumn27 = new System.Data.DataColumn();
- this.dataColumn28 = new System.Data.DataColumn();
- this.dataColumn29 = new System.Data.DataColumn();
- this.dataColumn30 = new System.Data.DataColumn();
- this.dataColumn31 = new System.Data.DataColumn();
- this.dataColumn32 = new System.Data.DataColumn();
- this.dataColumn33 = new System.Data.DataColumn();
- this.dataColumn34 = new System.Data.DataColumn();
- this.dataColumn35 = new System.Data.DataColumn();
- this.dataColumn36 = new System.Data.DataColumn();
- this.dataColumn37 = new System.Data.DataColumn();
- this.dataColumn38 = new System.Data.DataColumn();
- this.dataColumn39 = new System.Data.DataColumn();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraComboXcai = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraComboScai = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextXshap = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextSshap = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextXiaTu = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextShangTu = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextLodia = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextUpdia = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboArea = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraComboRollType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextReg_id = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextRoll_id_lo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextRoll_id_up = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextSand_id = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
- this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraDateTimeEditor1 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultraDateTimeEditor2 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.zgArea)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.zgNumber)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
- this.ultraGroupBox2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
- this.ultraGroupBox3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboXcai)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboScai)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextXshap)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextSshap)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextXiaTu)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextShangTu)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextLodia)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextUpdia)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboArea)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboRollType)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextReg_id)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextRoll_id_lo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextRoll_id_up)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextSand_id)).BeginInit();
- this.ultraPanel1.ClientArea.SuspendLayout();
- this.ultraPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor2)).BeginInit();
- this.SuspendLayout();
- //
- // ultraGroupBox1
- //
- appearance3.BackColor = System.Drawing.Color.Gainsboro;
- this.ultraGroupBox1.Appearance = appearance3;
- this.ultraGroupBox1.Controls.Add(this.ultraDateTimeEditor2);
- this.ultraGroupBox1.Controls.Add(this.ultraDateTimeEditor1);
- this.ultraGroupBox1.Controls.Add(this.ultraLabel11);
- this.ultraGroupBox1.Controls.Add(this.ultraCheckEditor1);
- this.ultraGroupBox1.Controls.Add(this.zgArea);
- this.ultraGroupBox1.Controls.Add(this.ultraLabel4);
- this.ultraGroupBox1.Controls.Add(this.zgNumber);
- this.ultraGroupBox1.Controls.Add(this.ultraLabel1);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(804, 57);
- this.ultraGroupBox1.TabIndex = 0;
- this.ultraGroupBox1.Text = "查询条件";
- //
- // ultraCheckEditor1
- //
- appearance5.BackColor = System.Drawing.Color.LightBlue;
- this.ultraCheckEditor1.Appearance = appearance5;
- this.ultraCheckEditor1.BackColor = System.Drawing.Color.LightBlue;
- this.ultraCheckEditor1.BackColorInternal = System.Drawing.Color.LightBlue;
- this.ultraCheckEditor1.Location = new System.Drawing.Point(683, 22);
- this.ultraCheckEditor1.Name = "ultraCheckEditor1";
- this.ultraCheckEditor1.Size = new System.Drawing.Size(120, 20);
- this.ultraCheckEditor1.TabIndex = 12;
- this.ultraCheckEditor1.Text = "查询全部记录";
- this.ultraCheckEditor1.CheckedChanged += new System.EventHandler(this.ultraCheckEditor1_CheckedChanged);
- //
- // zgArea
- //
- appearance4.BackColor = System.Drawing.SystemColors.Window;
- appearance4.BorderColor = System.Drawing.Color.Black;
- appearance4.TextHAlignAsString = "Center";
- appearance4.TextVAlignAsString = "Middle";
- this.zgArea.Appearance = appearance4;
- this.zgArea.BackColor = System.Drawing.SystemColors.Window;
- this.zgArea.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.zgArea.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem1.DataValue = "ValueListItem0";
- valueListItem1.DisplayText = "1";
- valueListItem2.DataValue = "ValueListItem1";
- valueListItem2.DisplayText = "2";
- valueListItem3.DataValue = "ValueListItem2";
- valueListItem3.DisplayText = "3";
- valueListItem4.DataValue = "ValueListItem3";
- valueListItem4.DisplayText = "4";
- valueListItem5.DataValue = "ValueListItem4";
- valueListItem5.DisplayText = "5";
- this.zgArea.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem1,
- valueListItem2,
- valueListItem3,
- valueListItem4,
- valueListItem5});
- this.zgArea.Location = new System.Drawing.Point(266, 21);
- this.zgArea.Name = "zgArea";
- this.zgArea.Size = new System.Drawing.Size(99, 21);
- this.zgArea.TabIndex = 7;
- //
- // ultraLabel4
- //
- appearance81.BackColor = System.Drawing.Color.LightBlue;
- appearance81.TextHAlignAsString = "Center";
- appearance81.TextVAlignAsString = "Middle";
- this.ultraLabel4.Appearance = appearance81;
- this.ultraLabel4.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel4.Location = new System.Drawing.Point(194, 21);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.Size = new System.Drawing.Size(70, 21);
- this.ultraLabel4.TabIndex = 6;
- this.ultraLabel4.Text = "轧辊区域";
- //
- // zgNumber
- //
- appearance33.BorderColor = System.Drawing.Color.Black;
- this.zgNumber.Appearance = appearance33;
- this.zgNumber.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.WindowsVista;
- this.zgNumber.Location = new System.Drawing.Point(78, 21);
- this.zgNumber.Name = "zgNumber";
- this.zgNumber.Size = new System.Drawing.Size(110, 21);
- this.zgNumber.TabIndex = 1;
- //
- // ultraLabel1
- //
- appearance1.BackColor = System.Drawing.Color.LightBlue;
- appearance1.TextHAlignAsString = "Center";
- appearance1.TextVAlignAsString = "Middle";
- this.ultraLabel1.Appearance = appearance1;
- this.ultraLabel1.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel1.Location = new System.Drawing.Point(6, 21);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(70, 21);
- this.ultraLabel1.TabIndex = 0;
- this.ultraLabel1.Text = "机架号";
- //
- // ultraGroupBox2
- //
- this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
- this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox2.Name = "ultraGroupBox2";
- this.ultraGroupBox2.Size = new System.Drawing.Size(804, 206);
- this.ultraGroupBox2.TabIndex = 0;
- this.ultraGroupBox2.Text = "上辊属性";
- //
- // ultraGrid1
- //
- this.ultraGrid1.DataSource = this.dataSet1;
- appearance6.BackColor = System.Drawing.SystemColors.Window;
- appearance6.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid1.DisplayLayout.Appearance = appearance6;
- ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn1.Header.Caption = "换辊计划号";
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 21;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn2.Header.Caption = "记录是否已下发";
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn3.Header.Caption = "机架号";
- ultraGridColumn3.Header.VisiblePosition = 2;
- ultraGridColumn3.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn4.Header.Caption = "轧辊类型";
- ultraGridColumn4.Header.VisiblePosition = 3;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn5.Header.Caption = "上辊编号";
- ultraGridColumn5.Header.VisiblePosition = 4;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn6.Header.Caption = "上辊直径";
- ultraGridColumn6.Header.VisiblePosition = 5;
- ultraGridColumn6.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn7.Header.Caption = "上辊凸度";
- ultraGridColumn7.Header.VisiblePosition = 6;
- ultraGridColumn7.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn7.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn8.Header.Caption = "上辊粗糙度";
- ultraGridColumn8.Header.VisiblePosition = 7;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn9.Header.Caption = "上辊外形代码";
- ultraGridColumn9.Header.VisiblePosition = 8;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn10.Header.Caption = "上辊材质代码";
- ultraGridColumn10.Header.VisiblePosition = 9;
- ultraGridColumn10.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn11.Header.Caption = "上辊操作侧轴承座号";
- ultraGridColumn11.Header.VisiblePosition = 10;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(158, 17);
- ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn12.Header.Caption = "上辊传动侧轴承座号";
- ultraGridColumn12.Header.VisiblePosition = 11;
- ultraGridColumn12.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(156, 17);
- ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn13.Header.Caption = "上辊系数1";
- ultraGridColumn13.Header.VisiblePosition = 12;
- ultraGridColumn13.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn14.Header.Caption = "上辊系数2";
- ultraGridColumn14.Header.VisiblePosition = 13;
- ultraGridColumn14.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn15.Header.Caption = "上辊系数3";
- ultraGridColumn15.Header.VisiblePosition = 14;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn16.Header.Caption = "上辊系数4";
- ultraGridColumn16.Header.VisiblePosition = 15;
- ultraGridColumn16.RowLayoutColumnInfo.OriginX = 17;
- ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn17.Header.Caption = "上辊系数5";
- ultraGridColumn17.Header.VisiblePosition = 16;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn18.Header.Caption = "上辊系数6";
- ultraGridColumn18.Header.VisiblePosition = 17;
- ultraGridColumn18.RowLayoutColumnInfo.OriginX = 19;
- ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn19.Header.Caption = "上辊系数7";
- ultraGridColumn19.Header.VisiblePosition = 18;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 17);
- ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn20.Header.Caption = "操作时间";
- ultraGridColumn20.Header.VisiblePosition = 19;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn21.DataType = typeof(bool);
- ultraGridColumn21.Header.Caption = "选择下发计划";
- ultraGridColumn21.Header.VisiblePosition = 20;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 17);
- ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn21.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8,
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20,
- ultraGridColumn21});
- ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance7.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance7.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance7.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance7.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance7;
- appearance8.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance8;
- this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.GroupByBox.Prompt = " ";
- appearance9.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance9.BackColor2 = System.Drawing.SystemColors.Control;
- appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance9.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance9;
- this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
- appearance10.BackColor = System.Drawing.SystemColors.Window;
- appearance10.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance10;
- appearance11.BackColor = System.Drawing.SystemColors.Highlight;
- appearance11.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance11;
- this.ultraGrid1.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance12.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance12;
- appearance13.BorderColor = System.Drawing.Color.Silver;
- appearance13.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance13;
- this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
- appearance14.BackColor = System.Drawing.SystemColors.Control;
- appearance14.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance14.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance14.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance14;
- appearance15.BackColor = System.Drawing.Color.LightSteelBlue;
- appearance15.TextHAlignAsString = "Center";
- this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance15;
- this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- appearance16.BackColor = System.Drawing.SystemColors.Window;
- appearance16.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance16;
- appearance17.BackColor = System.Drawing.Color.LightSteelBlue;
- this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance17;
- appearance44.BackColor = System.Drawing.Color.LightSteelBlue;
- this.ultraGrid1.DisplayLayout.Override.RowSelectorHeaderAppearance = appearance44;
- this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ultraGrid1.DisplayLayout.Override.RowSelectorStyle = Infragistics.Win.HeaderStyle.Standard;
- this.ultraGrid1.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- appearance45.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance45;
- this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid1.Location = new System.Drawing.Point(3, 18);
- this.ultraGrid1.Name = "ultraGrid1";
- this.ultraGrid1.Size = new System.Drawing.Size(798, 185);
- this.ultraGrid1.TabIndex = 0;
- this.ultraGrid1.Text = "ultraGrid1";
- //
- // dataSet1
- //
- this.dataSet1.DataSetName = "NewDataSet";
- this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable1});
- //
- // dataTable1
- //
- this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn1,
- this.dataColumn2,
- this.dataColumn3,
- this.dataColumn4,
- this.dataColumn5,
- this.dataColumn6,
- this.dataColumn7,
- this.dataColumn8,
- this.dataColumn9,
- this.dataColumn10,
- this.dataColumn11,
- this.dataColumn12,
- this.dataColumn13,
- this.dataColumn14,
- this.dataColumn15,
- this.dataColumn16,
- this.dataColumn17,
- this.dataColumn18,
- this.dataColumn19,
- this.dataColumn40});
- this.dataTable1.TableName = "Table1";
- //
- // dataColumn1
- //
- this.dataColumn1.ColumnName = "SPEC_NO";
- //
- // dataColumn2
- //
- this.dataColumn2.ColumnName = "MEG_FLAG";
- //
- // dataColumn3
- //
- this.dataColumn3.ColumnName = "STAND_ID";
- //
- // dataColumn4
- //
- this.dataColumn4.ColumnName = "ROLL_TYPE";
- //
- // dataColumn5
- //
- this.dataColumn5.ColumnName = "ROLL_ID_UP";
- //
- // dataColumn6
- //
- this.dataColumn6.ColumnName = "ROLL_DIAMETER_UP";
- //
- // dataColumn7
- //
- this.dataColumn7.ColumnName = "ROLL_CROWN_UP";
- //
- // dataColumn8
- //
- this.dataColumn8.ColumnName = "ROLL_ROUGHNESS_UP";
- //
- // dataColumn9
- //
- this.dataColumn9.ColumnName = "ROLL_SHAPE_UP";
- //
- // dataColumn10
- //
- this.dataColumn10.ColumnName = "ROLL_PROPERTY_CLASS";
- //
- // dataColumn11
- //
- this.dataColumn11.ColumnName = "OP_CHOCK_NO_UP";
- //
- // dataColumn12
- //
- this.dataColumn12.ColumnName = "DR_CHOCK_NO_UP";
- //
- // dataColumn13
- //
- this.dataColumn13.ColumnName = "SA1";
- //
- // dataColumn14
- //
- this.dataColumn14.ColumnName = "SA2";
- //
- // dataColumn15
- //
- this.dataColumn15.ColumnName = "SA3";
- //
- // dataColumn16
- //
- this.dataColumn16.ColumnName = "SA4";
- //
- // dataColumn17
- //
- this.dataColumn17.ColumnName = "SA5";
- //
- // dataColumn18
- //
- this.dataColumn18.ColumnName = "SA6";
- //
- // dataColumn19
- //
- this.dataColumn19.ColumnName = "SA7";
- //
- // dataColumn40
- //
- this.dataColumn40.ColumnName = "REG_DTIME";
- //
- // ultraGroupBox3
- //
- this.ultraGroupBox3.Controls.Add(this.ultraGrid2);
- this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox3.Location = new System.Drawing.Point(0, 206);
- this.ultraGroupBox3.Name = "ultraGroupBox3";
- this.ultraGroupBox3.Size = new System.Drawing.Size(804, 196);
- this.ultraGroupBox3.TabIndex = 1;
- this.ultraGroupBox3.Text = "下辊属性";
- //
- // ultraGrid2
- //
- this.ultraGrid2.DataSource = this.dataSet2;
- appearance49.BackColor = System.Drawing.SystemColors.Window;
- appearance49.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid2.DisplayLayout.Appearance = appearance49;
- ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn22.Header.Caption = "换辊计划号";
- ultraGridColumn22.Header.VisiblePosition = 0;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 19;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn23.Header.Caption = "操作人";
- ultraGridColumn23.Header.VisiblePosition = 1;
- ultraGridColumn23.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn23.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn24.Header.Caption = "操作时间";
- ultraGridColumn24.Header.VisiblePosition = 2;
- ultraGridColumn24.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn25.Header.Caption = "机架号";
- ultraGridColumn25.Header.VisiblePosition = 3;
- ultraGridColumn25.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn26.Header.Caption = "轧辊类型";
- ultraGridColumn26.Header.VisiblePosition = 4;
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn26.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn27.Header.Caption = "下辊编号";
- ultraGridColumn27.Header.VisiblePosition = 5;
- ultraGridColumn27.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn28.Header.Caption = "下辊直径";
- ultraGridColumn28.Header.VisiblePosition = 6;
- ultraGridColumn28.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn28.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn29.Header.Caption = "下辊凸度";
- ultraGridColumn29.Header.VisiblePosition = 7;
- ultraGridColumn29.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn29.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn30.Header.Caption = "下辊辊粗糙度";
- ultraGridColumn30.Header.VisiblePosition = 8;
- ultraGridColumn30.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn30.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn31.Header.Caption = "下辊外形代码";
- ultraGridColumn31.Header.VisiblePosition = 9;
- ultraGridColumn31.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn31.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn32.Header.Caption = "下辊材质代码";
- ultraGridColumn32.Header.VisiblePosition = 10;
- ultraGridColumn32.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn32.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn33.Header.Caption = "下辊操作侧轴承座号";
- ultraGridColumn33.Header.VisiblePosition = 11;
- ultraGridColumn33.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(146, 24);
- ultraGridColumn33.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn34.Header.Caption = "下辊传动侧轴承座号";
- ultraGridColumn34.Header.VisiblePosition = 12;
- ultraGridColumn34.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(157, 24);
- ultraGridColumn34.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn34.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn35.Header.Caption = "下辊系数1";
- ultraGridColumn35.Header.VisiblePosition = 13;
- ultraGridColumn35.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn36.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn36.Header.Caption = "下辊系数2";
- ultraGridColumn36.Header.VisiblePosition = 14;
- ultraGridColumn36.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn36.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn37.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn37.Header.Caption = "下辊系数3";
- ultraGridColumn37.Header.VisiblePosition = 15;
- ultraGridColumn37.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn37.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn37.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn38.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn38.Header.Caption = "下辊系数4";
- ultraGridColumn38.Header.VisiblePosition = 16;
- ultraGridColumn38.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn38.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn38.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn38.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn39.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn39.Header.Caption = "下辊系数5";
- ultraGridColumn39.Header.VisiblePosition = 17;
- ultraGridColumn39.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn39.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn39.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn40.Header.Caption = "下辊系数6";
- ultraGridColumn40.Header.VisiblePosition = 18;
- ultraGridColumn40.RowLayoutColumnInfo.OriginX = 17;
- ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn40.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn41.Header.Caption = "下辊系数7";
- ultraGridColumn41.Header.VisiblePosition = 19;
- ultraGridColumn41.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 24);
- ultraGridColumn41.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 23);
- ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn22,
- ultraGridColumn23,
- ultraGridColumn24,
- ultraGridColumn25,
- ultraGridColumn26,
- ultraGridColumn27,
- ultraGridColumn28,
- ultraGridColumn29,
- ultraGridColumn30,
- ultraGridColumn31,
- ultraGridColumn32,
- ultraGridColumn33,
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41});
- ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance50.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance50.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance50.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance50.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance50;
- appearance51.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance51;
- this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid2.DisplayLayout.GroupByBox.Prompt = " ";
- appearance61.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance61.BackColor2 = System.Drawing.SystemColors.Control;
- appearance61.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance61.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance61;
- this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
- appearance62.BackColor = System.Drawing.SystemColors.Window;
- appearance62.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance62;
- appearance63.BackColor = System.Drawing.SystemColors.Highlight;
- appearance63.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance63;
- this.ultraGrid2.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGrid2.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance64.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance64;
- appearance65.BorderColor = System.Drawing.Color.Silver;
- appearance65.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance65;
- this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
- appearance85.BackColor = System.Drawing.SystemColors.Control;
- appearance85.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance85.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance85.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance85.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance85;
- appearance86.BackColor = System.Drawing.Color.LightSteelBlue;
- appearance86.TextHAlignAsString = "Center";
- this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance86;
- this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- appearance87.BackColor = System.Drawing.SystemColors.Window;
- appearance87.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance87;
- this.ultraGrid2.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
- this.ultraGrid2.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance88.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance88;
- this.ultraGrid2.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid2.Location = new System.Drawing.Point(3, 18);
- this.ultraGrid2.Name = "ultraGrid2";
- this.ultraGrid2.Size = new System.Drawing.Size(798, 175);
- this.ultraGrid2.TabIndex = 0;
- this.ultraGrid2.Text = "ultraGrid2";
- //
- // dataSet2
- //
- this.dataSet2.DataSetName = "NewDataSet";
- this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable2});
- //
- // dataTable2
- //
- this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn20,
- this.dataColumn21,
- this.dataColumn22,
- this.dataColumn23,
- this.dataColumn24,
- this.dataColumn25,
- this.dataColumn26,
- this.dataColumn27,
- this.dataColumn28,
- this.dataColumn29,
- this.dataColumn30,
- this.dataColumn31,
- this.dataColumn32,
- this.dataColumn33,
- this.dataColumn34,
- this.dataColumn35,
- this.dataColumn36,
- this.dataColumn37,
- this.dataColumn38,
- this.dataColumn39});
- this.dataTable2.TableName = "Table1";
- //
- // dataColumn20
- //
- this.dataColumn20.ColumnName = "SPEC_NO";
- //
- // dataColumn21
- //
- this.dataColumn21.ColumnName = "REG_ID";
- //
- // dataColumn22
- //
- this.dataColumn22.ColumnName = "REG_DTIME";
- //
- // dataColumn23
- //
- this.dataColumn23.ColumnName = "STAND_ID";
- //
- // dataColumn24
- //
- this.dataColumn24.ColumnName = "ROLL_TYPE";
- //
- // dataColumn25
- //
- this.dataColumn25.ColumnName = "ROLL_ID_LO";
- //
- // dataColumn26
- //
- this.dataColumn26.ColumnName = "ROLL_DIAMETER_LO";
- //
- // dataColumn27
- //
- this.dataColumn27.ColumnName = "ROLL_CROWN_LO";
- //
- // dataColumn28
- //
- this.dataColumn28.ColumnName = "ROLL_ROUGHNESS_LO";
- //
- // dataColumn29
- //
- this.dataColumn29.ColumnName = "ROLL_SHAPE_LO";
- //
- // dataColumn30
- //
- this.dataColumn30.ColumnName = "ROLL_PROPERTY_CLASS_LO";
- //
- // dataColumn31
- //
- this.dataColumn31.ColumnName = "OP_CHOCK_NO_LO";
- //
- // dataColumn32
- //
- this.dataColumn32.ColumnName = "DR_CHOCK_NO_LO";
- //
- // dataColumn33
- //
- this.dataColumn33.ColumnName = "XA1";
- //
- // dataColumn34
- //
- this.dataColumn34.ColumnName = "XA2";
- //
- // dataColumn35
- //
- this.dataColumn35.ColumnName = "XA3";
- //
- // dataColumn36
- //
- this.dataColumn36.ColumnName = "XA4";
- //
- // dataColumn37
- //
- this.dataColumn37.ColumnName = "XA5";
- //
- // dataColumn38
- //
- this.dataColumn38.ColumnName = "XA6";
- //
- // dataColumn39
- //
- this.dataColumn39.ColumnName = "XA7";
- //
- // ultraExpandableGroupBox1
- //
- this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(804, 119);
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 402);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(804, 119);
- this.ultraExpandableGroupBox1.TabIndex = 4;
- this.ultraExpandableGroupBox1.Text = "编辑区域";
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraComboXcai);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraComboScai);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel17);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel16);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextXshap);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel15);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextSshap);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel14);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextXiaTu);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel13);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextShangTu);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel12);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextLodia);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel3);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextUpdia);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel2);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraComboArea);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraComboRollType);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel10);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel9);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel8);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextReg_id);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextRoll_id_lo);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextRoll_id_up);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel7);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel6);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextSand_id);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel5);
- this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 19);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(798, 97);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- //
- // ultraComboXcai
- //
- appearance31.BorderColor = System.Drawing.Color.Black;
- appearance31.TextHAlignAsString = "Center";
- appearance31.TextVAlignAsString = "Middle";
- this.ultraComboXcai.Appearance = appearance31;
- this.ultraComboXcai.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultraComboXcai.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem16.DataValue = "ValueListItem0";
- valueListItem16.DisplayText = "光辊";
- valueListItem17.DataValue = "ValueListItem1";
- valueListItem17.DisplayText = "毛辊";
- this.ultraComboXcai.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem16,
- valueListItem17});
- this.ultraComboXcai.Location = new System.Drawing.Point(471, 86);
- this.ultraComboXcai.Name = "ultraComboXcai";
- this.ultraComboXcai.Size = new System.Drawing.Size(100, 21);
- this.ultraComboXcai.TabIndex = 33;
- //
- // ultraComboScai
- //
- appearance30.BorderColor = System.Drawing.Color.Black;
- appearance30.TextHAlignAsString = "Center";
- appearance30.TextVAlignAsString = "Middle";
- this.ultraComboScai.Appearance = appearance30;
- this.ultraComboScai.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultraComboScai.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem14.DataValue = "ValueListItem0";
- valueListItem14.DisplayText = "光辊";
- valueListItem15.DataValue = "ValueListItem1";
- valueListItem15.DisplayText = "毛辊";
- this.ultraComboScai.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem14,
- valueListItem15});
- this.ultraComboScai.Location = new System.Drawing.Point(277, 86);
- this.ultraComboScai.Name = "ultraComboScai";
- this.ultraComboScai.Size = new System.Drawing.Size(100, 21);
- this.ultraComboScai.TabIndex = 31;
- //
- // ultraLabel17
- //
- appearance74.BackColor = System.Drawing.Color.LightBlue;
- appearance74.BorderColor = System.Drawing.Color.Black;
- appearance74.TextHAlignAsString = "Center";
- appearance74.TextVAlignAsString = "Middle";
- this.ultraLabel17.Appearance = appearance74;
- this.ultraLabel17.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel17.Location = new System.Drawing.Point(383, 86);
- this.ultraLabel17.Name = "ultraLabel17";
- this.ultraLabel17.Size = new System.Drawing.Size(86, 21);
- this.ultraLabel17.TabIndex = 30;
- this.ultraLabel17.Text = "下辊材质代码";
- //
- // ultraLabel16
- //
- appearance73.BackColor = System.Drawing.Color.LightBlue;
- appearance73.BorderColor = System.Drawing.Color.Black;
- appearance73.TextHAlignAsString = "Center";
- appearance73.TextVAlignAsString = "Middle";
- this.ultraLabel16.Appearance = appearance73;
- this.ultraLabel16.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel16.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel16.Location = new System.Drawing.Point(189, 86);
- this.ultraLabel16.Name = "ultraLabel16";
- this.ultraLabel16.Size = new System.Drawing.Size(86, 21);
- this.ultraLabel16.TabIndex = 28;
- this.ultraLabel16.Text = "上辊材质代码";
- //
- // ultraTextXshap
- //
- appearance21.BackColor = System.Drawing.SystemColors.Window;
- appearance21.BorderColor = System.Drawing.Color.Black;
- this.ultraTextXshap.Appearance = appearance21;
- this.ultraTextXshap.BackColor = System.Drawing.SystemColors.Window;
- this.ultraTextXshap.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultraTextXshap.Location = new System.Drawing.Point(97, 86);
- this.ultraTextXshap.Name = "ultraTextXshap";
- this.ultraTextXshap.Size = new System.Drawing.Size(86, 21);
- this.ultraTextXshap.TabIndex = 27;
- //
- // ultraLabel15
- //
- appearance69.BackColor = System.Drawing.Color.LightBlue;
- appearance69.BorderColor = System.Drawing.Color.Black;
- appearance69.TextHAlignAsString = "Center";
- appearance69.TextVAlignAsString = "Middle";
- this.ultraLabel15.Appearance = appearance69;
- this.ultraLabel15.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel15.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel15.Location = new System.Drawing.Point(9, 87);
- this.ultraLabel15.Name = "ultraLabel15";
- this.ultraLabel15.Size = new System.Drawing.Size(86, 21);
- this.ultraLabel15.TabIndex = 26;
- this.ultraLabel15.Text = "下辊外形代码";
- //
- // ultraTextSshap
- //
- appearance28.BackColor = System.Drawing.SystemColors.Window;
- appearance28.BorderColor = System.Drawing.Color.Black;
- this.ultraTextSshap.Appearance = appearance28;
- this.ultraTextSshap.BackColor = System.Drawing.SystemColors.Window;
- this.ultraTextSshap.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultraTextSshap.Location = new System.Drawing.Point(667, 34);
- this.ultraTextSshap.Name = "ultraTextSshap";
- this.ultraTextSshap.Size = new System.Drawing.Size(100, 21);
- this.ultraTextSshap.TabIndex = 25;
- //
- // ultraLabel14
- //
- appearance80.BackColor = System.Drawing.Color.LightBlue;
- appearance80.BorderColor = System.Drawing.Color.Black;
- appearance80.TextHAlignAsString = "Center";
- appearance80.TextVAlignAsString = "Middle";
- this.ultraLabel14.Appearance = appearance80;
- this.ultraLabel14.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel14.Location = new System.Drawing.Point(577, 34);
- this.ultraLabel14.Name = "ultraLabel14";
- this.ultraLabel14.Size = new System.Drawing.Size(88, 21);
- this.ultraLabel14.TabIndex = 24;
- this.ultraLabel14.Text = "上辊外形代码";
- //
- // ultraTextXiaTu
- //
- appearance25.BackColor = System.Drawing.SystemColors.Window;
- appearance25.BorderColor = System.Drawing.Color.Black;
- this.ultraTextXiaTu.Appearance = appearance25;
- this.ultraTextXiaTu.BackColor = System.Drawing.SystemColors.Window;
- this.ultraTextXiaTu.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultraTextXiaTu.Location = new System.Drawing.Point(471, 60);
- this.ultraTextXiaTu.Name = "ultraTextXiaTu";
- this.ultraTextXiaTu.Size = new System.Drawing.Size(100, 21);
- this.ultraTextXiaTu.TabIndex = 23;
- //
- // ultraLabel13
- //
- appearance75.BackColor = System.Drawing.Color.LightBlue;
- appearance75.BorderColor = System.Drawing.Color.Black;
- appearance75.TextHAlignAsString = "Center";
- appearance75.TextVAlignAsString = "Middle";
- this.ultraLabel13.Appearance = appearance75;
- this.ultraLabel13.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel13.Location = new System.Drawing.Point(383, 60);
- this.ultraLabel13.Name = "ultraLabel13";
- this.ultraLabel13.Size = new System.Drawing.Size(86, 21);
- this.ultraLabel13.TabIndex = 22;
- this.ultraLabel13.Text = "下辊凸度";
- //
- // ultraTextShangTu
- //
- appearance22.BackColor = System.Drawing.SystemColors.Window;
- appearance22.BorderColor = System.Drawing.Color.Black;
- this.ultraTextShangTu.Appearance = appearance22;
- this.ultraTextShangTu.BackColor = System.Drawing.SystemColors.Window;
- this.ultraTextShangTu.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultraTextShangTu.Location = new System.Drawing.Point(277, 60);
- this.ultraTextShangTu.Name = "ultraTextShangTu";
- this.ultraTextShangTu.Size = new System.Drawing.Size(100, 21);
- this.ultraTextShangTu.TabIndex = 21;
- //
- // ultraLabel12
- //
- appearance72.BackColor = System.Drawing.Color.LightBlue;
- appearance72.BorderColor = System.Drawing.Color.Black;
- appearance72.TextHAlignAsString = "Center";
- appearance72.TextVAlignAsString = "Middle";
- this.ultraLabel12.Appearance = appearance72;
- this.ultraLabel12.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel12.Location = new System.Drawing.Point(189, 60);
- this.ultraLabel12.Name = "ultraLabel12";
- this.ultraLabel12.Size = new System.Drawing.Size(86, 21);
- this.ultraLabel12.TabIndex = 20;
- this.ultraLabel12.Text = "上辊凸度";
- //
- // ultraTextLodia
- //
- appearance20.BackColor = System.Drawing.SystemColors.Window;
- appearance20.BorderColor = System.Drawing.Color.Black;
- this.ultraTextLodia.Appearance = appearance20;
- this.ultraTextLodia.BackColor = System.Drawing.SystemColors.Window;
- this.ultraTextLodia.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultraTextLodia.Location = new System.Drawing.Point(97, 60);
- this.ultraTextLodia.Name = "ultraTextLodia";
- this.ultraTextLodia.Size = new System.Drawing.Size(86, 21);
- this.ultraTextLodia.TabIndex = 19;
- //
- // ultraLabel3
- //
- appearance68.BackColor = System.Drawing.Color.LightBlue;
- appearance68.BorderColor = System.Drawing.Color.Black;
- appearance68.TextHAlignAsString = "Center";
- appearance68.TextVAlignAsString = "Middle";
- this.ultraLabel3.Appearance = appearance68;
- this.ultraLabel3.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel3.Location = new System.Drawing.Point(9, 60);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(86, 21);
- this.ultraLabel3.TabIndex = 18;
- this.ultraLabel3.Text = "下辊直径";
- //
- // ultraTextUpdia
- //
- appearance27.BackColor = System.Drawing.SystemColors.Window;
- appearance27.BorderColor = System.Drawing.Color.Black;
- this.ultraTextUpdia.Appearance = appearance27;
- this.ultraTextUpdia.BackColor = System.Drawing.SystemColors.Window;
- this.ultraTextUpdia.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultraTextUpdia.Location = new System.Drawing.Point(667, 7);
- this.ultraTextUpdia.Name = "ultraTextUpdia";
- this.ultraTextUpdia.Size = new System.Drawing.Size(100, 21);
- this.ultraTextUpdia.TabIndex = 17;
- //
- // ultraLabel2
- //
- appearance79.BackColor = System.Drawing.Color.LightBlue;
- appearance79.BorderColor = System.Drawing.Color.Black;
- appearance79.TextHAlignAsString = "Center";
- appearance79.TextVAlignAsString = "Middle";
- this.ultraLabel2.Appearance = appearance79;
- this.ultraLabel2.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel2.Location = new System.Drawing.Point(577, 7);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(88, 21);
- this.ultraLabel2.TabIndex = 16;
- this.ultraLabel2.Text = "上辊直径";
- //
- // ultraComboArea
- //
- appearance32.BorderColor = System.Drawing.Color.Black;
- appearance32.TextHAlignAsString = "Center";
- appearance32.TextVAlignAsString = "Middle";
- this.ultraComboArea.Appearance = appearance32;
- this.ultraComboArea.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultraComboArea.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem9.DataValue = "ValueListItem0";
- valueListItem9.DisplayText = "1";
- valueListItem10.DataValue = "ValueListItem1";
- valueListItem10.DisplayText = "2";
- valueListItem11.DataValue = "ValueListItem2";
- valueListItem11.DisplayText = "3";
- valueListItem12.DataValue = "ValueListItem3";
- valueListItem12.DisplayText = "4";
- valueListItem13.DataValue = "ValueListItem4";
- valueListItem13.DisplayText = "5";
- this.ultraComboArea.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem9,
- valueListItem10,
- valueListItem11,
- valueListItem12,
- valueListItem13});
- this.ultraComboArea.Location = new System.Drawing.Point(471, 7);
- this.ultraComboArea.Name = "ultraComboArea";
- this.ultraComboArea.Size = new System.Drawing.Size(100, 21);
- this.ultraComboArea.TabIndex = 15;
- //
- // ultraComboRollType
- //
- appearance29.BorderColor = System.Drawing.Color.Black;
- appearance29.TextHAlignAsString = "Center";
- appearance29.TextVAlignAsString = "Middle";
- this.ultraComboRollType.Appearance = appearance29;
- this.ultraComboRollType.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultraComboRollType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem6.DataValue = "ValueListItem0";
- valueListItem6.DisplayText = "WKR";
- valueListItem7.DataValue = "ValueListItem1";
- valueListItem7.DisplayText = "IMR";
- valueListItem8.DataValue = "ValueListItem2";
- valueListItem8.DisplayText = "BUR";
- this.ultraComboRollType.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem6,
- valueListItem7,
- valueListItem8});
- this.ultraComboRollType.Location = new System.Drawing.Point(277, 7);
- this.ultraComboRollType.Name = "ultraComboRollType";
- this.ultraComboRollType.Size = new System.Drawing.Size(100, 21);
- this.ultraComboRollType.TabIndex = 14;
- //
- // ultraLabel10
- //
- appearance76.BackColor = System.Drawing.Color.LightBlue;
- appearance76.BorderColor = System.Drawing.Color.Black;
- appearance76.TextHAlignAsString = "Center";
- appearance76.TextVAlignAsString = "Middle";
- this.ultraLabel10.Appearance = appearance76;
- this.ultraLabel10.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel10.Location = new System.Drawing.Point(383, 34);
- this.ultraLabel10.Name = "ultraLabel10";
- this.ultraLabel10.Size = new System.Drawing.Size(86, 21);
- this.ultraLabel10.TabIndex = 11;
- this.ultraLabel10.Text = "操作人";
- //
- // ultraLabel9
- //
- appearance71.BackColor = System.Drawing.Color.LightBlue;
- appearance71.BorderColor = System.Drawing.Color.Black;
- appearance71.TextHAlignAsString = "Center";
- appearance71.TextVAlignAsString = "Middle";
- this.ultraLabel9.Appearance = appearance71;
- this.ultraLabel9.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel9.Location = new System.Drawing.Point(189, 34);
- this.ultraLabel9.Name = "ultraLabel9";
- this.ultraLabel9.Size = new System.Drawing.Size(86, 21);
- this.ultraLabel9.TabIndex = 10;
- this.ultraLabel9.Text = "下辊编号";
- //
- // ultraLabel8
- //
- appearance67.BackColor = System.Drawing.Color.LightBlue;
- appearance67.BorderColor = System.Drawing.Color.Black;
- appearance67.TextHAlignAsString = "Center";
- appearance67.TextVAlignAsString = "Middle";
- this.ultraLabel8.Appearance = appearance67;
- this.ultraLabel8.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel8.Location = new System.Drawing.Point(9, 34);
- this.ultraLabel8.Name = "ultraLabel8";
- this.ultraLabel8.Size = new System.Drawing.Size(86, 21);
- this.ultraLabel8.TabIndex = 9;
- this.ultraLabel8.Text = "上辊编号";
- //
- // ultraTextReg_id
- //
- appearance24.BackColor = System.Drawing.SystemColors.Window;
- appearance24.BorderColor = System.Drawing.Color.Black;
- this.ultraTextReg_id.Appearance = appearance24;
- this.ultraTextReg_id.BackColor = System.Drawing.SystemColors.Window;
- this.ultraTextReg_id.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultraTextReg_id.Location = new System.Drawing.Point(471, 34);
- this.ultraTextReg_id.Name = "ultraTextReg_id";
- this.ultraTextReg_id.Size = new System.Drawing.Size(100, 21);
- this.ultraTextReg_id.TabIndex = 8;
- //
- // ultraTextRoll_id_lo
- //
- appearance23.BackColor = System.Drawing.SystemColors.Window;
- appearance23.BorderColor = System.Drawing.Color.Black;
- this.ultraTextRoll_id_lo.Appearance = appearance23;
- this.ultraTextRoll_id_lo.BackColor = System.Drawing.SystemColors.Window;
- this.ultraTextRoll_id_lo.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultraTextRoll_id_lo.Location = new System.Drawing.Point(277, 34);
- this.ultraTextRoll_id_lo.Name = "ultraTextRoll_id_lo";
- this.ultraTextRoll_id_lo.Size = new System.Drawing.Size(100, 21);
- this.ultraTextRoll_id_lo.TabIndex = 7;
- //
- // ultraTextRoll_id_up
- //
- appearance19.BackColor = System.Drawing.SystemColors.Window;
- appearance19.BorderColor = System.Drawing.Color.Black;
- this.ultraTextRoll_id_up.Appearance = appearance19;
- this.ultraTextRoll_id_up.BackColor = System.Drawing.SystemColors.Window;
- this.ultraTextRoll_id_up.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultraTextRoll_id_up.Location = new System.Drawing.Point(97, 34);
- this.ultraTextRoll_id_up.Name = "ultraTextRoll_id_up";
- this.ultraTextRoll_id_up.Size = new System.Drawing.Size(86, 21);
- this.ultraTextRoll_id_up.TabIndex = 6;
- //
- // ultraLabel7
- //
- appearance77.BackColor = System.Drawing.Color.LightBlue;
- appearance77.BorderColor = System.Drawing.Color.Black;
- appearance77.TextHAlignAsString = "Center";
- appearance77.TextVAlignAsString = "Middle";
- this.ultraLabel7.Appearance = appearance77;
- this.ultraLabel7.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel7.Location = new System.Drawing.Point(383, 7);
- this.ultraLabel7.Name = "ultraLabel7";
- this.ultraLabel7.Size = new System.Drawing.Size(86, 22);
- this.ultraLabel7.TabIndex = 4;
- this.ultraLabel7.Text = "换辊区域";
- //
- // ultraLabel6
- //
- appearance70.BackColor = System.Drawing.Color.LightBlue;
- appearance70.BorderColor = System.Drawing.Color.Black;
- appearance70.TextHAlignAsString = "Center";
- appearance70.TextVAlignAsString = "Middle";
- this.ultraLabel6.Appearance = appearance70;
- this.ultraLabel6.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel6.Location = new System.Drawing.Point(189, 7);
- this.ultraLabel6.Name = "ultraLabel6";
- this.ultraLabel6.Size = new System.Drawing.Size(86, 21);
- this.ultraLabel6.TabIndex = 2;
- this.ultraLabel6.Text = "轧辊类型";
- //
- // ultraTextSand_id
- //
- appearance18.BorderColor = System.Drawing.Color.Black;
- this.ultraTextSand_id.Appearance = appearance18;
- this.ultraTextSand_id.BorderStyle = Infragistics.Win.UIElementBorderStyle.Inset;
- this.ultraTextSand_id.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultraTextSand_id.Location = new System.Drawing.Point(97, 7);
- this.ultraTextSand_id.Name = "ultraTextSand_id";
- this.ultraTextSand_id.Size = new System.Drawing.Size(86, 21);
- this.ultraTextSand_id.TabIndex = 1;
- //
- // ultraLabel5
- //
- appearance66.BackColor = System.Drawing.Color.LightBlue;
- appearance66.BorderColor = System.Drawing.Color.Black;
- appearance66.TextHAlignAsString = "Center";
- appearance66.TextVAlignAsString = "Middle";
- this.ultraLabel5.Appearance = appearance66;
- this.ultraLabel5.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel5.Location = new System.Drawing.Point(9, 7);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(86, 21);
- this.ultraLabel5.TabIndex = 0;
- this.ultraLabel5.Text = "机架号";
- //
- // ultraPanel1
- //
- //
- // ultraPanel1.ClientArea
- //
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox3);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox2);
- this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel1.Location = new System.Drawing.Point(0, 57);
- this.ultraPanel1.Name = "ultraPanel1";
- this.ultraPanel1.Size = new System.Drawing.Size(804, 521);
- this.ultraPanel1.TabIndex = 1;
- //
- // ultraLabel11
- //
- appearance35.BackColor = System.Drawing.Color.LightBlue;
- appearance35.BorderColor = System.Drawing.Color.Black;
- appearance35.TextHAlignAsString = "Center";
- appearance35.TextVAlignAsString = "Middle";
- this.ultraLabel11.Appearance = appearance35;
- this.ultraLabel11.BorderStyleInner = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraLabel11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel11.Location = new System.Drawing.Point(371, 21);
- this.ultraLabel11.Name = "ultraLabel11";
- this.ultraLabel11.Size = new System.Drawing.Size(70, 21);
- this.ultraLabel11.TabIndex = 36;
- this.ultraLabel11.Text = "操作时间";
- //
- // ultraDateTimeEditor1
- //
- appearance26.BorderColor = System.Drawing.Color.Black;
- this.ultraDateTimeEditor1.Appearance = appearance26;
- this.ultraDateTimeEditor1.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
- this.ultraDateTimeEditor1.Location = new System.Drawing.Point(444, 21);
- this.ultraDateTimeEditor1.Name = "ultraDateTimeEditor1";
- this.ultraDateTimeEditor1.Size = new System.Drawing.Size(116, 21);
- this.ultraDateTimeEditor1.TabIndex = 37;
- //
- // ultraDateTimeEditor2
- //
- appearance2.BorderColor = System.Drawing.Color.Black;
- this.ultraDateTimeEditor2.Appearance = appearance2;
- this.ultraDateTimeEditor2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.VisualStudio2005;
- this.ultraDateTimeEditor2.Location = new System.Drawing.Point(563, 21);
- this.ultraDateTimeEditor2.Name = "ultraDateTimeEditor2";
- this.ultraDateTimeEditor2.Size = new System.Drawing.Size(116, 21);
- this.ultraDateTimeEditor2.TabIndex = 38;
- //
- // UIK050010
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(804, 578);
- this.Controls.Add(this.ultraPanel1);
- this.Controls.Add(this.ultraGroupBox1);
- this.Name = "UIK050010";
- this.Text = "UIK050010";
- this.Load += new System.EventHandler(this.UIK050010_Load);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- this.ultraGroupBox1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.zgArea)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.zgNumber)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
- this.ultraGroupBox2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
- this.ultraGroupBox3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboXcai)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboScai)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextXshap)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextSshap)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextXiaTu)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextShangTu)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextLodia)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextUpdia)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboArea)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboRollType)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextReg_id)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextRoll_id_lo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextRoll_id_up)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextSand_id)).EndInit();
- this.ultraPanel1.ClientArea.ResumeLayout(false);
- this.ultraPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor2)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor zgNumber;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor zgArea;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel10;
- private Infragistics.Win.Misc.UltraLabel ultraLabel9;
- private Infragistics.Win.Misc.UltraLabel ultraLabel8;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextReg_id;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextRoll_id_lo;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextRoll_id_up;
- private Infragistics.Win.Misc.UltraLabel ultraLabel7;
- private Infragistics.Win.Misc.UltraLabel ultraLabel6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextSand_id;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- private Infragistics.Win.Misc.UltraPanel ultraPanel1;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
- private System.Data.DataSet dataSet1;
- private System.Data.DataTable dataTable1;
- private System.Data.DataColumn dataColumn1;
- private System.Data.DataColumn dataColumn2;
- private System.Data.DataColumn dataColumn3;
- private System.Data.DataColumn dataColumn4;
- private System.Data.DataColumn dataColumn5;
- private System.Data.DataColumn dataColumn6;
- private System.Data.DataColumn dataColumn7;
- private System.Data.DataColumn dataColumn8;
- private System.Data.DataColumn dataColumn9;
- private System.Data.DataColumn dataColumn10;
- private System.Data.DataColumn dataColumn11;
- private System.Data.DataColumn dataColumn12;
- private System.Data.DataColumn dataColumn13;
- private System.Data.DataColumn dataColumn14;
- private System.Data.DataColumn dataColumn15;
- private System.Data.DataColumn dataColumn16;
- private System.Data.DataColumn dataColumn17;
- private System.Data.DataColumn dataColumn18;
- private System.Data.DataColumn dataColumn19;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
- private System.Data.DataSet dataSet2;
- private System.Data.DataTable dataTable2;
- private System.Data.DataColumn dataColumn20;
- private System.Data.DataColumn dataColumn21;
- private System.Data.DataColumn dataColumn22;
- private System.Data.DataColumn dataColumn23;
- private System.Data.DataColumn dataColumn24;
- private System.Data.DataColumn dataColumn25;
- private System.Data.DataColumn dataColumn26;
- private System.Data.DataColumn dataColumn27;
- private System.Data.DataColumn dataColumn28;
- private System.Data.DataColumn dataColumn29;
- private System.Data.DataColumn dataColumn30;
- private System.Data.DataColumn dataColumn31;
- private System.Data.DataColumn dataColumn32;
- private System.Data.DataColumn dataColumn33;
- private System.Data.DataColumn dataColumn34;
- private System.Data.DataColumn dataColumn35;
- private System.Data.DataColumn dataColumn36;
- private System.Data.DataColumn dataColumn37;
- private System.Data.DataColumn dataColumn38;
- private System.Data.DataColumn dataColumn39;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboRollType;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboArea;
- private Infragistics.Win.Misc.UltraLabel ultraLabel12;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextLodia;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextUpdia;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel14;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextXiaTu;
- private Infragistics.Win.Misc.UltraLabel ultraLabel13;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextShangTu;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextXshap;
- private Infragistics.Win.Misc.UltraLabel ultraLabel15;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextSshap;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboXcai;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboScai;
- private Infragistics.Win.Misc.UltraLabel ultraLabel17;
- private Infragistics.Win.Misc.UltraLabel ultraLabel16;
- private System.Data.DataColumn dataColumn40;
- private Infragistics.Win.Misc.UltraLabel ultraLabel11;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor2;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor1;
- }
- }
|