| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905 |
- namespace Pur.require_plan
- {
- partial class FrmPurPlanMat
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table6", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTR");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCLASS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Check", 0);
- Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemDesc");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemSpec");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemModel");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemUom");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemUomFormula");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemUomConefficient");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("bugPrice");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemDescE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WeightUnit");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRICETYPE", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemUseUom");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptDesc");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitDesc");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("receiveType");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("isBudgetCtrl");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ARCCODE");
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table3", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCLASS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCLASSNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Relation1");
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Relation1", 0);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTR");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCLASS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Check", 0);
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table5", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UOMCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UOMNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMCONEFFICIENT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHTUNIT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHTUNITCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISDEFAULT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Check", 0);
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand6 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table4", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STANDARDSCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISDEFAULT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDERNUM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSTANDARDSID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STANDARDSID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Check", 0);
- Infragistics.Win.UltraWinTree.Override _override1 = new Infragistics.Win.UltraWinTree.Override();
- Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.RibbonTab ribbonTab1 = new Infragistics.Win.UltraWinToolbars.RibbonTab("ribbon1");
- Infragistics.Win.UltraWinToolbars.RibbonGroup ribbonGroup1 = new Infragistics.Win.UltraWinToolbars.RibbonGroup("ribbonGroup1");
- Infragistics.Win.UltraWinToolbars.RibbonGroup ribbonGroup2 = new Infragistics.Win.UltraWinToolbars.RibbonGroup("ribbonGroup2");
- Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("关闭");
- Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar2");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("conFirmation");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ESC");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("新增");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("关闭");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("恢复");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("确认");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmPurPlanMat));
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ESC");
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("conFirmation");
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
- this.label66 = new System.Windows.Forms.Label();
- this.txt_ARC_ITEM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_ARC_CODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.checkBox1 = new System.Windows.Forms.CheckBox();
- this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraGroupBox6 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet3 = new System.Data.DataSet();
- this.dataTable3 = new System.Data.DataTable();
- this.dataColumn21 = new System.Data.DataColumn();
- this.dataColumn22 = new System.Data.DataColumn();
- this.dataColumn23 = new System.Data.DataColumn();
- this.dataColumn25 = 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.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.dataColumn43 = new System.Data.DataColumn();
- this.dataTable4 = new System.Data.DataTable();
- this.dataColumn44 = new System.Data.DataColumn();
- this.dataColumn45 = new System.Data.DataColumn();
- this.dataColumn46 = new System.Data.DataColumn();
- this.dataColumn47 = new System.Data.DataColumn();
- this.dataColumn48 = new System.Data.DataColumn();
- this.dataColumn49 = new System.Data.DataColumn();
- this.dataColumn50 = new System.Data.DataColumn();
- this.dataColumn51 = new System.Data.DataColumn();
- this.dataColumn52 = new System.Data.DataColumn();
- this.dataColumn53 = new System.Data.DataColumn();
- this.dataColumn54 = new System.Data.DataColumn();
- this.dataColumn55 = new System.Data.DataColumn();
- this.dataTable5 = new System.Data.DataTable();
- this.dataColumn85 = new System.Data.DataColumn();
- this.dataColumn91 = new System.Data.DataColumn();
- this.dataTable6 = new System.Data.DataTable();
- this.dataColumn69 = new System.Data.DataColumn();
- this.dataColumn70 = new System.Data.DataColumn();
- this.dataColumn71 = new System.Data.DataColumn();
- this.dataColumn72 = new System.Data.DataColumn();
- this.dataColumn73 = new System.Data.DataColumn();
- this.dataColumn74 = new System.Data.DataColumn();
- this.dataTable7 = new System.Data.DataTable();
- this.dataColumn75 = new System.Data.DataColumn();
- this.dataColumn76 = new System.Data.DataColumn();
- this.dataColumn77 = new System.Data.DataColumn();
- this.dataColumn78 = new System.Data.DataColumn();
- this.dataColumn79 = new System.Data.DataColumn();
- this.dataColumn80 = new System.Data.DataColumn();
- this.dataColumn81 = new System.Data.DataColumn();
- this.dataColumn82 = new System.Data.DataColumn();
- this.dataTable8 = new System.Data.DataTable();
- this.dataColumn86 = new System.Data.DataColumn();
- this.dataColumn88 = new System.Data.DataColumn();
- this.dataColumn90 = new System.Data.DataColumn();
- this.dataColumn87 = new System.Data.DataColumn();
- this.ultraPanel4 = new Infragistics.Win.Misc.UltraPanel();
- this.ultraButton1 = new Infragistics.Win.Misc.UltraButton();
- this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.cmbNum = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label65 = new System.Windows.Forms.Label();
- this.label64 = new System.Windows.Forms.Label();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_wlmc = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_wlbm = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.dataSet2 = new System.Data.DataSet();
- this.dataTable2 = new System.Data.DataTable();
- this.dataColumn19 = new System.Data.DataColumn();
- this.dataColumn24 = new System.Data.DataColumn();
- this.dataColumn26 = new System.Data.DataColumn();
- this.dataColumn31 = new System.Data.DataColumn();
- this.dataColumn37 = new System.Data.DataColumn();
- this.dataColumn38 = new System.Data.DataColumn();
- this.dataColumn39 = new System.Data.DataColumn();
- this.dataColumn40 = new System.Data.DataColumn();
- this.dataColumn41 = new System.Data.DataColumn();
- this.dataColumn42 = new System.Data.DataColumn();
- this.dataColumn20 = new System.Data.DataColumn();
- 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.dataColumn84 = new System.Data.DataColumn();
- this.dataColumn56 = new System.Data.DataColumn();
- this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
- this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
- this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraGroupBox7 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraTextEditor4 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraGrid7 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
- this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
- this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraGroupBox5 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ulTreeMat = new Infragistics.Win.UltraWinTree.UltraTree();
- this.barsManagerButon = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
- this._Form1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._Form1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._Form1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._Form1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this.ultraToolTipManager1 = new Infragistics.Win.UltraWinToolTip.UltraToolTipManager(this.components);
- this.ultraPanel1.ClientArea.SuspendLayout();
- this.ultraPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_ITEM)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_CODE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).BeginInit();
- this.ultraGroupBox6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).BeginInit();
- this.ultraPanel4.ClientArea.SuspendLayout();
- this.ultraPanel4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbNum)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_wlmc)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_wlbm)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
- this.ultraGroupBox2.SuspendLayout();
- this.ultraPanel2.ClientArea.SuspendLayout();
- this.ultraPanel2.SuspendLayout();
- this.tableLayoutPanel1.SuspendLayout();
- this.ultraPanel3.ClientArea.SuspendLayout();
- this.ultraPanel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox7)).BeginInit();
- this.ultraGroupBox7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
- this.ultraGroupBox3.SuspendLayout();
- this.tableLayoutPanel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
- this.ultraGroupBox4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).BeginInit();
- this.ultraGroupBox5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ulTreeMat)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.barsManagerButon)).BeginInit();
- this.SuspendLayout();
- //
- // ultraPanel1
- //
- //
- // ultraPanel1.ClientArea
- //
- this.ultraPanel1.ClientArea.Controls.Add(this.label66);
- this.ultraPanel1.ClientArea.Controls.Add(this.txt_ARC_ITEM);
- this.ultraPanel1.ClientArea.Controls.Add(this.txt_ARC_CODE);
- this.ultraPanel1.ClientArea.Controls.Add(this.checkBox1);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraTextEditor3);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox6);
- this.ultraPanel1.ClientArea.Controls.Add(this.cmbNum);
- this.ultraPanel1.ClientArea.Controls.Add(this.label65);
- this.ultraPanel1.ClientArea.Controls.Add(this.label64);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel1);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel23);
- this.ultraPanel1.ClientArea.Controls.Add(this.txt_wlmc);
- this.ultraPanel1.ClientArea.Controls.Add(this.txt_wlbm);
- this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraPanel1.Location = new System.Drawing.Point(0, 24);
- this.ultraPanel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraPanel1.Name = "ultraPanel1";
- this.ultraPanel1.Size = new System.Drawing.Size(1234, 30);
- this.ultraPanel1.TabIndex = 0;
- //
- // label66
- //
- this.label66.AutoSize = true;
- this.label66.Location = new System.Drawing.Point(847, 8);
- this.label66.Name = "label66";
- this.label66.Size = new System.Drawing.Size(77, 12);
- this.label66.TabIndex = 172;
- this.label66.Text = "物料分类编码";
- this.label66.Visible = false;
- //
- // txt_ARC_ITEM
- //
- this.txt_ARC_ITEM.Location = new System.Drawing.Point(537, 4);
- this.txt_ARC_ITEM.Name = "txt_ARC_ITEM";
- this.txt_ARC_ITEM.ReadOnly = true;
- this.txt_ARC_ITEM.Size = new System.Drawing.Size(162, 21);
- this.txt_ARC_ITEM.TabIndex = 170;
- //
- // txt_ARC_CODE
- //
- this.txt_ARC_CODE.Location = new System.Drawing.Point(927, 4);
- this.txt_ARC_CODE.Name = "txt_ARC_CODE";
- this.txt_ARC_CODE.ReadOnly = true;
- this.txt_ARC_CODE.Size = new System.Drawing.Size(15, 21);
- this.txt_ARC_CODE.TabIndex = 171;
- this.txt_ARC_CODE.Visible = false;
- //
- // checkBox1
- //
- this.checkBox1.AutoSize = true;
- this.checkBox1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
- this.checkBox1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.checkBox1.Location = new System.Drawing.Point(462, 6);
- this.checkBox1.Name = "checkBox1";
- this.checkBox1.Size = new System.Drawing.Size(72, 16);
- this.checkBox1.TabIndex = 169;
- this.checkBox1.Text = "物料分类";
- this.checkBox1.UseVisualStyleBackColor = false;
- //
- // ultraTextEditor3
- //
- this.ultraTextEditor3.Location = new System.Drawing.Point(363, 4);
- this.ultraTextEditor3.Name = "ultraTextEditor3";
- this.ultraTextEditor3.Size = new System.Drawing.Size(84, 21);
- this.ultraTextEditor3.TabIndex = 168;
- //
- // ultraGroupBox6
- //
- this.ultraGroupBox6.Controls.Add(this.ultraGrid3);
- this.ultraGroupBox6.Controls.Add(this.ultraPanel4);
- this.ultraGroupBox6.Location = new System.Drawing.Point(1149, 5);
- this.ultraGroupBox6.Name = "ultraGroupBox6";
- this.ultraGroupBox6.Size = new System.Drawing.Size(76, 272);
- this.ultraGroupBox6.TabIndex = 2;
- this.ultraGroupBox6.Text = "物料属性";
- this.ultraGroupBox6.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- this.ultraGroupBox6.Visible = false;
- //
- // ultraGrid3
- //
- this.ultraGrid3.DataMember = "Table6";
- this.ultraGrid3.DataSource = this.dataSet3;
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.Hidden = true;
- ultraGridColumn2.Header.VisiblePosition = 3;
- ultraGridColumn2.Width = 112;
- ultraGridColumn3.Header.VisiblePosition = 4;
- ultraGridColumn3.Hidden = true;
- ultraGridColumn4.Header.VisiblePosition = 2;
- ultraGridColumn4.Hidden = true;
- ultraGridColumn4.Width = 51;
- ultraGridColumn5.DataType = typeof(bool);
- ultraGridColumn5.DefaultCellValue = false;
- ultraGridColumn5.Header.Caption = "选择";
- ultraGridColumn5.Header.VisiblePosition = 1;
- ultraGridColumn5.Hidden = true;
- ultraGridColumn5.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5});
- this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid3.Location = new System.Drawing.Point(3, 18);
- this.ultraGrid3.Name = "ultraGrid3";
- this.ultraGrid3.Size = new System.Drawing.Size(70, 195);
- this.ultraGrid3.TabIndex = 0;
- this.ultraGrid3.Text = "ultraGrid3";
- this.ultraGrid3.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid3_CellChange);
- //
- // dataSet3
- //
- this.dataSet3.DataSetName = "NewDataSet";
- this.dataSet3.Relations.AddRange(new System.Data.DataRelation[] {
- new System.Data.DataRelation("Relation1", "Table3", "Table6", new string[] {
- "ITEMATTRCLASS"}, new string[] {
- "ITEMATTRCLASS"}, false)});
- this.dataSet3.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable3,
- this.dataTable4,
- this.dataTable5,
- this.dataTable6,
- this.dataTable7,
- this.dataTable8});
- //
- // dataTable3
- //
- this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn21,
- this.dataColumn22,
- this.dataColumn23,
- this.dataColumn25,
- this.dataColumn27,
- this.dataColumn28,
- this.dataColumn29,
- this.dataColumn30,
- this.dataColumn32,
- this.dataColumn33,
- this.dataColumn34,
- this.dataColumn35,
- this.dataColumn36,
- this.dataColumn43});
- this.dataTable3.TableName = "Table1";
- //
- // dataColumn21
- //
- this.dataColumn21.Caption = "物料编码";
- this.dataColumn21.ColumnName = "ITEMCODE";
- //
- // dataColumn22
- //
- this.dataColumn22.Caption = "物料名称";
- this.dataColumn22.ColumnName = "ITEMNAME";
- //
- // dataColumn23
- //
- this.dataColumn23.Caption = "物料规格";
- this.dataColumn23.ColumnName = "ITEMSPEC";
- //
- // dataColumn25
- //
- this.dataColumn25.Caption = "库存单位";
- this.dataColumn25.ColumnName = "WEIGHTUNIT";
- //
- // dataColumn27
- //
- this.dataColumn27.Caption = "分类编码";
- this.dataColumn27.ColumnName = "ARCCODE";
- //
- // dataColumn28
- //
- this.dataColumn28.Caption = "分类名称";
- this.dataColumn28.ColumnName = "ARCITEM";
- //
- // dataColumn29
- //
- this.dataColumn29.Caption = "申请人";
- this.dataColumn29.ColumnName = "CREATENAME";
- //
- // dataColumn30
- //
- this.dataColumn30.Caption = "创建时间";
- this.dataColumn30.ColumnName = "CREATETIME";
- //
- // dataColumn32
- //
- this.dataColumn32.Caption = "修改人";
- this.dataColumn32.ColumnName = "UPDATENAME";
- //
- // dataColumn33
- //
- this.dataColumn33.Caption = "修改时间";
- this.dataColumn33.ColumnName = "UPDATETIME";
- //
- // dataColumn34
- //
- this.dataColumn34.Caption = "BUYERROLEID";
- this.dataColumn34.ColumnName = "BUYERROLEID";
- //
- // dataColumn35
- //
- this.dataColumn35.ColumnName = "PLANNERROLEID";
- //
- // dataColumn36
- //
- this.dataColumn36.Caption = "物料描述";
- this.dataColumn36.ColumnName = "ITEMDESC";
- //
- // dataColumn43
- //
- this.dataColumn43.ColumnName = "BATCHFLAG";
- //
- // dataTable4
- //
- this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn44,
- this.dataColumn45,
- this.dataColumn46,
- this.dataColumn47,
- this.dataColumn48,
- this.dataColumn49,
- this.dataColumn50,
- this.dataColumn51,
- this.dataColumn52,
- this.dataColumn53,
- this.dataColumn54,
- this.dataColumn55});
- this.dataTable4.TableName = "Table2";
- //
- // dataColumn44
- //
- this.dataColumn44.Caption = "供应商代码";
- this.dataColumn44.ColumnName = "SUPPCODE";
- //
- // dataColumn45
- //
- this.dataColumn45.Caption = "供应商名称";
- this.dataColumn45.ColumnName = "SUPPNAME";
- //
- // dataColumn46
- //
- this.dataColumn46.Caption = "组织机构代码";
- this.dataColumn46.ColumnName = "ORGCODE";
- //
- // dataColumn47
- //
- this.dataColumn47.Caption = "是否内部供应商";
- this.dataColumn47.ColumnName = "SUPPISINTERNAL";
- //
- // dataColumn48
- //
- this.dataColumn48.Caption = "是否子公司";
- this.dataColumn48.ColumnName = "SUPPISSUBCOMPANY";
- //
- // dataColumn49
- //
- this.dataColumn49.Caption = "是否制造商";
- this.dataColumn49.ColumnName = "SUPPISMANUFACTURER";
- //
- // dataColumn50
- //
- this.dataColumn50.Caption = "当前状态";
- this.dataColumn50.ColumnName = "STATUS";
- //
- // dataColumn51
- //
- this.dataColumn51.ColumnName = "suppGradeId";
- //
- // dataColumn52
- //
- this.dataColumn52.Caption = "采购员角色名称";
- this.dataColumn52.ColumnName = "BUYERROLENAME";
- //
- // dataColumn53
- //
- this.dataColumn53.Caption = "计划员角色名称";
- this.dataColumn53.ColumnName = "PLANNERROLENAME";
- //
- // dataColumn54
- //
- this.dataColumn54.ColumnName = "BUYERROLEID";
- //
- // dataColumn55
- //
- this.dataColumn55.Caption = "PLANNERROLEID";
- this.dataColumn55.ColumnName = "PLANNERROLEID";
- //
- // dataTable5
- //
- this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn85,
- this.dataColumn91});
- this.dataTable5.Constraints.AddRange(new System.Data.Constraint[] {
- new System.Data.UniqueConstraint("Constraint1", new string[] {
- "ITEMATTRCLASS"}, false)});
- this.dataTable5.TableName = "Table3";
- //
- // dataColumn85
- //
- this.dataColumn85.Caption = "属性分类编码";
- this.dataColumn85.ColumnName = "ITEMATTRCLASS";
- //
- // dataColumn91
- //
- this.dataColumn91.Caption = "属性分类名称";
- this.dataColumn91.ColumnName = "ITEMATTRCLASSNAME";
- //
- // dataTable6
- //
- this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn69,
- this.dataColumn70,
- this.dataColumn71,
- this.dataColumn72,
- this.dataColumn73,
- this.dataColumn74});
- this.dataTable6.TableName = "Table4";
- //
- // dataColumn69
- //
- this.dataColumn69.Caption = "采购标准编号";
- this.dataColumn69.ColumnName = "STANDARDSCODE";
- //
- // dataColumn70
- //
- this.dataColumn70.Caption = "是否常用";
- this.dataColumn70.ColumnName = "ISDEFAULT";
- //
- // dataColumn71
- //
- this.dataColumn71.Caption = "排序";
- this.dataColumn71.ColumnName = "ORDERNUM";
- //
- // dataColumn72
- //
- this.dataColumn72.Caption = "备注";
- this.dataColumn72.ColumnName = "REMARK";
- //
- // dataColumn73
- //
- this.dataColumn73.ColumnName = "ITEMSTANDARDSID";
- //
- // dataColumn74
- //
- this.dataColumn74.Caption = "采购标准ID";
- this.dataColumn74.ColumnName = "STANDARDSID";
- //
- // dataTable7
- //
- this.dataTable7.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn75,
- this.dataColumn76,
- this.dataColumn77,
- this.dataColumn78,
- this.dataColumn79,
- this.dataColumn80,
- this.dataColumn81,
- this.dataColumn82});
- this.dataTable7.TableName = "Table5";
- //
- // dataColumn75
- //
- this.dataColumn75.ColumnName = "ITEMUOMID";
- //
- // dataColumn76
- //
- this.dataColumn76.Caption = "采购单位编码";
- this.dataColumn76.ColumnName = "UOMCODE";
- //
- // dataColumn77
- //
- this.dataColumn77.Caption = "采购单位名称";
- this.dataColumn77.ColumnName = "UOMNAME";
- //
- // dataColumn78
- //
- this.dataColumn78.Caption = "转换系数";
- this.dataColumn78.ColumnName = "ITEMUOMCONEFFICIENT";
- //
- // dataColumn79
- //
- this.dataColumn79.Caption = "库存单位";
- this.dataColumn79.ColumnName = "WEIGHTUNIT";
- //
- // dataColumn80
- //
- this.dataColumn80.Caption = "库存单位编码";
- this.dataColumn80.ColumnName = "WEIGHTUNITCODE";
- //
- // dataColumn81
- //
- this.dataColumn81.Caption = "是否常用";
- this.dataColumn81.ColumnName = "ISDEFAULT";
- //
- // dataColumn82
- //
- this.dataColumn82.Caption = "备注";
- this.dataColumn82.ColumnName = "REMARK";
- //
- // dataTable8
- //
- this.dataTable8.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn86,
- this.dataColumn88,
- this.dataColumn90,
- this.dataColumn87});
- this.dataTable8.Constraints.AddRange(new System.Data.Constraint[] {
- new System.Data.ForeignKeyConstraint("Relation1", "Table3", new string[] {
- "ITEMATTRCLASS"}, new string[] {
- "ITEMATTRCLASS"}, System.Data.AcceptRejectRule.None, System.Data.Rule.Cascade, System.Data.Rule.Cascade)});
- this.dataTable8.TableName = "Table6";
- //
- // dataColumn86
- //
- this.dataColumn86.Caption = "属性编码(ID)";
- this.dataColumn86.ColumnName = "ITEMATTRID";
- //
- // dataColumn88
- //
- this.dataColumn88.Caption = "属性";
- this.dataColumn88.ColumnName = "ITEMATTR";
- //
- // dataColumn90
- //
- this.dataColumn90.ColumnName = "ITEMATTRCLASS";
- //
- // dataColumn87
- //
- this.dataColumn87.Caption = "属性编码";
- this.dataColumn87.ColumnName = "ITEMATTRCODE";
- //
- // ultraPanel4
- //
- //
- // ultraPanel4.ClientArea
- //
- this.ultraPanel4.ClientArea.Controls.Add(this.ultraButton1);
- this.ultraPanel4.ClientArea.Controls.Add(this.ultraTextEditor2);
- this.ultraPanel4.ClientArea.Controls.Add(this.ultraTextEditor1);
- this.ultraPanel4.ClientArea.Controls.Add(this.ultraLabel2);
- this.ultraPanel4.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraPanel4.Location = new System.Drawing.Point(3, 213);
- this.ultraPanel4.Name = "ultraPanel4";
- this.ultraPanel4.Size = new System.Drawing.Size(70, 56);
- this.ultraPanel4.TabIndex = 3;
- //
- // ultraButton1
- //
- this.ultraButton1.Location = new System.Drawing.Point(182, 27);
- this.ultraButton1.Name = "ultraButton1";
- this.ultraButton1.Size = new System.Drawing.Size(75, 26);
- this.ultraButton1.TabIndex = 4;
- this.ultraButton1.Text = "添加属性";
- this.ultraButton1.Click += new System.EventHandler(this.ultraButton1_Click);
- //
- // ultraTextEditor2
- //
- this.ultraTextEditor2.Location = new System.Drawing.Point(18, 27);
- this.ultraTextEditor2.Name = "ultraTextEditor2";
- this.ultraTextEditor2.Size = new System.Drawing.Size(54, 21);
- this.ultraTextEditor2.TabIndex = 3;
- this.ultraTextEditor2.Visible = false;
- //
- // ultraTextEditor1
- //
- appearance15.FontData.BoldAsString = "True";
- appearance15.TextHAlignAsString = "Center";
- appearance15.TextVAlignAsString = "Middle";
- editorButton1.Appearance = appearance15;
- editorButton1.Text = "+";
- this.ultraTextEditor1.ButtonsRight.Add(editorButton1);
- this.ultraTextEditor1.Location = new System.Drawing.Point(80, 6);
- this.ultraTextEditor1.Name = "ultraTextEditor1";
- this.ultraTextEditor1.ReadOnly = true;
- this.ultraTextEditor1.Size = new System.Drawing.Size(177, 21);
- this.ultraTextEditor1.TabIndex = 1;
- this.ultraTextEditor1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraTextEditor1_EditorButtonClick);
- //
- // ultraLabel2
- //
- appearance14.TextHAlignAsString = "Center";
- appearance14.TextVAlignAsString = "Middle";
- this.ultraLabel2.Appearance = appearance14;
- this.ultraLabel2.Location = new System.Drawing.Point(3, 5);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(76, 23);
- this.ultraLabel2.TabIndex = 2;
- this.ultraLabel2.Text = "增加属性";
- //
- // cmbNum
- //
- this.cmbNum.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem15.DataValue = "500";
- valueListItem15.DisplayText = "五百";
- valueListItem16.DataValue = "1000";
- valueListItem16.DisplayText = "一千";
- valueListItem17.DataValue = "2000";
- valueListItem17.DisplayText = "二千";
- valueListItem18.DataValue = "5000";
- valueListItem18.DisplayText = "五千";
- valueListItem19.DataValue = "";
- valueListItem19.DisplayText = "全部";
- this.cmbNum.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem15,
- valueListItem16,
- valueListItem17,
- valueListItem18,
- valueListItem19});
- this.cmbNum.Location = new System.Drawing.Point(745, 4);
- this.cmbNum.Name = "cmbNum";
- this.cmbNum.Size = new System.Drawing.Size(53, 21);
- this.cmbNum.TabIndex = 167;
- //
- // label65
- //
- this.label65.AutoSize = true;
- this.label65.Location = new System.Drawing.Point(801, 8);
- this.label65.Name = "label65";
- this.label65.Size = new System.Drawing.Size(41, 12);
- this.label65.TabIndex = 166;
- this.label65.Text = "条记录";
- //
- // label64
- //
- this.label64.AutoSize = true;
- this.label64.Location = new System.Drawing.Point(712, 8);
- this.label64.Name = "label64";
- this.label64.Size = new System.Drawing.Size(29, 12);
- this.label64.TabIndex = 165;
- this.label64.Text = "显示";
- //
- // ultraLabel1
- //
- this.ultraLabel1.AutoSize = true;
- this.ultraLabel1.Location = new System.Drawing.Point(221, 6);
- this.ultraLabel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel1.TabIndex = 12;
- this.ultraLabel1.Text = "物料名称";
- //
- // ultraLabel23
- //
- this.ultraLabel23.AutoSize = true;
- this.ultraLabel23.Location = new System.Drawing.Point(7, 6);
- this.ultraLabel23.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel23.Name = "ultraLabel23";
- this.ultraLabel23.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel23.TabIndex = 11;
- this.ultraLabel23.Text = "物料编码";
- //
- // txt_wlmc
- //
- this.txt_wlmc.Location = new System.Drawing.Point(278, 4);
- this.txt_wlmc.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_wlmc.Name = "txt_wlmc";
- this.txt_wlmc.Size = new System.Drawing.Size(82, 21);
- this.txt_wlmc.TabIndex = 8;
- //
- // txt_wlbm
- //
- this.txt_wlbm.Location = new System.Drawing.Point(64, 4);
- this.txt_wlbm.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_wlbm.Name = "txt_wlbm";
- this.txt_wlbm.Size = new System.Drawing.Size(153, 21);
- this.txt_wlbm.TabIndex = 7;
- //
- // 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.dataColumn19,
- this.dataColumn24,
- this.dataColumn26,
- this.dataColumn31,
- this.dataColumn37,
- this.dataColumn38,
- this.dataColumn39,
- this.dataColumn40,
- this.dataColumn41,
- this.dataColumn42,
- this.dataColumn20});
- this.dataTable2.TableName = "Table1";
- //
- // dataColumn19
- //
- this.dataColumn19.Caption = "物料编码";
- this.dataColumn19.ColumnName = "itemCode";
- //
- // dataColumn24
- //
- this.dataColumn24.Caption = "采购单位";
- this.dataColumn24.ColumnName = "itemUom";
- //
- // dataColumn26
- //
- this.dataColumn26.Caption = "转换系数";
- this.dataColumn26.ColumnName = "itemUomConefficient";
- //
- // dataColumn31
- //
- this.dataColumn31.Caption = "是否使用采购单位";
- this.dataColumn31.ColumnName = "itemUseUom";
- //
- // dataColumn37
- //
- this.dataColumn37.Caption = "属性";
- this.dataColumn37.ColumnName = "ITEMATTR";
- //
- // dataColumn38
- //
- this.dataColumn38.Caption = "排序";
- this.dataColumn38.ColumnName = "ORDERNUM";
- //
- // dataColumn39
- //
- this.dataColumn39.Caption = "物料属性1";
- this.dataColumn39.ColumnName = "ITEMATTR1";
- //
- // dataColumn40
- //
- this.dataColumn40.Caption = "物料属性2";
- this.dataColumn40.ColumnName = "ITEMATTR2";
- //
- // dataColumn41
- //
- this.dataColumn41.Caption = "物料属性3";
- this.dataColumn41.ColumnName = "ITEMATTR3";
- //
- // dataColumn42
- //
- this.dataColumn42.Caption = "物料属性4";
- this.dataColumn42.ColumnName = "ITEMATTR4";
- //
- // dataColumn20
- //
- this.dataColumn20.ColumnName = "ITEMATTRID";
- //
- // 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.dataColumn84,
- this.dataColumn56});
- this.dataTable1.TableName = "Table1";
- //
- // dataColumn1
- //
- this.dataColumn1.Caption = "物料编码";
- this.dataColumn1.ColumnName = "itemCode";
- //
- // dataColumn2
- //
- this.dataColumn2.Caption = "物料描述";
- this.dataColumn2.ColumnName = "itemDesc";
- //
- // dataColumn3
- //
- this.dataColumn3.Caption = "物料名称";
- this.dataColumn3.ColumnName = "itemName";
- //
- // dataColumn4
- //
- this.dataColumn4.Caption = "物料型号规格";
- this.dataColumn4.ColumnName = "itemSpec";
- //
- // dataColumn5
- //
- this.dataColumn5.Caption = "物料材质";
- this.dataColumn5.ColumnName = "itemModel";
- //
- // dataColumn6
- //
- this.dataColumn6.Caption = "采购单位";
- this.dataColumn6.ColumnName = "itemUom";
- //
- // dataColumn7
- //
- this.dataColumn7.Caption = "转换公式";
- this.dataColumn7.ColumnName = "itemUomFormula";
- //
- // dataColumn8
- //
- this.dataColumn8.Caption = "转换系数";
- this.dataColumn8.ColumnName = "itemUomConefficient";
- //
- // dataColumn9
- //
- this.dataColumn9.Caption = "计划价";
- this.dataColumn9.ColumnName = "bugPrice";
- //
- // dataColumn10
- //
- this.dataColumn10.Caption = "物料英文名称";
- this.dataColumn10.ColumnName = "ItemDescE";
- //
- // dataColumn11
- //
- this.dataColumn11.Caption = "库存单位";
- this.dataColumn11.ColumnName = "WeightUnit";
- //
- // dataColumn12
- //
- this.dataColumn12.Caption = "计价类型";
- this.dataColumn12.ColumnName = "PRICETYPE";
- //
- // dataColumn13
- //
- this.dataColumn13.Caption = "是否使用采购单位";
- this.dataColumn13.ColumnName = "itemUseUom";
- //
- // dataColumn14
- //
- this.dataColumn14.Caption = "采购管理部门代码";
- this.dataColumn14.ColumnName = "BuyerDeptCode";
- //
- // dataColumn15
- //
- this.dataColumn15.Caption = "采购管理部门描叙";
- this.dataColumn15.ColumnName = "BuyerDeptDesc";
- //
- // dataColumn16
- //
- this.dataColumn16.Caption = "采购管理科室代码";
- this.dataColumn16.ColumnName = "BuyerUnitCode";
- //
- // dataColumn17
- //
- this.dataColumn17.Caption = "采购管理科室描叙";
- this.dataColumn17.ColumnName = "BuyerUnitDesc";
- //
- // dataColumn18
- //
- this.dataColumn18.Caption = "入库类型";
- this.dataColumn18.ColumnName = "receiveType";
- //
- // dataColumn84
- //
- this.dataColumn84.Caption = "是否定额控制";
- this.dataColumn84.ColumnName = "isBudgetCtrl";
- //
- // dataColumn56
- //
- this.dataColumn56.ColumnName = "ARCCODE";
- //
- // ultraGroupBox2
- //
- this.ultraGroupBox2.Controls.Add(this.ultraPanel2);
- this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox2.Location = new System.Drawing.Point(0, 54);
- this.ultraGroupBox2.Name = "ultraGroupBox2";
- this.ultraGroupBox2.Size = new System.Drawing.Size(1234, 486);
- this.ultraGroupBox2.TabIndex = 3;
- this.ultraGroupBox2.Text = "物料管理";
- this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraPanel2
- //
- //
- // ultraPanel2.ClientArea
- //
- this.ultraPanel2.ClientArea.Controls.Add(this.tableLayoutPanel1);
- this.ultraPanel2.ClientArea.Controls.Add(this.ulTreeMat);
- this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel2.Location = new System.Drawing.Point(3, 18);
- this.ultraPanel2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraPanel2.Name = "ultraPanel2";
- this.ultraPanel2.Size = new System.Drawing.Size(1228, 465);
- this.ultraPanel2.TabIndex = 0;
- //
- // tableLayoutPanel1
- //
- this.tableLayoutPanel1.ColumnCount = 1;
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
- this.tableLayoutPanel1.Controls.Add(this.ultraPanel3, 0, 0);
- this.tableLayoutPanel1.Controls.Add(this.ultraGroupBox3, 0, 1);
- this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel1.Location = new System.Drawing.Point(205, 0);
- this.tableLayoutPanel1.Name = "tableLayoutPanel1";
- this.tableLayoutPanel1.RowCount = 2;
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 60F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 40F));
- this.tableLayoutPanel1.Size = new System.Drawing.Size(1023, 465);
- this.tableLayoutPanel1.TabIndex = 3;
- //
- // ultraPanel3
- //
- //
- // ultraPanel3.ClientArea
- //
- this.ultraPanel3.ClientArea.Controls.Add(this.ultraGroupBox1);
- this.ultraPanel3.ClientArea.Controls.Add(this.ultraGroupBox7);
- this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel3.Location = new System.Drawing.Point(3, 3);
- this.ultraPanel3.Name = "ultraPanel3";
- this.ultraPanel3.Size = new System.Drawing.Size(1017, 273);
- this.ultraPanel3.TabIndex = 169;
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(794, 273);
- this.ultraGroupBox1.TabIndex = 3;
- this.ultraGroupBox1.Text = "物料信息";
- this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraGrid1
- //
- this.ultraGrid1.DataMember = "Table1";
- this.ultraGrid1.DataSource = this.dataSet1;
- appearance1.BackColor = System.Drawing.SystemColors.Window;
- appearance1.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid1.DisplayLayout.Appearance = appearance1;
- ultraGridColumn6.Header.VisiblePosition = 0;
- ultraGridColumn6.Width = 131;
- ultraGridColumn7.Header.VisiblePosition = 2;
- ultraGridColumn7.Width = 112;
- ultraGridColumn8.Header.VisiblePosition = 1;
- ultraGridColumn8.Width = 193;
- ultraGridColumn9.Header.VisiblePosition = 3;
- ultraGridColumn9.Hidden = true;
- ultraGridColumn10.Header.VisiblePosition = 4;
- ultraGridColumn10.Hidden = true;
- ultraGridColumn11.Header.VisiblePosition = 5;
- ultraGridColumn11.Hidden = true;
- ultraGridColumn12.Header.VisiblePosition = 6;
- ultraGridColumn12.Hidden = true;
- ultraGridColumn13.Header.VisiblePosition = 7;
- ultraGridColumn13.Hidden = true;
- ultraGridColumn14.Header.VisiblePosition = 8;
- ultraGridColumn14.Width = 71;
- ultraGridColumn15.Header.VisiblePosition = 9;
- ultraGridColumn15.Hidden = true;
- ultraGridColumn16.Header.VisiblePosition = 10;
- ultraGridColumn16.Width = 72;
- ultraGridColumn17.Header.VisiblePosition = 11;
- ultraGridColumn17.Width = 85;
- ultraGridColumn18.Header.VisiblePosition = 12;
- ultraGridColumn18.Hidden = true;
- ultraGridColumn19.Header.VisiblePosition = 13;
- ultraGridColumn19.Hidden = true;
- ultraGridColumn20.Header.VisiblePosition = 14;
- ultraGridColumn20.Hidden = true;
- ultraGridColumn21.Header.VisiblePosition = 15;
- ultraGridColumn21.Hidden = true;
- ultraGridColumn22.Header.VisiblePosition = 16;
- ultraGridColumn22.Hidden = true;
- ultraGridColumn23.Header.VisiblePosition = 17;
- ultraGridColumn23.Hidden = true;
- ultraGridColumn24.Header.VisiblePosition = 18;
- ultraGridColumn24.Width = 68;
- ultraGridColumn25.Header.VisiblePosition = 19;
- ultraGridColumn25.Hidden = true;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8,
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20,
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23,
- ultraGridColumn24,
- ultraGridColumn25});
- this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance2.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance2.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance2.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance2.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance2;
- appearance3.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance3;
- this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance4.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance4.BackColor2 = System.Drawing.SystemColors.Control;
- appearance4.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance4.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance4;
- this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
- appearance5.BackColor = System.Drawing.SystemColors.Window;
- appearance5.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance5;
- appearance6.BackColor = System.Drawing.SystemColors.Highlight;
- appearance6.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance6;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance7.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance7;
- appearance8.BorderColor = System.Drawing.Color.Silver;
- appearance8.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance8;
- this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
- appearance9.BackColor = System.Drawing.SystemColors.Control;
- appearance9.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance9.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance9.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance9;
- appearance10.TextHAlignAsString = "Left";
- this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance10;
- this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance12.BackColor = System.Drawing.SystemColors.Window;
- appearance12.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance12;
- this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance23.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance23;
- 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.Location = new System.Drawing.Point(3, 18);
- this.ultraGrid1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraGrid1.Name = "ultraGrid1";
- this.ultraGrid1.Size = new System.Drawing.Size(788, 252);
- this.ultraGrid1.TabIndex = 2;
- this.ultraGrid1.Text = "ultraGrid1";
- this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
- this.ultraGrid1.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid1_ClickCell);
- //
- // ultraGroupBox7
- //
- this.ultraGroupBox7.Controls.Add(this.ultraTextEditor4);
- this.ultraGroupBox7.Controls.Add(this.ultraTextEditor6);
- this.ultraGroupBox7.Controls.Add(this.ultraTextEditor5);
- this.ultraGroupBox7.Controls.Add(this.ultraLabel3);
- this.ultraGroupBox7.Controls.Add(this.ultraGrid7);
- this.ultraGroupBox7.Dock = System.Windows.Forms.DockStyle.Right;
- this.ultraGroupBox7.Location = new System.Drawing.Point(794, 0);
- this.ultraGroupBox7.Name = "ultraGroupBox7";
- this.ultraGroupBox7.Size = new System.Drawing.Size(223, 273);
- this.ultraGroupBox7.TabIndex = 5;
- this.ultraGroupBox7.Text = "属性";
- //
- // ultraTextEditor4
- //
- this.ultraTextEditor4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- appearance13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance13.FontData.BoldAsString = "True";
- appearance13.ForeColor = System.Drawing.Color.Red;
- appearance13.TextVAlignAsString = "Middle";
- this.ultraTextEditor4.Appearance = appearance13;
- this.ultraTextEditor4.Location = new System.Drawing.Point(6, 244);
- this.ultraTextEditor4.Name = "ultraTextEditor4";
- this.ultraTextEditor4.Size = new System.Drawing.Size(214, 23);
- this.ultraTextEditor4.TabIndex = 9;
- this.ultraTextEditor4.MouseEnter += new System.EventHandler(this.ultraTextEditor4_MouseEnter);
- this.ultraTextEditor4.MouseHover += new System.EventHandler(this.ultraTextEditor4_MouseHover);
- this.ultraTextEditor4.MouseMove += new System.Windows.Forms.MouseEventHandler(this.ultraTextEditor4_MouseMove);
- //
- // ultraTextEditor6
- //
- this.ultraTextEditor6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.ultraTextEditor6.Location = new System.Drawing.Point(81, 220);
- this.ultraTextEditor6.Name = "ultraTextEditor6";
- this.ultraTextEditor6.ReadOnly = true;
- this.ultraTextEditor6.Size = new System.Drawing.Size(76, 21);
- this.ultraTextEditor6.TabIndex = 8;
- this.ultraTextEditor6.Visible = false;
- //
- // ultraTextEditor5
- //
- this.ultraTextEditor5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.ultraTextEditor5.Location = new System.Drawing.Point(144, 220);
- this.ultraTextEditor5.Name = "ultraTextEditor5";
- this.ultraTextEditor5.ReadOnly = true;
- this.ultraTextEditor5.Size = new System.Drawing.Size(76, 21);
- this.ultraTextEditor5.TabIndex = 7;
- this.ultraTextEditor5.Visible = false;
- //
- // ultraLabel3
- //
- this.ultraLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- appearance17.TextVAlignAsString = "Bottom";
- this.ultraLabel3.Appearance = appearance17;
- this.ultraLabel3.Location = new System.Drawing.Point(6, 217);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(100, 23);
- this.ultraLabel3.TabIndex = 6;
- this.ultraLabel3.Text = "所选属性:";
- //
- // ultraGrid7
- //
- this.ultraGrid7.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.ultraGrid7.DataMember = "Table3";
- this.ultraGrid7.DataSource = this.dataSet3;
- ultraGridColumn26.Header.VisiblePosition = 0;
- ultraGridColumn26.Hidden = true;
- ultraGridColumn26.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn27.Header.VisiblePosition = 1;
- ultraGridColumn27.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn27.Width = 126;
- ultraGridColumn28.Header.VisiblePosition = 2;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn26,
- ultraGridColumn27,
- ultraGridColumn28});
- ultraGridColumn29.Header.VisiblePosition = 0;
- ultraGridColumn29.Hidden = true;
- ultraGridColumn29.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn30.Header.VisiblePosition = 1;
- ultraGridColumn30.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(119, 0);
- ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn30.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn31.Header.VisiblePosition = 2;
- ultraGridColumn31.Hidden = true;
- ultraGridColumn31.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn32.Header.VisiblePosition = 3;
- ultraGridColumn32.Hidden = true;
- ultraGridColumn32.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn33.DataType = typeof(bool);
- ultraGridColumn33.DefaultCellValue = false;
- ultraGridColumn33.Header.Caption = "";
- ultraGridColumn33.Header.VisiblePosition = 4;
- ultraGridColumn33.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(17, 0);
- ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn33.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn33.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
- ultraGridBand4.Columns.AddRange(new object[] {
- ultraGridColumn29,
- ultraGridColumn30,
- ultraGridColumn31,
- ultraGridColumn32,
- ultraGridColumn33});
- ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid7.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.ultraGrid7.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
- this.ultraGrid7.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid7.Location = new System.Drawing.Point(6, 18);
- this.ultraGrid7.Name = "ultraGrid7";
- this.ultraGrid7.Size = new System.Drawing.Size(214, 198);
- this.ultraGrid7.TabIndex = 4;
- this.ultraGrid7.Text = "ultraGrid7";
- this.ultraGrid7.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid7_CellChange);
- //
- // ultraGroupBox3
- //
- this.ultraGroupBox3.Controls.Add(this.tableLayoutPanel2);
- this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox3.Location = new System.Drawing.Point(3, 282);
- this.ultraGroupBox3.Name = "ultraGroupBox3";
- this.ultraGroupBox3.Size = new System.Drawing.Size(1017, 180);
- this.ultraGroupBox3.TabIndex = 4;
- this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // tableLayoutPanel2
- //
- this.tableLayoutPanel2.ColumnCount = 2;
- this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 68.05144F));
- this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 31.94857F));
- this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
- this.tableLayoutPanel2.Controls.Add(this.ultraGroupBox4, 0, 0);
- this.tableLayoutPanel2.Controls.Add(this.ultraGroupBox5, 1, 0);
- this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 0);
- this.tableLayoutPanel2.Name = "tableLayoutPanel2";
- this.tableLayoutPanel2.RowCount = 1;
- this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayoutPanel2.Size = new System.Drawing.Size(1011, 177);
- this.tableLayoutPanel2.TabIndex = 0;
- //
- // ultraGroupBox4
- //
- this.ultraGroupBox4.Controls.Add(this.ultraGrid5);
- this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox4.Location = new System.Drawing.Point(3, 3);
- this.ultraGroupBox4.Name = "ultraGroupBox4";
- this.ultraGroupBox4.Size = new System.Drawing.Size(681, 171);
- this.ultraGroupBox4.TabIndex = 0;
- this.ultraGroupBox4.Text = "采购单位";
- this.ultraGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraGrid5
- //
- this.ultraGrid5.DataMember = "Table5";
- this.ultraGrid5.DataSource = this.dataSet3;
- ultraGridColumn34.Header.VisiblePosition = 1;
- ultraGridColumn34.Hidden = true;
- ultraGridColumn35.Header.VisiblePosition = 2;
- ultraGridColumn35.Hidden = true;
- ultraGridColumn36.Header.VisiblePosition = 3;
- ultraGridColumn36.Width = 86;
- ultraGridColumn37.Header.VisiblePosition = 4;
- ultraGridColumn37.Width = 70;
- ultraGridColumn38.Header.VisiblePosition = 5;
- ultraGridColumn38.Width = 75;
- ultraGridColumn39.Header.VisiblePosition = 6;
- ultraGridColumn39.Width = 105;
- ultraGridColumn40.Header.VisiblePosition = 7;
- ultraGridColumn40.Width = 73;
- ultraGridColumn41.Header.VisiblePosition = 8;
- ultraGridColumn41.Width = 240;
- ultraGridColumn42.DataType = typeof(bool);
- ultraGridColumn42.DefaultCellValue = false;
- ultraGridColumn42.Header.Caption = "选择";
- ultraGridColumn42.Header.VisiblePosition = 0;
- ultraGridColumn42.Hidden = true;
- ultraGridColumn42.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
- ultraGridBand5.Columns.AddRange(new object[] {
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41,
- ultraGridColumn42});
- this.ultraGrid5.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
- this.ultraGrid5.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid5.Location = new System.Drawing.Point(3, 18);
- this.ultraGrid5.Name = "ultraGrid5";
- this.ultraGrid5.Size = new System.Drawing.Size(675, 150);
- this.ultraGrid5.TabIndex = 1;
- this.ultraGrid5.Text = "ultraGrid5";
- this.ultraGrid5.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid5_CellChange);
- //
- // ultraGroupBox5
- //
- this.ultraGroupBox5.Controls.Add(this.ultraGrid4);
- this.ultraGroupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox5.Location = new System.Drawing.Point(690, 3);
- this.ultraGroupBox5.Name = "ultraGroupBox5";
- this.ultraGroupBox5.Size = new System.Drawing.Size(318, 171);
- this.ultraGroupBox5.TabIndex = 1;
- this.ultraGroupBox5.Text = "标准编号";
- this.ultraGroupBox5.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraGrid4
- //
- this.ultraGrid4.DataMember = "Table4";
- this.ultraGrid4.DataSource = this.dataSet3;
- ultraGridColumn43.Header.VisiblePosition = 0;
- ultraGridColumn43.Width = 99;
- ultraGridColumn44.Header.VisiblePosition = 3;
- ultraGridColumn44.Width = 74;
- ultraGridColumn45.Header.VisiblePosition = 4;
- ultraGridColumn45.Hidden = true;
- ultraGridColumn46.Header.VisiblePosition = 5;
- ultraGridColumn47.Header.VisiblePosition = 6;
- ultraGridColumn47.Hidden = true;
- ultraGridColumn48.Header.VisiblePosition = 2;
- ultraGridColumn48.Hidden = true;
- ultraGridColumn49.DataType = typeof(bool);
- ultraGridColumn49.DefaultCellValue = false;
- ultraGridColumn49.Header.Caption = "选择";
- ultraGridColumn49.Header.CheckBoxAlignment = Infragistics.Win.UltraWinGrid.HeaderCheckBoxAlignment.Center;
- ultraGridColumn49.Header.VisiblePosition = 1;
- ultraGridColumn49.Hidden = true;
- ultraGridColumn49.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
- ultraGridBand6.Columns.AddRange(new object[] {
- ultraGridColumn43,
- ultraGridColumn44,
- ultraGridColumn45,
- ultraGridColumn46,
- ultraGridColumn47,
- ultraGridColumn48,
- ultraGridColumn49});
- this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand6);
- this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid4.Location = new System.Drawing.Point(3, 18);
- this.ultraGrid4.Name = "ultraGrid4";
- this.ultraGrid4.Size = new System.Drawing.Size(312, 150);
- this.ultraGrid4.TabIndex = 1;
- this.ultraGrid4.Text = "ultraGrid4";
- this.ultraGrid4.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid4_CellChange);
- //
- // ulTreeMat
- //
- this.ulTreeMat.DisplayStyle = Infragistics.Win.UltraWinTree.UltraTreeDisplayStyle.WindowsVista;
- this.ulTreeMat.Dock = System.Windows.Forms.DockStyle.Left;
- this.ulTreeMat.Location = new System.Drawing.Point(0, 0);
- this.ulTreeMat.Name = "ulTreeMat";
- appearance26.BackColor = System.Drawing.Color.SkyBlue;
- _override1.ActiveNodeAppearance = appearance26;
- _override1.BorderStyleNode = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ulTreeMat.Override = _override1;
- this.ulTreeMat.Size = new System.Drawing.Size(205, 465);
- this.ulTreeMat.TabIndex = 1;
- this.ulTreeMat.AfterActivate += new Infragistics.Win.UltraWinTree.AfterNodeChangedEventHandler(this.ulTreeMat_AfterActivate);
- //
- // barsManagerButon
- //
- this.barsManagerButon.DesignerFlags = 1;
- this.barsManagerButon.DockWithinContainer = this;
- this.barsManagerButon.DockWithinContainerBaseType = typeof(CoreFS.CA06.FrmBase);
- this.barsManagerButon.MiniToolbar.ToolRowCount = 3;
- this.barsManagerButon.Office2007UICompatibility = false;
- ribbonTab1.Caption = "ribbon1";
- ribbonGroup1.Caption = "ribbonGroup1";
- ribbonGroup2.Caption = "ribbonGroup2";
- ribbonTab1.Groups.AddRange(new Infragistics.Win.UltraWinToolbars.RibbonGroup[] {
- ribbonGroup1,
- ribbonGroup2});
- this.barsManagerButon.Ribbon.NonInheritedRibbonTabs.AddRange(new Infragistics.Win.UltraWinToolbars.RibbonTab[] {
- ribbonTab1});
- this.barsManagerButon.ShowQuickCustomizeButton = false;
- ultraToolbar1.DockedColumn = 0;
- ultraToolbar1.DockedRow = 0;
- buttonTool5.InstanceProps.IsFirstInGroup = true;
- ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool2,
- buttonTool5});
- ultraToolbar1.Text = "UltraToolbar1";
- ultraToolbar1.Visible = false;
- ultraToolbar2.DockedColumn = 0;
- ultraToolbar2.DockedRow = 0;
- ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool1,
- buttonTool4,
- buttonTool16});
- ultraToolbar2.Text = "UltraToolbar2";
- this.barsManagerButon.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
- ultraToolbar1,
- ultraToolbar2});
- buttonTool6.SharedPropsInternal.Caption = "新增";
- buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool7.SharedPropsInternal.Caption = "删除";
- buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool8.SharedPropsInternal.Caption = "修改";
- buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool9.SharedPropsInternal.Caption = "查询";
- buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool10.SharedPropsInternal.Caption = "关闭";
- buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool12.SharedPropsInternal.Caption = "恢复";
- buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool3.SharedPropsInternal.Caption = "确认";
- buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance29.Image = ((object)(resources.GetObject("appearance29.Image")));
- buttonTool11.SharedPropsInternal.AppearancesSmall.Appearance = appearance29;
- buttonTool11.SharedPropsInternal.Caption = "查询";
- buttonTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance30.Image = ((object)(resources.GetObject("appearance30.Image")));
- buttonTool13.SharedPropsInternal.AppearancesSmall.Appearance = appearance30;
- buttonTool13.SharedPropsInternal.Caption = "关闭";
- buttonTool13.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance11.Image = ((object)(resources.GetObject("appearance11.Image")));
- buttonTool17.SharedPropsInternal.AppearancesSmall.Appearance = appearance11;
- buttonTool17.SharedPropsInternal.Caption = "确认";
- buttonTool17.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- this.barsManagerButon.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool6,
- buttonTool7,
- buttonTool8,
- buttonTool9,
- buttonTool10,
- buttonTool12,
- buttonTool3,
- buttonTool11,
- buttonTool13,
- buttonTool17});
- this.barsManagerButon.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.barsManagerButon_ToolClick);
- //
- // _Form1_Toolbars_Dock_Area_Top
- //
- this._Form1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._Form1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
- this._Form1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
- this._Form1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
- this._Form1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
- this._Form1_Toolbars_Dock_Area_Top.Name = "_Form1_Toolbars_Dock_Area_Top";
- this._Form1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1234, 24);
- this._Form1_Toolbars_Dock_Area_Top.ToolbarsManager = this.barsManagerButon;
- //
- // _Form1_Toolbars_Dock_Area_Bottom
- //
- this._Form1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._Form1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
- this._Form1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
- this._Form1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
- this._Form1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 540);
- this._Form1_Toolbars_Dock_Area_Bottom.Name = "_Form1_Toolbars_Dock_Area_Bottom";
- this._Form1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1234, 0);
- this._Form1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.barsManagerButon;
- //
- // _Form1_Toolbars_Dock_Area_Left
- //
- this._Form1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._Form1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
- this._Form1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
- this._Form1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
- this._Form1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 24);
- this._Form1_Toolbars_Dock_Area_Left.Name = "_Form1_Toolbars_Dock_Area_Left";
- this._Form1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 516);
- this._Form1_Toolbars_Dock_Area_Left.ToolbarsManager = this.barsManagerButon;
- //
- // _Form1_Toolbars_Dock_Area_Right
- //
- this._Form1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._Form1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
- this._Form1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
- this._Form1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
- this._Form1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1234, 24);
- this._Form1_Toolbars_Dock_Area_Right.Name = "_Form1_Toolbars_Dock_Area_Right";
- this._Form1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 516);
- this._Form1_Toolbars_Dock_Area_Right.ToolbarsManager = this.barsManagerButon;
- //
- // ultraToolTipManager1
- //
- this.ultraToolTipManager1.ContainingControl = this;
- //
- // FrmPurPlanMat
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1234, 540);
- this.Controls.Add(this.ultraGroupBox2);
- this.Controls.Add(this.ultraPanel1);
- this.Controls.Add(this._Form1_Toolbars_Dock_Area_Left);
- this.Controls.Add(this._Form1_Toolbars_Dock_Area_Right);
- this.Controls.Add(this._Form1_Toolbars_Dock_Area_Top);
- this.Controls.Add(this._Form1_Toolbars_Dock_Area_Bottom);
- this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.Name = "FrmPurPlanMat";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "物料选择";
- this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
- this.Load += new System.EventHandler(this.FrmPurPlanMat_Load);
- this.ultraPanel1.ClientArea.ResumeLayout(false);
- this.ultraPanel1.ClientArea.PerformLayout();
- this.ultraPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_ITEM)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_CODE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).EndInit();
- this.ultraGroupBox6.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).EndInit();
- this.ultraPanel4.ClientArea.ResumeLayout(false);
- this.ultraPanel4.ClientArea.PerformLayout();
- this.ultraPanel4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbNum)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_wlmc)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_wlbm)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
- this.ultraGroupBox2.ResumeLayout(false);
- this.ultraPanel2.ClientArea.ResumeLayout(false);
- this.ultraPanel2.ResumeLayout(false);
- this.tableLayoutPanel1.ResumeLayout(false);
- this.ultraPanel3.ClientArea.ResumeLayout(false);
- this.ultraPanel3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox7)).EndInit();
- this.ultraGroupBox7.ResumeLayout(false);
- this.ultraGroupBox7.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
- this.ultraGroupBox3.ResumeLayout(false);
- this.tableLayoutPanel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
- this.ultraGroupBox4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).EndInit();
- this.ultraGroupBox5.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ulTreeMat)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.barsManagerButon)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private Infragistics.Win.Misc.UltraPanel ultraPanel1;
- 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 Infragistics.Win.UltraWinEditors.UltraTextEditor txt_wlmc;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_wlbm;
- private System.Data.DataColumn dataColumn10;
- private System.Data.DataColumn dataColumn11;
- private System.Data.DataColumn dataColumn12;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel23;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
- 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 Infragistics.Win.UltraWinToolbars.UltraToolbarsManager barsManagerButon;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Left;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Right;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Top;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Bottom;
- private Infragistics.Win.Misc.UltraPanel ultraPanel2;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
- private Infragistics.Win.UltraWinTree.UltraTree ulTreeMat;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private System.Data.DataSet dataSet2;
- private System.Data.DataTable dataTable2;
- private System.Data.DataColumn dataColumn19;
- private System.Data.DataColumn dataColumn24;
- private System.Data.DataColumn dataColumn26;
- private System.Data.DataColumn dataColumn31;
- private System.Data.DataColumn dataColumn37;
- private System.Data.DataColumn dataColumn38;
- private System.Data.DataColumn dataColumn39;
- private System.Data.DataColumn dataColumn40;
- private System.Data.DataColumn dataColumn41;
- private System.Data.DataColumn dataColumn42;
- private System.Data.DataColumn dataColumn20;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox6;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox5;
- private System.Data.DataSet dataSet3;
- private System.Data.DataTable dataTable3;
- private System.Data.DataColumn dataColumn21;
- private System.Data.DataColumn dataColumn22;
- private System.Data.DataColumn dataColumn23;
- private System.Data.DataColumn dataColumn25;
- private System.Data.DataColumn dataColumn27;
- private System.Data.DataColumn dataColumn28;
- private System.Data.DataColumn dataColumn29;
- private System.Data.DataColumn dataColumn30;
- 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 dataColumn43;
- private System.Data.DataTable dataTable4;
- private System.Data.DataColumn dataColumn44;
- private System.Data.DataColumn dataColumn45;
- private System.Data.DataColumn dataColumn46;
- private System.Data.DataColumn dataColumn47;
- private System.Data.DataColumn dataColumn48;
- private System.Data.DataColumn dataColumn49;
- private System.Data.DataColumn dataColumn50;
- private System.Data.DataColumn dataColumn51;
- private System.Data.DataColumn dataColumn52;
- private System.Data.DataColumn dataColumn53;
- private System.Data.DataColumn dataColumn54;
- private System.Data.DataColumn dataColumn55;
- private System.Data.DataTable dataTable5;
- private System.Data.DataTable dataTable6;
- private System.Data.DataColumn dataColumn69;
- private System.Data.DataColumn dataColumn70;
- private System.Data.DataColumn dataColumn71;
- private System.Data.DataColumn dataColumn72;
- private System.Data.DataColumn dataColumn73;
- private System.Data.DataColumn dataColumn74;
- private System.Data.DataTable dataTable7;
- private System.Data.DataColumn dataColumn75;
- private System.Data.DataColumn dataColumn76;
- private System.Data.DataColumn dataColumn77;
- private System.Data.DataColumn dataColumn78;
- private System.Data.DataColumn dataColumn79;
- private System.Data.DataColumn dataColumn80;
- private System.Data.DataColumn dataColumn81;
- private System.Data.DataColumn dataColumn82;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid5;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbNum;
- private System.Windows.Forms.Label label65;
- private System.Windows.Forms.Label label64;
- private System.Data.DataColumn dataColumn84;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
- private Infragistics.Win.Misc.UltraPanel ultraPanel3;
- private System.Data.DataColumn dataColumn85;
- private System.Data.DataTable dataTable8;
- private System.Data.DataColumn dataColumn86;
- private System.Data.DataColumn dataColumn88;
- private System.Data.DataColumn dataColumn90;
- private System.Data.DataColumn dataColumn87;
- private System.Data.DataColumn dataColumn91;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
- private Infragistics.Win.Misc.UltraPanel ultraPanel4;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
- private Infragistics.Win.Misc.UltraButton ultraButton1;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox7;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid7;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor5;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
- private Infragistics.Win.Misc.UltraLabel ultraTextEditor4;
- private System.Data.DataColumn dataColumn56;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ARC_ITEM;
- private System.Windows.Forms.CheckBox checkBox1;
- private System.Windows.Forms.Label label66;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ARC_CODE;
- private Infragistics.Win.UltraWinToolTip.UltraToolTipManager ultraToolTipManager1;
- }
- }
|