| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046 |
- namespace Core.StlMes.Client.BuyBillet
- {
- partial class RptPVKFSetting
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- Infragistics.Win.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.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem31 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton2 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton3 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem35 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem36 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton4 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem32 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem33 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem34 = new Infragistics.Win.ValueListItem();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.uB_ImportData = new Infragistics.Win.Misc.UltraButton();
- this.uB_addkfqz = new Infragistics.Win.Misc.UltraButton();
- this.uB_addkf = new Infragistics.Win.Misc.UltraButton();
- this.uCb_kftype = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label1 = new System.Windows.Forms.Label();
- this.splitContainer2 = new System.Windows.Forms.SplitContainer();
- this.splitContainer4 = new System.Windows.Forms.SplitContainer();
- this.splitContainer5 = new System.Windows.Forms.SplitContainer();
- this.ultraGridkf = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.uEGB_kf = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.max_range = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.min_range = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.lab_kftype_name = new System.Windows.Forms.Label();
- this.uB_delete = new Infragistics.Win.Misc.UltraButton();
- this.uB_isvalid = new Infragistics.Win.Misc.UltraButton();
- this.isvalid = new System.Windows.Forms.Label();
- this.label17 = new System.Windows.Forms.Label();
- this.id = new System.Windows.Forms.Label();
- this.txt_kftype = new System.Windows.Forms.TextBox();
- this.uB_addkffgz = new Infragistics.Win.Misc.UltraButton();
- this.uB_addkffj = new Infragistics.Win.Misc.UltraButton();
- this.uB_savekf = new Infragistics.Win.Misc.UltraButton();
- this.cLB_processcode = new System.Windows.Forms.CheckedListBox();
- this.lab_qztypename = new System.Windows.Forms.Label();
- this.label7 = new System.Windows.Forms.Label();
- this.kf = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.label6 = new System.Windows.Forms.Label();
- this.qydate = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.label5 = new System.Windows.Forms.Label();
- this.label4 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.ultraExpandableGroupBox4 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel4 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.splitContainer8 = new System.Windows.Forms.SplitContainer();
- this.ultraGridkfqz = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.uEGB_qz = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel5 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.isvalidqz = new System.Windows.Forms.Label();
- this.uCb_kfqztype = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label18 = new System.Windows.Forms.Label();
- this.label25 = new System.Windows.Forms.Label();
- this.qz_id = new System.Windows.Forms.Label();
- this.lab_kfqztype_desc = new System.Windows.Forms.Label();
- this.uB_deleteqz = new Infragistics.Win.Misc.UltraButton();
- this.uB_isvalidqz = new Infragistics.Win.Misc.UltraButton();
- this.uB_saveqz = new Infragistics.Win.Misc.UltraButton();
- this.qz = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.qydateqz = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.label20 = new System.Windows.Forms.Label();
- this.label21 = new System.Windows.Forms.Label();
- this.splitContainer3 = new System.Windows.Forms.SplitContainer();
- this.splitContainer6 = new System.Windows.Forms.SplitContainer();
- this.ultraGridkffj = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.uEGB_fj = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.fj_value = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.lab_kftypefj_name = new System.Windows.Forms.Label();
- this.txt_kftypefj = new System.Windows.Forms.TextBox();
- this.label23 = new System.Windows.Forms.Label();
- this.lab_kdtypenamefj = new System.Windows.Forms.Label();
- this.uB_isvalidfj = new Infragistics.Win.Misc.UltraButton();
- this.isvalidfj = new System.Windows.Forms.Label();
- this.label28 = new System.Windows.Forms.Label();
- this.cLB_processcodefj = new System.Windows.Forms.CheckedListBox();
- this.label26 = new System.Windows.Forms.Label();
- this.uB_deletefj = new Infragistics.Win.Misc.UltraButton();
- this.fj_id = new System.Windows.Forms.Label();
- this.qydatefj = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.label16 = new System.Windows.Forms.Label();
- this.uB_savefj = new Infragistics.Win.Misc.UltraButton();
- this.label14 = new System.Windows.Forms.Label();
- this.label15 = new System.Windows.Forms.Label();
- this.uCb_fjtype = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label13 = new System.Windows.Forms.Label();
- this.splitContainer7 = new System.Windows.Forms.SplitContainer();
- this.ultraGridkffgz = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.uEGB_fgz = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel3 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.uCb_nowork_days = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.uCb_nowork_times = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.uB_savefgz = new Infragistics.Win.Misc.UltraButton();
- this.lab_kftypefgz_name = new System.Windows.Forms.Label();
- this.txt_kftypefgz = new System.Windows.Forms.TextBox();
- this.label24 = new System.Windows.Forms.Label();
- this.qydatefgz = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.label19 = new System.Windows.Forms.Label();
- this.isvalidfgz = new System.Windows.Forms.Label();
- this.label29 = new System.Windows.Forms.Label();
- this.uB_isvalidfgz = new Infragistics.Win.Misc.UltraButton();
- this.uB_deletefgz = new Infragistics.Win.Misc.UltraButton();
- this.fgz_id = new System.Windows.Forms.Label();
- this.txt_noworktime_desc = new System.Windows.Forms.TextBox();
- this.label12 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
- this.label10 = new System.Windows.Forms.Label();
- this.label9 = new System.Windows.Forms.Label();
- this.label8 = new System.Windows.Forms.Label();
- this.uCb_pline = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.uCb_processcode = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.uCb_kftype)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
- this.splitContainer2.Panel1.SuspendLayout();
- this.splitContainer2.Panel2.SuspendLayout();
- this.splitContainer2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).BeginInit();
- this.splitContainer4.Panel1.SuspendLayout();
- this.splitContainer4.Panel2.SuspendLayout();
- this.splitContainer4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer5)).BeginInit();
- this.splitContainer5.Panel1.SuspendLayout();
- this.splitContainer5.Panel2.SuspendLayout();
- this.splitContainer5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridkf)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uEGB_kf)).BeginInit();
- this.uEGB_kf.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.max_range)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.min_range)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.kf)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.qydate)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox4)).BeginInit();
- this.ultraExpandableGroupBox4.SuspendLayout();
- this.ultraExpandableGroupBoxPanel4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer8)).BeginInit();
- this.splitContainer8.Panel1.SuspendLayout();
- this.splitContainer8.Panel2.SuspendLayout();
- this.splitContainer8.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridkfqz)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uEGB_qz)).BeginInit();
- this.uEGB_qz.SuspendLayout();
- this.ultraExpandableGroupBoxPanel5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.uCb_kfqztype)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.qz)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.qydateqz)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
- this.splitContainer3.Panel1.SuspendLayout();
- this.splitContainer3.Panel2.SuspendLayout();
- this.splitContainer3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer6)).BeginInit();
- this.splitContainer6.Panel1.SuspendLayout();
- this.splitContainer6.Panel2.SuspendLayout();
- this.splitContainer6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridkffj)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uEGB_fj)).BeginInit();
- this.uEGB_fj.SuspendLayout();
- this.ultraExpandableGroupBoxPanel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.fj_value)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.qydatefj)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uCb_fjtype)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer7)).BeginInit();
- this.splitContainer7.Panel1.SuspendLayout();
- this.splitContainer7.Panel2.SuspendLayout();
- this.splitContainer7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridkffgz)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uEGB_fgz)).BeginInit();
- this.uEGB_fgz.SuspendLayout();
- this.ultraExpandableGroupBoxPanel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.uCb_nowork_days)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uCb_nowork_times)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.qydatefgz)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uCb_pline)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uCb_processcode)).BeginInit();
- this.SuspendLayout();
- //
- // splitContainer1
- //
- this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.Location = new System.Drawing.Point(0, 0);
- this.splitContainer1.Name = "splitContainer1";
- this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this.ultraGroupBox1);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
- this.splitContainer1.Size = new System.Drawing.Size(955, 663);
- this.splitContainer1.SplitterDistance = 44;
- this.splitContainer1.TabIndex = 0;
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.uB_ImportData);
- this.ultraGroupBox1.Controls.Add(this.uB_addkfqz);
- this.ultraGroupBox1.Controls.Add(this.uB_addkf);
- this.ultraGroupBox1.Controls.Add(this.uCb_kftype);
- this.ultraGroupBox1.Controls.Add(this.label1);
- 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(955, 44);
- this.ultraGroupBox1.TabIndex = 0;
- this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // uB_ImportData
- //
- this.uB_ImportData.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_ImportData.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_ImportData.Location = new System.Drawing.Point(550, 7);
- this.uB_ImportData.Name = "uB_ImportData";
- this.uB_ImportData.Size = new System.Drawing.Size(113, 26);
- this.uB_ImportData.TabIndex = 30;
- this.uB_ImportData.Text = "重新导入今天数据";
- this.uB_ImportData.UseMnemonic = false;
- this.uB_ImportData.Click += new System.EventHandler(this.uB_ImportData_Click);
- //
- // uB_addkfqz
- //
- this.uB_addkfqz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_addkfqz.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_addkfqz.Location = new System.Drawing.Point(438, 6);
- this.uB_addkfqz.Name = "uB_addkfqz";
- this.uB_addkfqz.Size = new System.Drawing.Size(95, 26);
- this.uB_addkfqz.TabIndex = 29;
- this.uB_addkfqz.Text = "新增扣分权重";
- this.uB_addkfqz.UseMnemonic = false;
- this.uB_addkfqz.Click += new System.EventHandler(this.uB_addkfqz_Click);
- //
- // uB_addkf
- //
- this.uB_addkf.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_addkf.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_addkf.Location = new System.Drawing.Point(227, 8);
- this.uB_addkf.Name = "uB_addkf";
- this.uB_addkf.Size = new System.Drawing.Size(75, 26);
- this.uB_addkf.TabIndex = 26;
- this.uB_addkf.Text = "新增扣分";
- this.uB_addkf.UseMnemonic = false;
- this.uB_addkf.Click += new System.EventHandler(this.uB_addkf_Click);
- //
- // uCb_kftype
- //
- valueListItem15.DataValue = "ls_dc";
- valueListItem15.DisplayText = "流速-待产";
- valueListItem16.DataValue = "ls_qx";
- valueListItem16.DisplayText = "流速-清线";
- valueListItem17.DataValue = "ls_dpsp";
- valueListItem17.DisplayText = "流速-待判-送判";
- valueListItem18.DataValue = "ls_dppd";
- valueListItem18.DisplayText = "流速-待判-判定";
- valueListItem19.DataValue = "ls_lxwt";
- valueListItem19.DisplayText = "流速-离线-委托";
- valueListItem29.DataValue = "ls_lxfx";
- valueListItem29.DisplayText = "流速-离线-返线";
- valueListItem30.DataValue = "ls_lxfxjcx";
- valueListItem30.DisplayText = "流速-离线-返线(仅除锈)";
- valueListItem31.DataValue = "ls_fp";
- valueListItem31.DisplayText = "流速-废品";
- this.uCb_kftype.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem15,
- valueListItem16,
- valueListItem17,
- valueListItem18,
- valueListItem19,
- valueListItem29,
- valueListItem30,
- valueListItem31});
- this.uCb_kftype.Location = new System.Drawing.Point(100, 11);
- this.uCb_kftype.Name = "uCb_kftype";
- this.uCb_kftype.Size = new System.Drawing.Size(122, 21);
- this.uCb_kftype.TabIndex = 8;
- this.uCb_kftype.SelectionChanged += new System.EventHandler(this.uCb_kftype_SelectionChanged);
- this.uCb_kftype.TextChanged += new System.EventHandler(this.uCb_kftype_TextChanged);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(12, 17);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(89, 12);
- this.label1.TabIndex = 6;
- this.label1.Text = "流速扣分类型:";
- //
- // splitContainer2
- //
- this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer2.Location = new System.Drawing.Point(0, 0);
- this.splitContainer2.Name = "splitContainer2";
- //
- // splitContainer2.Panel1
- //
- this.splitContainer2.Panel1.Controls.Add(this.splitContainer4);
- //
- // splitContainer2.Panel2
- //
- this.splitContainer2.Panel2.Controls.Add(this.splitContainer3);
- this.splitContainer2.Size = new System.Drawing.Size(955, 615);
- this.splitContainer2.SplitterDistance = 519;
- this.splitContainer2.TabIndex = 0;
- //
- // splitContainer4
- //
- this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer4.Location = new System.Drawing.Point(0, 0);
- this.splitContainer4.Name = "splitContainer4";
- this.splitContainer4.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer4.Panel1
- //
- this.splitContainer4.Panel1.Controls.Add(this.splitContainer5);
- //
- // splitContainer4.Panel2
- //
- this.splitContainer4.Panel2.Controls.Add(this.ultraExpandableGroupBox4);
- this.splitContainer4.Size = new System.Drawing.Size(519, 615);
- this.splitContainer4.SplitterDistance = 359;
- this.splitContainer4.TabIndex = 2;
- //
- // splitContainer5
- //
- this.splitContainer5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer5.Location = new System.Drawing.Point(0, 0);
- this.splitContainer5.Name = "splitContainer5";
- this.splitContainer5.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer5.Panel1
- //
- this.splitContainer5.Panel1.Controls.Add(this.ultraGridkf);
- //
- // splitContainer5.Panel2
- //
- this.splitContainer5.Panel2.Controls.Add(this.uEGB_kf);
- this.splitContainer5.Size = new System.Drawing.Size(519, 359);
- this.splitContainer5.SplitterDistance = 157;
- this.splitContainer5.TabIndex = 0;
- //
- // ultraGridkf
- //
- appearance1.BackColor = System.Drawing.SystemColors.Window;
- appearance1.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGridkf.DisplayLayout.Appearance = appearance1;
- this.ultraGridkf.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGridkf.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.ultraGridkf.DisplayLayout.GroupByBox.Appearance = appearance2;
- appearance4.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGridkf.DisplayLayout.GroupByBox.BandLabelAppearance = appearance4;
- this.ultraGridkf.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance3.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance3.BackColor2 = System.Drawing.SystemColors.Control;
- appearance3.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance3.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGridkf.DisplayLayout.GroupByBox.PromptAppearance = appearance3;
- this.ultraGridkf.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGridkf.DisplayLayout.MaxRowScrollRegions = 1;
- appearance7.BackColor = System.Drawing.SystemColors.Window;
- appearance7.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGridkf.DisplayLayout.Override.ActiveCellAppearance = appearance7;
- appearance10.BackColor = System.Drawing.SystemColors.Highlight;
- appearance10.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGridkf.DisplayLayout.Override.ActiveRowAppearance = appearance10;
- this.ultraGridkf.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGridkf.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance12.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGridkf.DisplayLayout.Override.CardAreaAppearance = appearance12;
- appearance8.BorderColor = System.Drawing.Color.Silver;
- appearance8.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGridkf.DisplayLayout.Override.CellAppearance = appearance8;
- this.ultraGridkf.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGridkf.DisplayLayout.Override.CellPadding = 0;
- appearance6.BackColor = System.Drawing.SystemColors.Control;
- appearance6.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance6.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance6.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGridkf.DisplayLayout.Override.GroupByRowAppearance = appearance6;
- appearance5.TextHAlignAsString = "Left";
- this.ultraGridkf.DisplayLayout.Override.HeaderAppearance = appearance5;
- this.ultraGridkf.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGridkf.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance11.BackColor = System.Drawing.SystemColors.Window;
- appearance11.BorderColor = System.Drawing.Color.Silver;
- this.ultraGridkf.DisplayLayout.Override.RowAppearance = appearance11;
- this.ultraGridkf.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGridkf.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- appearance9.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGridkf.DisplayLayout.Override.TemplateAddRowAppearance = appearance9;
- this.ultraGridkf.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGridkf.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGridkf.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGridkf.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGridkf.Location = new System.Drawing.Point(0, 0);
- this.ultraGridkf.Name = "ultraGridkf";
- this.ultraGridkf.Size = new System.Drawing.Size(519, 157);
- this.ultraGridkf.TabIndex = 0;
- this.ultraGridkf.Text = "ultraGrid1";
- this.ultraGridkf.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGridkf_AfterSelectChange);
- this.ultraGridkf.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGridkf_ClickCell);
- //
- // uEGB_kf
- //
- this.uEGB_kf.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.uEGB_kf.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uEGB_kf.ExpandedSize = new System.Drawing.Size(519, 198);
- this.uEGB_kf.Location = new System.Drawing.Point(0, 0);
- this.uEGB_kf.Name = "uEGB_kf";
- this.uEGB_kf.Size = new System.Drawing.Size(519, 198);
- this.uEGB_kf.TabIndex = 1;
- this.uEGB_kf.Text = "扣分编辑区";
- this.uEGB_kf.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.max_range);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.min_range);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.lab_kftype_name);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.uB_delete);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.uB_isvalid);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.isvalid);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label17);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.id);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_kftype);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.uB_addkffgz);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.uB_addkffj);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.uB_savekf);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cLB_processcode);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.lab_qztypename);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label7);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.kf);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label6);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.qydate);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label5);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label4);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label3);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label2);
- this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 20);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(513, 175);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- //
- // max_range
- //
- appearance54.TextHAlignAsString = "Right";
- this.max_range.Appearance = appearance54;
- this.max_range.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.max_range.Location = new System.Drawing.Point(177, 60);
- this.max_range.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.max_range.MaxValue = 100;
- this.max_range.MinValue = 0;
- this.max_range.Name = "max_range";
- this.max_range.Nullable = true;
- this.max_range.ShowInkButton = Infragistics.Win.ShowInkButton.Always;
- this.max_range.Size = new System.Drawing.Size(64, 21);
- this.max_range.SpinButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.OnMouseEnter;
- this.max_range.SpinWrap = true;
- this.max_range.TabIndex = 36;
- this.max_range.ValueChanged += new System.EventHandler(this.max_range_ValueChanged);
- //
- // min_range
- //
- appearance55.TextHAlignAsString = "Right";
- this.min_range.Appearance = appearance55;
- this.min_range.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.min_range.Location = new System.Drawing.Point(52, 60);
- this.min_range.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.min_range.MaxValue = 100;
- this.min_range.MinValue = 0;
- this.min_range.Name = "min_range";
- this.min_range.ShowInkButton = Infragistics.Win.ShowInkButton.Always;
- this.min_range.Size = new System.Drawing.Size(64, 21);
- this.min_range.SpinButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.OnMouseEnter;
- this.min_range.SpinWrap = true;
- this.min_range.TabIndex = 35;
- this.min_range.ValueChanged += new System.EventHandler(this.min_range_ValueChanged);
- //
- // lab_kftype_name
- //
- this.lab_kftype_name.AutoSize = true;
- this.lab_kftype_name.Location = new System.Drawing.Point(225, 12);
- this.lab_kftype_name.Name = "lab_kftype_name";
- this.lab_kftype_name.Size = new System.Drawing.Size(95, 12);
- this.lab_kftype_name.TabIndex = 34;
- this.lab_kftype_name.Text = "txt_kftype_name";
- //
- // uB_delete
- //
- this.uB_delete.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_delete.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_delete.Location = new System.Drawing.Point(452, 92);
- this.uB_delete.Name = "uB_delete";
- this.uB_delete.Size = new System.Drawing.Size(46, 25);
- this.uB_delete.TabIndex = 33;
- this.uB_delete.Text = "删除";
- this.uB_delete.Click += new System.EventHandler(this.uB_delete_Click);
- //
- // uB_isvalid
- //
- this.uB_isvalid.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_isvalid.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_isvalid.Location = new System.Drawing.Point(452, 59);
- this.uB_isvalid.Name = "uB_isvalid";
- this.uB_isvalid.Size = new System.Drawing.Size(46, 25);
- this.uB_isvalid.TabIndex = 32;
- this.uB_isvalid.Text = "启用";
- this.uB_isvalid.Click += new System.EventHandler(this.uB_isvalid_Click);
- //
- // isvalid
- //
- this.isvalid.AutoSize = true;
- this.isvalid.Location = new System.Drawing.Point(73, 90);
- this.isvalid.Name = "isvalid";
- this.isvalid.Size = new System.Drawing.Size(47, 12);
- this.isvalid.TabIndex = 31;
- this.isvalid.Text = "isvalid";
- this.isvalid.TextChanged += new System.EventHandler(this.isvalid_TextChanged);
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.Location = new System.Drawing.Point(10, 90);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(65, 12);
- this.label17.TabIndex = 30;
- this.label17.Text = "是否有效:";
- //
- // id
- //
- this.id.AutoSize = true;
- this.id.Location = new System.Drawing.Point(293, 66);
- this.id.Name = "id";
- this.id.Size = new System.Drawing.Size(17, 12);
- this.id.TabIndex = 29;
- this.id.Text = "id";
- this.id.Visible = false;
- this.id.TextChanged += new System.EventHandler(this.id_TextChanged);
- //
- // txt_kftype
- //
- this.txt_kftype.Location = new System.Drawing.Point(97, 6);
- this.txt_kftype.Name = "txt_kftype";
- this.txt_kftype.ReadOnly = true;
- this.txt_kftype.Size = new System.Drawing.Size(121, 21);
- this.txt_kftype.TabIndex = 28;
- this.txt_kftype.TextChanged += new System.EventHandler(this.txt_kftype_TextChanged);
- //
- // uB_addkffgz
- //
- this.uB_addkffgz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_addkffgz.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_addkffgz.Location = new System.Drawing.Point(265, 85);
- this.uB_addkffgz.Name = "uB_addkffgz";
- this.uB_addkffgz.Size = new System.Drawing.Size(82, 26);
- this.uB_addkffgz.TabIndex = 27;
- this.uB_addkffgz.Text = "新增附加项2";
- this.uB_addkffgz.Click += new System.EventHandler(this.uB_addkffgz_Click);
- //
- // uB_addkffj
- //
- this.uB_addkffj.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_addkffj.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_addkffj.Location = new System.Drawing.Point(178, 85);
- this.uB_addkffj.Name = "uB_addkffj";
- this.uB_addkffj.Size = new System.Drawing.Size(82, 25);
- this.uB_addkffj.TabIndex = 26;
- this.uB_addkffj.Text = "新增附加项1";
- this.uB_addkffj.Click += new System.EventHandler(this.uB_addkffj_Click);
- //
- // uB_savekf
- //
- this.uB_savekf.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_savekf.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_savekf.Location = new System.Drawing.Point(452, 25);
- this.uB_savekf.Name = "uB_savekf";
- this.uB_savekf.Size = new System.Drawing.Size(46, 25);
- this.uB_savekf.TabIndex = 25;
- this.uB_savekf.Text = "保存";
- this.uB_savekf.Click += new System.EventHandler(this.uB_savekf_Click);
- //
- // cLB_processcode
- //
- this.cLB_processcode.FormattingEnabled = true;
- this.cLB_processcode.Items.AddRange(new object[] {
- "B",
- "D",
- "E",
- "F",
- "G"});
- this.cLB_processcode.Location = new System.Drawing.Point(363, 32);
- this.cLB_processcode.Name = "cLB_processcode";
- this.cLB_processcode.Size = new System.Drawing.Size(83, 84);
- this.cLB_processcode.TabIndex = 19;
- //
- // lab_qztypename
- //
- this.lab_qztypename.AutoSize = true;
- this.lab_qztypename.Location = new System.Drawing.Point(39, 114);
- this.lab_qztypename.Name = "lab_qztypename";
- this.lab_qztypename.Size = new System.Drawing.Size(77, 12);
- this.lab_qztypename.TabIndex = 23;
- this.lab_qztypename.Text = "扣分类型说明";
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(10, 66);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(41, 12);
- this.label7.TabIndex = 22;
- this.label7.Text = "范围:";
- //
- // kf
- //
- appearance52.TextHAlignAsString = "Right";
- this.kf.Appearance = appearance52;
- this.kf.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.kf.Location = new System.Drawing.Point(51, 32);
- this.kf.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.kf.MaxValue = 10;
- this.kf.MinValue = 0;
- this.kf.Name = "kf";
- this.kf.ShowInkButton = Infragistics.Win.ShowInkButton.Always;
- this.kf.Size = new System.Drawing.Size(64, 21);
- this.kf.SpinButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.OnMouseEnter;
- this.kf.SpinWrap = true;
- this.kf.TabIndex = 21;
- this.kf.ValueChanged += new System.EventHandler(this.kf_ValueChanged);
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(293, 38);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(77, 12);
- this.label6.TabIndex = 20;
- this.label6.Text = "适用大工序:";
- //
- // qydate
- //
- this.qydate.DateButtons.Add(dateButton1);
- this.qydate.Location = new System.Drawing.Point(177, 32);
- this.qydate.Name = "qydate";
- this.qydate.NonAutoSizeHeight = 21;
- this.qydate.Size = new System.Drawing.Size(83, 21);
- this.qydate.TabIndex = 18;
- this.qydate.Value = "2020-04-01 0:00:00";
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(121, 38);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(65, 12);
- this.label5.TabIndex = 17;
- this.label5.Text = "启用日期:";
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(125, 66);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(47, 12);
- this.label4.TabIndex = 16;
- this.label4.Text = "≤天数<";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(10, 38);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(41, 12);
- this.label3.TabIndex = 11;
- this.label3.Text = "扣分:";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(9, 12);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(89, 12);
- this.label2.TabIndex = 9;
- this.label2.Text = "流速扣分类型:";
- //
- // ultraExpandableGroupBox4
- //
- this.ultraExpandableGroupBox4.Controls.Add(this.ultraExpandableGroupBoxPanel4);
- this.ultraExpandableGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBox4.ExpandedSize = new System.Drawing.Size(519, 252);
- this.ultraExpandableGroupBox4.Location = new System.Drawing.Point(0, 0);
- this.ultraExpandableGroupBox4.Name = "ultraExpandableGroupBox4";
- this.ultraExpandableGroupBox4.Size = new System.Drawing.Size(519, 252);
- this.ultraExpandableGroupBox4.TabIndex = 0;
- this.ultraExpandableGroupBox4.Text = "流速扣分权重维护";
- this.ultraExpandableGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraExpandableGroupBoxPanel4
- //
- this.ultraExpandableGroupBoxPanel4.Controls.Add(this.splitContainer8);
- this.ultraExpandableGroupBoxPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel4.Location = new System.Drawing.Point(3, 20);
- this.ultraExpandableGroupBoxPanel4.Name = "ultraExpandableGroupBoxPanel4";
- this.ultraExpandableGroupBoxPanel4.Size = new System.Drawing.Size(513, 229);
- this.ultraExpandableGroupBoxPanel4.TabIndex = 0;
- //
- // splitContainer8
- //
- this.splitContainer8.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer8.Location = new System.Drawing.Point(0, 0);
- this.splitContainer8.Name = "splitContainer8";
- this.splitContainer8.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer8.Panel1
- //
- this.splitContainer8.Panel1.Controls.Add(this.ultraGridkfqz);
- //
- // splitContainer8.Panel2
- //
- this.splitContainer8.Panel2.AutoScroll = true;
- this.splitContainer8.Panel2.Controls.Add(this.uEGB_qz);
- this.splitContainer8.Size = new System.Drawing.Size(513, 229);
- this.splitContainer8.SplitterDistance = 116;
- this.splitContainer8.TabIndex = 0;
- //
- // ultraGridkfqz
- //
- appearance38.BackColor = System.Drawing.SystemColors.Window;
- appearance38.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGridkfqz.DisplayLayout.Appearance = appearance38;
- this.ultraGridkfqz.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGridkfqz.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance39.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance39.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance39.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance39.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGridkfqz.DisplayLayout.GroupByBox.Appearance = appearance39;
- appearance41.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGridkfqz.DisplayLayout.GroupByBox.BandLabelAppearance = appearance41;
- this.ultraGridkfqz.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance40.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance40.BackColor2 = System.Drawing.SystemColors.Control;
- appearance40.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance40.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGridkfqz.DisplayLayout.GroupByBox.PromptAppearance = appearance40;
- this.ultraGridkfqz.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGridkfqz.DisplayLayout.MaxRowScrollRegions = 1;
- appearance44.BackColor = System.Drawing.SystemColors.Window;
- appearance44.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGridkfqz.DisplayLayout.Override.ActiveCellAppearance = appearance44;
- appearance47.BackColor = System.Drawing.SystemColors.Highlight;
- appearance47.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGridkfqz.DisplayLayout.Override.ActiveRowAppearance = appearance47;
- this.ultraGridkfqz.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGridkfqz.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance49.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGridkfqz.DisplayLayout.Override.CardAreaAppearance = appearance49;
- appearance45.BorderColor = System.Drawing.Color.Silver;
- appearance45.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGridkfqz.DisplayLayout.Override.CellAppearance = appearance45;
- this.ultraGridkfqz.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGridkfqz.DisplayLayout.Override.CellPadding = 0;
- appearance43.BackColor = System.Drawing.SystemColors.Control;
- appearance43.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance43.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance43.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance43.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGridkfqz.DisplayLayout.Override.GroupByRowAppearance = appearance43;
- appearance42.TextHAlignAsString = "Left";
- this.ultraGridkfqz.DisplayLayout.Override.HeaderAppearance = appearance42;
- this.ultraGridkfqz.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGridkfqz.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance48.BackColor = System.Drawing.SystemColors.Window;
- appearance48.BorderColor = System.Drawing.Color.Silver;
- this.ultraGridkfqz.DisplayLayout.Override.RowAppearance = appearance48;
- this.ultraGridkfqz.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGridkfqz.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- appearance46.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGridkfqz.DisplayLayout.Override.TemplateAddRowAppearance = appearance46;
- this.ultraGridkfqz.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGridkfqz.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGridkfqz.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGridkfqz.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGridkfqz.Location = new System.Drawing.Point(0, 0);
- this.ultraGridkfqz.Name = "ultraGridkfqz";
- this.ultraGridkfqz.Size = new System.Drawing.Size(513, 116);
- this.ultraGridkfqz.TabIndex = 0;
- this.ultraGridkfqz.Text = "ultraGrid1";
- this.ultraGridkfqz.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGridkfqz_AfterSelectChange);
- this.ultraGridkfqz.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGridkfqz_ClickCell);
- //
- // uEGB_qz
- //
- this.uEGB_qz.Controls.Add(this.ultraExpandableGroupBoxPanel5);
- this.uEGB_qz.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uEGB_qz.ExpandedSize = new System.Drawing.Size(513, 109);
- this.uEGB_qz.Location = new System.Drawing.Point(0, 0);
- this.uEGB_qz.Name = "uEGB_qz";
- this.uEGB_qz.Size = new System.Drawing.Size(513, 109);
- this.uEGB_qz.TabIndex = 0;
- this.uEGB_qz.Text = "流速扣分权重编辑区";
- this.uEGB_qz.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraExpandableGroupBoxPanel5
- //
- this.ultraExpandableGroupBoxPanel5.Controls.Add(this.isvalidqz);
- this.ultraExpandableGroupBoxPanel5.Controls.Add(this.uCb_kfqztype);
- this.ultraExpandableGroupBoxPanel5.Controls.Add(this.label18);
- this.ultraExpandableGroupBoxPanel5.Controls.Add(this.label25);
- this.ultraExpandableGroupBoxPanel5.Controls.Add(this.qz_id);
- this.ultraExpandableGroupBoxPanel5.Controls.Add(this.lab_kfqztype_desc);
- this.ultraExpandableGroupBoxPanel5.Controls.Add(this.uB_deleteqz);
- this.ultraExpandableGroupBoxPanel5.Controls.Add(this.uB_isvalidqz);
- this.ultraExpandableGroupBoxPanel5.Controls.Add(this.uB_saveqz);
- this.ultraExpandableGroupBoxPanel5.Controls.Add(this.qz);
- this.ultraExpandableGroupBoxPanel5.Controls.Add(this.qydateqz);
- this.ultraExpandableGroupBoxPanel5.Controls.Add(this.label20);
- this.ultraExpandableGroupBoxPanel5.Controls.Add(this.label21);
- this.ultraExpandableGroupBoxPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel5.Location = new System.Drawing.Point(3, 20);
- this.ultraExpandableGroupBoxPanel5.Name = "ultraExpandableGroupBoxPanel5";
- this.ultraExpandableGroupBoxPanel5.Size = new System.Drawing.Size(507, 86);
- this.ultraExpandableGroupBoxPanel5.TabIndex = 0;
- //
- // isvalidqz
- //
- this.isvalidqz.AutoSize = true;
- this.isvalidqz.Location = new System.Drawing.Point(378, 40);
- this.isvalidqz.Name = "isvalidqz";
- this.isvalidqz.Size = new System.Drawing.Size(65, 12);
- this.isvalidqz.TabIndex = 48;
- this.isvalidqz.Text = "isvalid_qz";
- this.isvalidqz.TextChanged += new System.EventHandler(this.isvalidqz_TextChanged);
- //
- // uCb_kfqztype
- //
- valueListItem8.DataValue = "DC";
- valueListItem8.DisplayText = "待产";
- valueListItem9.DataValue = "QX";
- valueListItem9.DisplayText = "清线";
- valueListItem10.DataValue = "DSP";
- valueListItem10.DisplayText = "待判-送判";
- valueListItem11.DataValue = "DPD";
- valueListItem11.DisplayText = "待判-判定";
- valueListItem12.DataValue = "LXWT";
- valueListItem12.DisplayText = "离线-委托";
- valueListItem13.DataValue = "LXFX";
- valueListItem13.DisplayText = "离线-返线";
- valueListItem14.DataValue = "FP";
- valueListItem14.DisplayText = "废品";
- this.uCb_kfqztype.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem8,
- valueListItem9,
- valueListItem10,
- valueListItem11,
- valueListItem12,
- valueListItem13,
- valueListItem14});
- this.uCb_kfqztype.Location = new System.Drawing.Point(117, 8);
- this.uCb_kfqztype.Name = "uCb_kfqztype";
- this.uCb_kfqztype.Size = new System.Drawing.Size(122, 21);
- this.uCb_kfqztype.TabIndex = 28;
- this.uCb_kfqztype.SelectionChanged += new System.EventHandler(this.uCb_kfqztype_SelectionChanged);
- this.uCb_kfqztype.TextChanged += new System.EventHandler(this.uCb_kfqztype_TextChanged);
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.Location = new System.Drawing.Point(8, 12);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(113, 12);
- this.label18.TabIndex = 27;
- this.label18.Text = "流速扣分权重类型:";
- //
- // label25
- //
- this.label25.AutoSize = true;
- this.label25.Location = new System.Drawing.Point(315, 40);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(65, 12);
- this.label25.TabIndex = 47;
- this.label25.Text = "是否有效:";
- //
- // qz_id
- //
- this.qz_id.AutoSize = true;
- this.qz_id.Location = new System.Drawing.Point(292, 39);
- this.qz_id.Name = "qz_id";
- this.qz_id.Size = new System.Drawing.Size(17, 12);
- this.qz_id.TabIndex = 46;
- this.qz_id.Text = "id";
- this.qz_id.Visible = false;
- this.qz_id.TextChanged += new System.EventHandler(this.qz_id_TextChanged);
- //
- // lab_kfqztype_desc
- //
- this.lab_kfqztype_desc.AutoSize = true;
- this.lab_kfqztype_desc.Location = new System.Drawing.Point(8, 65);
- this.lab_kfqztype_desc.Name = "lab_kfqztype_desc";
- this.lab_kfqztype_desc.Size = new System.Drawing.Size(77, 12);
- this.lab_kfqztype_desc.TabIndex = 45;
- this.lab_kfqztype_desc.Text = "扣分权重说明";
- //
- // uB_deleteqz
- //
- this.uB_deleteqz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_deleteqz.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_deleteqz.Location = new System.Drawing.Point(397, 7);
- this.uB_deleteqz.Name = "uB_deleteqz";
- this.uB_deleteqz.Size = new System.Drawing.Size(46, 25);
- this.uB_deleteqz.TabIndex = 44;
- this.uB_deleteqz.Text = "删除";
- this.uB_deleteqz.Click += new System.EventHandler(this.uB_deleteqz_Click);
- //
- // uB_isvalidqz
- //
- this.uB_isvalidqz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_isvalidqz.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_isvalidqz.Location = new System.Drawing.Point(334, 7);
- this.uB_isvalidqz.Name = "uB_isvalidqz";
- this.uB_isvalidqz.Size = new System.Drawing.Size(46, 25);
- this.uB_isvalidqz.TabIndex = 43;
- this.uB_isvalidqz.Text = "启用";
- this.uB_isvalidqz.Click += new System.EventHandler(this.uB_isvalidqz_Click);
- //
- // uB_saveqz
- //
- this.uB_saveqz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_saveqz.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_saveqz.Location = new System.Drawing.Point(271, 7);
- this.uB_saveqz.Name = "uB_saveqz";
- this.uB_saveqz.Size = new System.Drawing.Size(46, 25);
- this.uB_saveqz.TabIndex = 42;
- this.uB_saveqz.Text = "保存";
- this.uB_saveqz.Click += new System.EventHandler(this.uB_saveqz_Click);
- //
- // qz
- //
- appearance37.TextHAlignAsString = "Right";
- this.qz.Appearance = appearance37;
- this.qz.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.qz.Location = new System.Drawing.Point(48, 34);
- this.qz.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.qz.MaxValue = 100;
- this.qz.MinValue = 0;
- this.qz.Name = "qz";
- this.qz.ShowInkButton = Infragistics.Win.ShowInkButton.Always;
- this.qz.Size = new System.Drawing.Size(64, 21);
- this.qz.SpinButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.OnMouseEnter;
- this.qz.SpinWrap = true;
- this.qz.TabIndex = 39;
- this.qz.ValueChanged += new System.EventHandler(this.qz_ValueChanged);
- //
- // qydateqz
- //
- this.qydateqz.DateButtons.Add(dateButton2);
- this.qydateqz.Location = new System.Drawing.Point(197, 34);
- this.qydateqz.Name = "qydateqz";
- this.qydateqz.NonAutoSizeHeight = 21;
- this.qydateqz.Size = new System.Drawing.Size(83, 21);
- this.qydateqz.TabIndex = 38;
- this.qydateqz.Value = "2020-04-01 0:00:00";
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.Location = new System.Drawing.Point(131, 40);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(65, 12);
- this.label20.TabIndex = 37;
- this.label20.Text = "启用日期:";
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.Location = new System.Drawing.Point(8, 40);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(41, 12);
- this.label21.TabIndex = 36;
- this.label21.Text = "权重:";
- //
- // splitContainer3
- //
- this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer3.Location = new System.Drawing.Point(0, 0);
- this.splitContainer3.Name = "splitContainer3";
- this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer3.Panel1
- //
- this.splitContainer3.Panel1.Controls.Add(this.splitContainer6);
- //
- // splitContainer3.Panel2
- //
- this.splitContainer3.Panel2.Controls.Add(this.splitContainer7);
- this.splitContainer3.Size = new System.Drawing.Size(432, 615);
- this.splitContainer3.SplitterDistance = 311;
- this.splitContainer3.TabIndex = 0;
- //
- // splitContainer6
- //
- this.splitContainer6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer6.Location = new System.Drawing.Point(0, 0);
- this.splitContainer6.Name = "splitContainer6";
- this.splitContainer6.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer6.Panel1
- //
- this.splitContainer6.Panel1.Controls.Add(this.ultraGridkffj);
- //
- // splitContainer6.Panel2
- //
- this.splitContainer6.Panel2.AutoScroll = true;
- this.splitContainer6.Panel2.Controls.Add(this.uEGB_fj);
- this.splitContainer6.Size = new System.Drawing.Size(432, 311);
- this.splitContainer6.SplitterDistance = 122;
- this.splitContainer6.TabIndex = 3;
- //
- // ultraGridkffj
- //
- appearance25.BackColor = System.Drawing.SystemColors.Window;
- appearance25.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGridkffj.DisplayLayout.Appearance = appearance25;
- this.ultraGridkffj.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGridkffj.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance26.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance26.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance26.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance26.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGridkffj.DisplayLayout.GroupByBox.Appearance = appearance26;
- appearance27.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGridkffj.DisplayLayout.GroupByBox.BandLabelAppearance = appearance27;
- this.ultraGridkffj.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance28.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance28.BackColor2 = System.Drawing.SystemColors.Control;
- appearance28.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance28.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGridkffj.DisplayLayout.GroupByBox.PromptAppearance = appearance28;
- this.ultraGridkffj.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGridkffj.DisplayLayout.MaxRowScrollRegions = 1;
- appearance29.BackColor = System.Drawing.SystemColors.Window;
- appearance29.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGridkffj.DisplayLayout.Override.ActiveCellAppearance = appearance29;
- appearance30.BackColor = System.Drawing.SystemColors.Highlight;
- appearance30.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGridkffj.DisplayLayout.Override.ActiveRowAppearance = appearance30;
- this.ultraGridkffj.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGridkffj.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance31.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGridkffj.DisplayLayout.Override.CardAreaAppearance = appearance31;
- appearance32.BorderColor = System.Drawing.Color.Silver;
- appearance32.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGridkffj.DisplayLayout.Override.CellAppearance = appearance32;
- this.ultraGridkffj.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGridkffj.DisplayLayout.Override.CellPadding = 0;
- appearance33.BackColor = System.Drawing.SystemColors.Control;
- appearance33.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance33.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance33.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance33.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGridkffj.DisplayLayout.Override.GroupByRowAppearance = appearance33;
- appearance34.TextHAlignAsString = "Left";
- this.ultraGridkffj.DisplayLayout.Override.HeaderAppearance = appearance34;
- this.ultraGridkffj.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGridkffj.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance35.BackColor = System.Drawing.SystemColors.Window;
- appearance35.BorderColor = System.Drawing.Color.Silver;
- this.ultraGridkffj.DisplayLayout.Override.RowAppearance = appearance35;
- this.ultraGridkffj.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGridkffj.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- appearance36.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGridkffj.DisplayLayout.Override.TemplateAddRowAppearance = appearance36;
- this.ultraGridkffj.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGridkffj.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGridkffj.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGridkffj.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGridkffj.Location = new System.Drawing.Point(0, 0);
- this.ultraGridkffj.Name = "ultraGridkffj";
- this.ultraGridkffj.Size = new System.Drawing.Size(432, 122);
- this.ultraGridkffj.TabIndex = 0;
- this.ultraGridkffj.Text = "ultraGrid2";
- this.ultraGridkffj.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGridkffj_AfterSelectChange);
- this.ultraGridkffj.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGridkffj_ClickCell);
- //
- // uEGB_fj
- //
- this.uEGB_fj.Controls.Add(this.ultraExpandableGroupBoxPanel2);
- this.uEGB_fj.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uEGB_fj.ExpandedSize = new System.Drawing.Size(432, 185);
- this.uEGB_fj.Location = new System.Drawing.Point(0, 0);
- this.uEGB_fj.Name = "uEGB_fj";
- this.uEGB_fj.Size = new System.Drawing.Size(432, 185);
- this.uEGB_fj.TabIndex = 2;
- this.uEGB_fj.Text = "附加项1编辑区";
- this.uEGB_fj.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraExpandableGroupBoxPanel2
- //
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.fj_value);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.lab_kftypefj_name);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.txt_kftypefj);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label23);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.lab_kdtypenamefj);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.uB_isvalidfj);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.isvalidfj);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label28);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.cLB_processcodefj);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label26);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.uB_deletefj);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.fj_id);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.qydatefj);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label16);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.uB_savefj);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label14);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label15);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.uCb_fjtype);
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label13);
- this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 20);
- this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
- this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(426, 162);
- this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
- //
- // fj_value
- //
- appearance50.TextHAlignAsString = "Right";
- this.fj_value.Appearance = appearance50;
- this.fj_value.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.fj_value.Location = new System.Drawing.Point(209, 33);
- this.fj_value.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.fj_value.MaxValue = 100;
- this.fj_value.MinValue = 0;
- this.fj_value.Name = "fj_value";
- this.fj_value.Nullable = true;
- this.fj_value.ShowInkButton = Infragistics.Win.ShowInkButton.Always;
- this.fj_value.Size = new System.Drawing.Size(64, 21);
- this.fj_value.SpinButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.OnMouseEnter;
- this.fj_value.SpinWrap = true;
- this.fj_value.TabIndex = 44;
- this.fj_value.ValueChanged += new System.EventHandler(this.fj_value_ValueChanged);
- //
- // lab_kftypefj_name
- //
- this.lab_kftypefj_name.AutoSize = true;
- this.lab_kftypefj_name.Location = new System.Drawing.Point(224, 15);
- this.lab_kftypefj_name.Name = "lab_kftypefj_name";
- this.lab_kftypefj_name.Size = new System.Drawing.Size(107, 12);
- this.lab_kftypefj_name.TabIndex = 43;
- this.lab_kftypefj_name.Text = "lab_kftypefj_name";
- //
- // txt_kftypefj
- //
- this.txt_kftypefj.Location = new System.Drawing.Point(96, 9);
- this.txt_kftypefj.Name = "txt_kftypefj";
- this.txt_kftypefj.ReadOnly = true;
- this.txt_kftypefj.Size = new System.Drawing.Size(121, 21);
- this.txt_kftypefj.TabIndex = 42;
- this.txt_kftypefj.TextChanged += new System.EventHandler(this.txt_kftypefj_TextChanged);
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.Location = new System.Drawing.Point(8, 15);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(89, 12);
- this.label23.TabIndex = 41;
- this.label23.Text = "流速扣分类型:";
- //
- // lab_kdtypenamefj
- //
- this.lab_kdtypenamefj.AutoSize = true;
- this.lab_kdtypenamefj.Location = new System.Drawing.Point(32, 106);
- this.lab_kdtypenamefj.Name = "lab_kdtypenamefj";
- this.lab_kdtypenamefj.Size = new System.Drawing.Size(65, 12);
- this.lab_kdtypenamefj.TabIndex = 40;
- this.lab_kdtypenamefj.Text = "附加项说明";
- //
- // uB_isvalidfj
- //
- this.uB_isvalidfj.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_isvalidfj.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_isvalidfj.Location = new System.Drawing.Point(333, 81);
- this.uB_isvalidfj.Name = "uB_isvalidfj";
- this.uB_isvalidfj.Size = new System.Drawing.Size(46, 25);
- this.uB_isvalidfj.TabIndex = 39;
- this.uB_isvalidfj.Text = "启用";
- this.uB_isvalidfj.Click += new System.EventHandler(this.uB_isvalidfj_Click);
- //
- // isvalidfj
- //
- this.isvalidfj.AutoSize = true;
- this.isvalidfj.Location = new System.Drawing.Point(72, 86);
- this.isvalidfj.Name = "isvalidfj";
- this.isvalidfj.Size = new System.Drawing.Size(47, 12);
- this.isvalidfj.TabIndex = 38;
- this.isvalidfj.Text = "isvalid";
- this.isvalidfj.TextChanged += new System.EventHandler(this.isvalidfj_TextChanged);
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.Location = new System.Drawing.Point(9, 86);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(65, 12);
- this.label28.TabIndex = 37;
- this.label28.Text = "是否有效:";
- //
- // cLB_processcodefj
- //
- this.cLB_processcodefj.FormattingEnabled = true;
- this.cLB_processcodefj.Items.AddRange(new object[] {
- "B",
- "D",
- "E",
- "F",
- "G"});
- this.cLB_processcodefj.Location = new System.Drawing.Point(244, 58);
- this.cLB_processcodefj.Name = "cLB_processcodefj";
- this.cLB_processcodefj.Size = new System.Drawing.Size(83, 84);
- this.cLB_processcodefj.TabIndex = 35;
- //
- // label26
- //
- this.label26.AutoSize = true;
- this.label26.Location = new System.Drawing.Point(173, 64);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(77, 12);
- this.label26.TabIndex = 36;
- this.label26.Text = "适用大工序:";
- //
- // uB_deletefj
- //
- this.uB_deletefj.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_deletefj.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_deletefj.Location = new System.Drawing.Point(333, 117);
- this.uB_deletefj.Name = "uB_deletefj";
- this.uB_deletefj.Size = new System.Drawing.Size(46, 25);
- this.uB_deletefj.TabIndex = 34;
- this.uB_deletefj.Text = "删除";
- this.uB_deletefj.Click += new System.EventHandler(this.uB_deletefj_Click);
- //
- // fj_id
- //
- this.fj_id.AutoSize = true;
- this.fj_id.Location = new System.Drawing.Point(296, 35);
- this.fj_id.Name = "fj_id";
- this.fj_id.Size = new System.Drawing.Size(17, 12);
- this.fj_id.TabIndex = 30;
- this.fj_id.Text = "id";
- this.fj_id.Visible = false;
- this.fj_id.TextChanged += new System.EventHandler(this.fj_id_TextChanged);
- //
- // qydatefj
- //
- this.qydatefj.DateButtons.Add(dateButton3);
- this.qydatefj.Location = new System.Drawing.Point(75, 58);
- this.qydatefj.Name = "qydatefj";
- this.qydatefj.NonAutoSizeHeight = 21;
- this.qydatefj.Size = new System.Drawing.Size(83, 21);
- this.qydatefj.TabIndex = 29;
- this.qydatefj.Value = "2020-04-01 0:00:00";
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.Location = new System.Drawing.Point(8, 64);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(65, 12);
- this.label16.TabIndex = 28;
- this.label16.Text = "启用日期:";
- //
- // uB_savefj
- //
- this.uB_savefj.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_savefj.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_savefj.Location = new System.Drawing.Point(333, 50);
- this.uB_savefj.Name = "uB_savefj";
- this.uB_savefj.Size = new System.Drawing.Size(46, 25);
- this.uB_savefj.TabIndex = 27;
- this.uB_savefj.Text = "保存";
- this.uB_savefj.Click += new System.EventHandler(this.uB_savefj_Click);
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Location = new System.Drawing.Point(273, 38);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(17, 12);
- this.label14.TabIndex = 22;
- this.label14.Text = "天";
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.Location = new System.Drawing.Point(165, 38);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(41, 12);
- this.label15.TabIndex = 20;
- this.label15.Text = "增加:";
- //
- // uCb_fjtype
- //
- this.uCb_fjtype.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- valueListItem20.DataValue = "SSC";
- valueListItem20.DisplayText = "SSC试验";
- valueListItem21.DataValue = "HIC";
- valueListItem21.DisplayText = "HIC试验";
- this.uCb_fjtype.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem20,
- valueListItem21});
- this.uCb_fjtype.Location = new System.Drawing.Point(46, 33);
- this.uCb_fjtype.Name = "uCb_fjtype";
- this.uCb_fjtype.Size = new System.Drawing.Size(113, 21);
- this.uCb_fjtype.TabIndex = 12;
- this.uCb_fjtype.SelectionChanged += new System.EventHandler(this.uCb_fjtype_SelectionChanged);
- this.uCb_fjtype.TextChanged += new System.EventHandler(this.uCb_fjtype_TextChanged);
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.Location = new System.Drawing.Point(9, 38);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(41, 12);
- this.label13.TabIndex = 11;
- this.label13.Text = "类型:";
- //
- // splitContainer7
- //
- this.splitContainer7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer7.Location = new System.Drawing.Point(0, 0);
- this.splitContainer7.Name = "splitContainer7";
- this.splitContainer7.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer7.Panel1
- //
- this.splitContainer7.Panel1.Controls.Add(this.ultraGridkffgz);
- //
- // splitContainer7.Panel2
- //
- this.splitContainer7.Panel2.AutoScroll = true;
- this.splitContainer7.Panel2.Controls.Add(this.uEGB_fgz);
- this.splitContainer7.Size = new System.Drawing.Size(432, 300);
- this.splitContainer7.SplitterDistance = 113;
- this.splitContainer7.TabIndex = 4;
- //
- // ultraGridkffgz
- //
- appearance13.BackColor = System.Drawing.SystemColors.Window;
- appearance13.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGridkffgz.DisplayLayout.Appearance = appearance13;
- this.ultraGridkffgz.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGridkffgz.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance14.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance14.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance14.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGridkffgz.DisplayLayout.GroupByBox.Appearance = appearance14;
- appearance16.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGridkffgz.DisplayLayout.GroupByBox.BandLabelAppearance = appearance16;
- this.ultraGridkffgz.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance15.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance15.BackColor2 = System.Drawing.SystemColors.Control;
- appearance15.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance15.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGridkffgz.DisplayLayout.GroupByBox.PromptAppearance = appearance15;
- this.ultraGridkffgz.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGridkffgz.DisplayLayout.MaxRowScrollRegions = 1;
- appearance19.BackColor = System.Drawing.SystemColors.Window;
- appearance19.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGridkffgz.DisplayLayout.Override.ActiveCellAppearance = appearance19;
- appearance22.BackColor = System.Drawing.SystemColors.Highlight;
- appearance22.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGridkffgz.DisplayLayout.Override.ActiveRowAppearance = appearance22;
- this.ultraGridkffgz.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGridkffgz.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance24.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGridkffgz.DisplayLayout.Override.CardAreaAppearance = appearance24;
- appearance20.BorderColor = System.Drawing.Color.Silver;
- appearance20.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGridkffgz.DisplayLayout.Override.CellAppearance = appearance20;
- this.ultraGridkffgz.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGridkffgz.DisplayLayout.Override.CellPadding = 0;
- appearance18.BackColor = System.Drawing.SystemColors.Control;
- appearance18.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance18.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance18.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGridkffgz.DisplayLayout.Override.GroupByRowAppearance = appearance18;
- appearance17.TextHAlignAsString = "Left";
- this.ultraGridkffgz.DisplayLayout.Override.HeaderAppearance = appearance17;
- this.ultraGridkffgz.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGridkffgz.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance23.BackColor = System.Drawing.SystemColors.Window;
- appearance23.BorderColor = System.Drawing.Color.Silver;
- this.ultraGridkffgz.DisplayLayout.Override.RowAppearance = appearance23;
- this.ultraGridkffgz.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGridkffgz.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- appearance21.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGridkffgz.DisplayLayout.Override.TemplateAddRowAppearance = appearance21;
- this.ultraGridkffgz.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGridkffgz.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGridkffgz.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGridkffgz.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGridkffgz.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGridkffgz.Location = new System.Drawing.Point(0, 0);
- this.ultraGridkffgz.Name = "ultraGridkffgz";
- this.ultraGridkffgz.Size = new System.Drawing.Size(432, 113);
- this.ultraGridkffgz.TabIndex = 1;
- this.ultraGridkffgz.Text = "ultraGrid3";
- this.ultraGridkffgz.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGridkffgz_AfterSelectChange);
- this.ultraGridkffgz.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGridkffgz_ClickCell);
- //
- // uEGB_fgz
- //
- this.uEGB_fgz.Controls.Add(this.ultraExpandableGroupBoxPanel3);
- this.uEGB_fgz.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uEGB_fgz.ExpandedSize = new System.Drawing.Size(432, 183);
- this.uEGB_fgz.Location = new System.Drawing.Point(0, 0);
- this.uEGB_fgz.Name = "uEGB_fgz";
- this.uEGB_fgz.Size = new System.Drawing.Size(432, 183);
- this.uEGB_fgz.TabIndex = 3;
- this.uEGB_fgz.Text = "附加项2编辑区";
- this.uEGB_fgz.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraExpandableGroupBoxPanel3
- //
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.uCb_nowork_days);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.uCb_nowork_times);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.uB_savefgz);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.lab_kftypefgz_name);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.txt_kftypefgz);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label24);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.qydatefgz);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label19);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.isvalidfgz);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label29);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.uB_isvalidfgz);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.uB_deletefgz);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.fgz_id);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.txt_noworktime_desc);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label12);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label11);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label10);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label9);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label8);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.uCb_pline);
- this.ultraExpandableGroupBoxPanel3.Controls.Add(this.uCb_processcode);
- this.ultraExpandableGroupBoxPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel3.Location = new System.Drawing.Point(3, 20);
- this.ultraExpandableGroupBoxPanel3.Name = "ultraExpandableGroupBoxPanel3";
- this.ultraExpandableGroupBoxPanel3.Size = new System.Drawing.Size(426, 160);
- this.ultraExpandableGroupBoxPanel3.TabIndex = 0;
- //
- // uCb_nowork_days
- //
- this.uCb_nowork_days.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- valueListItem22.DataValue = "1";
- valueListItem22.DisplayText = "星期一";
- valueListItem23.DataValue = "2";
- valueListItem23.DisplayText = "星期二";
- valueListItem24.DataValue = "3";
- valueListItem24.DisplayText = "星期三";
- valueListItem25.DataValue = "4";
- valueListItem25.DisplayText = "星期四";
- valueListItem26.DataValue = "5";
- valueListItem26.DisplayText = "星期五";
- valueListItem35.DataValue = "6";
- valueListItem35.DisplayText = "星期六";
- valueListItem36.DataValue = "7";
- valueListItem36.DisplayText = "星期日";
- this.uCb_nowork_days.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem22,
- valueListItem23,
- valueListItem24,
- valueListItem25,
- valueListItem26,
- valueListItem35,
- valueListItem36});
- this.uCb_nowork_days.Location = new System.Drawing.Point(53, 58);
- this.uCb_nowork_days.Name = "uCb_nowork_days";
- this.uCb_nowork_days.Size = new System.Drawing.Size(68, 21);
- this.uCb_nowork_days.TabIndex = 50;
- this.uCb_nowork_days.SelectionChanged += new System.EventHandler(this.uCb_nowork_days_SelectionChanged);
- this.uCb_nowork_days.TextChanged += new System.EventHandler(this.uCb_nowork_days_TextChanged);
- //
- // uCb_nowork_times
- //
- appearance53.TextHAlignAsString = "Right";
- this.uCb_nowork_times.Appearance = appearance53;
- this.uCb_nowork_times.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.uCb_nowork_times.Location = new System.Drawing.Point(169, 58);
- this.uCb_nowork_times.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.uCb_nowork_times.MaxValue = 23;
- this.uCb_nowork_times.MinValue = 0;
- this.uCb_nowork_times.Name = "uCb_nowork_times";
- this.uCb_nowork_times.Nullable = true;
- this.uCb_nowork_times.ShowInkButton = Infragistics.Win.ShowInkButton.Always;
- this.uCb_nowork_times.Size = new System.Drawing.Size(64, 21);
- this.uCb_nowork_times.SpinButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.OnMouseEnter;
- this.uCb_nowork_times.SpinWrap = true;
- this.uCb_nowork_times.TabIndex = 49;
- this.uCb_nowork_times.ValueChanged += new System.EventHandler(this.uCb_nowork_times_ValueChanged);
- //
- // uB_savefgz
- //
- this.uB_savefgz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_savefgz.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_savefgz.Location = new System.Drawing.Point(316, 32);
- this.uB_savefgz.Name = "uB_savefgz";
- this.uB_savefgz.Size = new System.Drawing.Size(46, 25);
- this.uB_savefgz.TabIndex = 26;
- this.uB_savefgz.Text = "保存";
- this.uB_savefgz.Click += new System.EventHandler(this.uB_savefgz_Click);
- //
- // lab_kftypefgz_name
- //
- this.lab_kftypefgz_name.AutoSize = true;
- this.lab_kftypefgz_name.Location = new System.Drawing.Point(224, 12);
- this.lab_kftypefgz_name.Name = "lab_kftypefgz_name";
- this.lab_kftypefgz_name.Size = new System.Drawing.Size(113, 12);
- this.lab_kftypefgz_name.TabIndex = 47;
- this.lab_kftypefgz_name.Text = "lab_kftypefgz_name";
- //
- // txt_kftypefgz
- //
- this.txt_kftypefgz.Location = new System.Drawing.Point(96, 8);
- this.txt_kftypefgz.Name = "txt_kftypefgz";
- this.txt_kftypefgz.ReadOnly = true;
- this.txt_kftypefgz.Size = new System.Drawing.Size(121, 21);
- this.txt_kftypefgz.TabIndex = 46;
- this.txt_kftypefgz.TextChanged += new System.EventHandler(this.txt_kftypefgz_TextChanged);
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Location = new System.Drawing.Point(8, 12);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(89, 12);
- this.label24.TabIndex = 45;
- this.label24.Text = "流速扣分类型:";
- //
- // qydatefgz
- //
- this.qydatefgz.DateButtons.Add(dateButton4);
- this.qydatefgz.Location = new System.Drawing.Point(207, 82);
- this.qydatefgz.Name = "qydatefgz";
- this.qydatefgz.NonAutoSizeHeight = 21;
- this.qydatefgz.Size = new System.Drawing.Size(83, 21);
- this.qydatefgz.TabIndex = 44;
- this.qydatefgz.Value = "2020-04-01 0:00:00";
- //
- // label19
- //
- this.label19.AutoSize = true;
- this.label19.Location = new System.Drawing.Point(136, 88);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(65, 12);
- this.label19.TabIndex = 43;
- this.label19.Text = "启用日期:";
- //
- // isvalidfgz
- //
- this.isvalidfgz.AutoSize = true;
- this.isvalidfgz.Location = new System.Drawing.Point(69, 88);
- this.isvalidfgz.Name = "isvalidfgz";
- this.isvalidfgz.Size = new System.Drawing.Size(47, 12);
- this.isvalidfgz.TabIndex = 42;
- this.isvalidfgz.Text = "isvalid";
- this.isvalidfgz.TextChanged += new System.EventHandler(this.isvalidfgz_TextChanged);
- //
- // label29
- //
- this.label29.AutoSize = true;
- this.label29.Location = new System.Drawing.Point(6, 88);
- this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(65, 12);
- this.label29.TabIndex = 41;
- this.label29.Text = "是否有效:";
- //
- // uB_isvalidfgz
- //
- this.uB_isvalidfgz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_isvalidfgz.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_isvalidfgz.Location = new System.Drawing.Point(316, 70);
- this.uB_isvalidfgz.Name = "uB_isvalidfgz";
- this.uB_isvalidfgz.Size = new System.Drawing.Size(46, 25);
- this.uB_isvalidfgz.TabIndex = 40;
- this.uB_isvalidfgz.Text = "启用";
- this.uB_isvalidfgz.Click += new System.EventHandler(this.uB_isvalidfgz_Click);
- //
- // uB_deletefgz
- //
- this.uB_deletefgz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
- this.uB_deletefgz.DialogResult = System.Windows.Forms.DialogResult.Yes;
- this.uB_deletefgz.Location = new System.Drawing.Point(316, 105);
- this.uB_deletefgz.Name = "uB_deletefgz";
- this.uB_deletefgz.Size = new System.Drawing.Size(46, 25);
- this.uB_deletefgz.TabIndex = 34;
- this.uB_deletefgz.Text = "删除";
- this.uB_deletefgz.Click += new System.EventHandler(this.uB_deletefgz_Click);
- //
- // fgz_id
- //
- this.fgz_id.AutoSize = true;
- this.fgz_id.Location = new System.Drawing.Point(273, 62);
- this.fgz_id.Name = "fgz_id";
- this.fgz_id.Size = new System.Drawing.Size(17, 12);
- this.fgz_id.TabIndex = 31;
- this.fgz_id.Text = "id";
- this.fgz_id.Visible = false;
- this.fgz_id.TextChanged += new System.EventHandler(this.fgz_id_TextChanged);
- //
- // txt_noworktime_desc
- //
- this.txt_noworktime_desc.Location = new System.Drawing.Point(53, 107);
- this.txt_noworktime_desc.Name = "txt_noworktime_desc";
- this.txt_noworktime_desc.Size = new System.Drawing.Size(250, 21);
- this.txt_noworktime_desc.TabIndex = 28;
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.Location = new System.Drawing.Point(6, 112);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(41, 12);
- this.label12.TabIndex = 27;
- this.label12.Text = "说明:";
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Location = new System.Drawing.Point(236, 64);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(29, 12);
- this.label11.TabIndex = 20;
- this.label11.Text = "小时";
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Location = new System.Drawing.Point(126, 64);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(29, 12);
- this.label10.TabIndex = 19;
- this.label10.Text = "星期";
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Location = new System.Drawing.Point(6, 64);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(53, 12);
- this.label9.TabIndex = 14;
- this.label9.Text = "非工作:";
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(6, 38);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(41, 12);
- this.label8.TabIndex = 13;
- this.label8.Text = "产线:";
- //
- // uCb_pline
- //
- this.uCb_pline.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
- this.uCb_pline.DisplayMember = "PLINE_NAME";
- this.uCb_pline.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- valueListItem1.DataValue = "ls_dc";
- valueListItem1.DisplayText = "流速-待产";
- valueListItem2.DataValue = "ls_qx";
- valueListItem2.DisplayText = "流速-清线";
- valueListItem3.DataValue = "ls_dpsp";
- valueListItem3.DisplayText = "流速-待判-送判";
- valueListItem4.DataValue = "ls_dppd";
- valueListItem4.DisplayText = "流速-待判-判定";
- valueListItem5.DataValue = "ls_lxwt";
- valueListItem5.DisplayText = "流速-离线-委托";
- valueListItem6.DataValue = "ls_lxfx";
- valueListItem6.DisplayText = "流速-离线-返线";
- valueListItem7.DataValue = "ls_fp";
- valueListItem7.DisplayText = "流速-废品";
- this.uCb_pline.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem1,
- valueListItem2,
- valueListItem3,
- valueListItem4,
- valueListItem5,
- valueListItem6,
- valueListItem7});
- this.uCb_pline.Location = new System.Drawing.Point(126, 33);
- this.uCb_pline.Name = "uCb_pline";
- this.uCb_pline.Size = new System.Drawing.Size(179, 21);
- this.uCb_pline.TabIndex = 12;
- this.uCb_pline.ValueMember = "PLINE_CODE";
- this.uCb_pline.SelectionChanged += new System.EventHandler(this.uCb_pline_SelectionChanged);
- this.uCb_pline.TextChanged += new System.EventHandler(this.uCb_pline_TextChanged);
- //
- // uCb_processcode
- //
- this.uCb_processcode.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- valueListItem27.DataValue = "B";
- valueListItem27.DisplayText = "炼钢";
- valueListItem28.DataValue = "D";
- valueListItem28.DisplayText = "轧管";
- valueListItem32.DataValue = "E";
- valueListItem32.DisplayText = "镦拔扩";
- valueListItem33.DataValue = "F";
- valueListItem33.DisplayText = "热处理";
- valueListItem34.DataValue = "G";
- valueListItem34.DisplayText = "管加工";
- this.uCb_processcode.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem27,
- valueListItem28,
- valueListItem32,
- valueListItem33,
- valueListItem34});
- this.uCb_processcode.Location = new System.Drawing.Point(53, 33);
- this.uCb_processcode.Name = "uCb_processcode";
- this.uCb_processcode.Size = new System.Drawing.Size(68, 21);
- this.uCb_processcode.TabIndex = 11;
- this.uCb_processcode.SelectionChanged += new System.EventHandler(this.uCb_processcode_SelectionChanged);
- this.uCb_processcode.TextChanged += new System.EventHandler(this.uCb_processcode_TextChanged);
- //
- // RptPVKFSetting
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(955, 663);
- this.Controls.Add(this.splitContainer1);
- this.Name = "RptPVKFSetting";
- this.Text = "生产流速扣分设置";
- this.Load += new System.EventHandler(this.RptPVKFSetting_Load);
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
- this.splitContainer1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- this.ultraGroupBox1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.uCb_kftype)).EndInit();
- this.splitContainer2.Panel1.ResumeLayout(false);
- this.splitContainer2.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
- this.splitContainer2.ResumeLayout(false);
- this.splitContainer4.Panel1.ResumeLayout(false);
- this.splitContainer4.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).EndInit();
- this.splitContainer4.ResumeLayout(false);
- this.splitContainer5.Panel1.ResumeLayout(false);
- this.splitContainer5.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer5)).EndInit();
- this.splitContainer5.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridkf)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uEGB_kf)).EndInit();
- this.uEGB_kf.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.max_range)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.min_range)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.kf)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.qydate)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox4)).EndInit();
- this.ultraExpandableGroupBox4.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel4.ResumeLayout(false);
- this.splitContainer8.Panel1.ResumeLayout(false);
- this.splitContainer8.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer8)).EndInit();
- this.splitContainer8.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridkfqz)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uEGB_qz)).EndInit();
- this.uEGB_qz.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel5.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel5.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.uCb_kfqztype)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.qz)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.qydateqz)).EndInit();
- this.splitContainer3.Panel1.ResumeLayout(false);
- this.splitContainer3.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
- this.splitContainer3.ResumeLayout(false);
- this.splitContainer6.Panel1.ResumeLayout(false);
- this.splitContainer6.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer6)).EndInit();
- this.splitContainer6.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridkffj)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uEGB_fj)).EndInit();
- this.uEGB_fj.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.fj_value)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.qydatefj)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uCb_fjtype)).EndInit();
- this.splitContainer7.Panel1.ResumeLayout(false);
- this.splitContainer7.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer7)).EndInit();
- this.splitContainer7.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridkffgz)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uEGB_fgz)).EndInit();
- this.uEGB_fgz.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel3.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.uCb_nowork_days)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uCb_nowork_times)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.qydatefgz)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uCb_pline)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uCb_processcode)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.SplitContainer splitContainer1;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private System.Windows.Forms.SplitContainer splitContainer2;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridkf;
- private Infragistics.Win.Misc.UltraExpandableGroupBox uEGB_kf;
- private System.Windows.Forms.SplitContainer splitContainer3;
- private Infragistics.Win.Misc.UltraExpandableGroupBox uEGB_fj;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel2;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridkffj;
- private Infragistics.Win.Misc.UltraExpandableGroupBox uEGB_fgz;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridkffgz;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor uCb_kftype;
- private System.Windows.Forms.Label label1;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel3;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Label label8;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor uCb_pline;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor uCb_processcode;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Label label12;
- private Infragistics.Win.Misc.UltraButton uB_savefgz;
- private System.Windows.Forms.TextBox txt_noworktime_desc;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor uCb_fjtype;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.Label label15;
- private Infragistics.Win.Misc.UltraButton uB_savefj;
- private Infragistics.Win.Misc.UltraButton uB_addkf;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo qydatefj;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Label fj_id;
- private System.Windows.Forms.Label fgz_id;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- private Infragistics.Win.Misc.UltraButton uB_delete;
- private Infragistics.Win.Misc.UltraButton uB_isvalid;
- private System.Windows.Forms.Label isvalid;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.Label id;
- private System.Windows.Forms.TextBox txt_kftype;
- private Infragistics.Win.Misc.UltraButton uB_addkffgz;
- private Infragistics.Win.Misc.UltraButton uB_addkffj;
- private Infragistics.Win.Misc.UltraButton uB_savekf;
- private System.Windows.Forms.CheckedListBox cLB_processcode;
- private System.Windows.Forms.Label lab_qztypename;
- private System.Windows.Forms.Label label7;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor kf;
- private System.Windows.Forms.Label label6;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo qydate;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label label2;
- private Infragistics.Win.Misc.UltraButton uB_deletefj;
- private Infragistics.Win.Misc.UltraButton uB_deletefgz;
- private System.Windows.Forms.Label lab_kftype_name;
- private System.Windows.Forms.SplitContainer splitContainer4;
- private System.Windows.Forms.SplitContainer splitContainer5;
- private System.Windows.Forms.SplitContainer splitContainer6;
- private System.Windows.Forms.SplitContainer splitContainer7;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox4;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel4;
- private System.Windows.Forms.SplitContainer splitContainer8;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridkfqz;
- private Infragistics.Win.Misc.UltraExpandableGroupBox uEGB_qz;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel5;
- private Infragistics.Win.Misc.UltraButton uB_addkfqz;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor uCb_kfqztype;
- private System.Windows.Forms.Label label18;
- private System.Windows.Forms.Label isvalidqz;
- private System.Windows.Forms.Label label25;
- private System.Windows.Forms.Label qz_id;
- private System.Windows.Forms.Label lab_kfqztype_desc;
- private Infragistics.Win.Misc.UltraButton uB_deleteqz;
- private Infragistics.Win.Misc.UltraButton uB_isvalidqz;
- private Infragistics.Win.Misc.UltraButton uB_saveqz;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor qz;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo qydateqz;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.Label label21;
- private Infragistics.Win.Misc.UltraButton uB_isvalidfj;
- private System.Windows.Forms.Label isvalidfj;
- private System.Windows.Forms.Label label28;
- private System.Windows.Forms.CheckedListBox cLB_processcodefj;
- private System.Windows.Forms.Label label26;
- private System.Windows.Forms.Label lab_kdtypenamefj;
- private System.Windows.Forms.Label isvalidfgz;
- private System.Windows.Forms.Label label29;
- private Infragistics.Win.Misc.UltraButton uB_isvalidfgz;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor max_range;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor min_range;
- private System.Windows.Forms.Label lab_kftypefj_name;
- private System.Windows.Forms.TextBox txt_kftypefj;
- private System.Windows.Forms.Label label23;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo qydatefgz;
- private System.Windows.Forms.Label label19;
- private System.Windows.Forms.Label lab_kftypefgz_name;
- private System.Windows.Forms.TextBox txt_kftypefgz;
- private System.Windows.Forms.Label label24;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor fj_value;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor uCb_nowork_times;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor uCb_nowork_days;
- private Infragistics.Win.Misc.UltraButton uB_ImportData;
- }
- }
|