RptPVKFSetting.Designer.cs 120 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046
  1. namespace Core.StlMes.Client.BuyBillet
  2. {
  3. partial class RptPVKFSetting
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
  29. Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
  30. Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
  31. Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
  32. Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
  33. Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
  34. Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
  35. Infragistics.Win.ValueListItem valueListItem31 = new Infragistics.Win.ValueListItem();
  36. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  37. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  38. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  39. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  40. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  41. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  42. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  43. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  44. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  45. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  46. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  47. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  48. Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
  49. Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
  50. Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
  51. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  52. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  53. Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
  54. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  55. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  56. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  57. Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
  58. Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
  59. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  60. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  61. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  62. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  63. Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
  64. Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
  65. Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
  66. Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
  67. Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
  68. Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
  69. Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
  70. Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
  71. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  72. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton2 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  73. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  74. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  75. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  76. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  77. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  78. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  79. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  80. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  81. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  82. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  83. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  84. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  85. Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
  86. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton3 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  87. Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
  88. Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
  89. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  90. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  91. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  92. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  93. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  94. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  95. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  96. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  97. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  98. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  99. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  100. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  101. Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
  102. Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
  103. Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
  104. Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
  105. Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
  106. Infragistics.Win.ValueListItem valueListItem35 = new Infragistics.Win.ValueListItem();
  107. Infragistics.Win.ValueListItem valueListItem36 = new Infragistics.Win.ValueListItem();
  108. Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
  109. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton4 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  110. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  111. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  112. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  113. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  114. Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
  115. Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
  116. Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
  117. Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
  118. Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
  119. Infragistics.Win.ValueListItem valueListItem32 = new Infragistics.Win.ValueListItem();
  120. Infragistics.Win.ValueListItem valueListItem33 = new Infragistics.Win.ValueListItem();
  121. Infragistics.Win.ValueListItem valueListItem34 = new Infragistics.Win.ValueListItem();
  122. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  123. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  124. this.uB_ImportData = new Infragistics.Win.Misc.UltraButton();
  125. this.uB_addkfqz = new Infragistics.Win.Misc.UltraButton();
  126. this.uB_addkf = new Infragistics.Win.Misc.UltraButton();
  127. this.uCb_kftype = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  128. this.label1 = new System.Windows.Forms.Label();
  129. this.splitContainer2 = new System.Windows.Forms.SplitContainer();
  130. this.splitContainer4 = new System.Windows.Forms.SplitContainer();
  131. this.splitContainer5 = new System.Windows.Forms.SplitContainer();
  132. this.ultraGridkf = new Infragistics.Win.UltraWinGrid.UltraGrid();
  133. this.uEGB_kf = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  134. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  135. this.max_range = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  136. this.min_range = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  137. this.lab_kftype_name = new System.Windows.Forms.Label();
  138. this.uB_delete = new Infragistics.Win.Misc.UltraButton();
  139. this.uB_isvalid = new Infragistics.Win.Misc.UltraButton();
  140. this.isvalid = new System.Windows.Forms.Label();
  141. this.label17 = new System.Windows.Forms.Label();
  142. this.id = new System.Windows.Forms.Label();
  143. this.txt_kftype = new System.Windows.Forms.TextBox();
  144. this.uB_addkffgz = new Infragistics.Win.Misc.UltraButton();
  145. this.uB_addkffj = new Infragistics.Win.Misc.UltraButton();
  146. this.uB_savekf = new Infragistics.Win.Misc.UltraButton();
  147. this.cLB_processcode = new System.Windows.Forms.CheckedListBox();
  148. this.lab_qztypename = new System.Windows.Forms.Label();
  149. this.label7 = new System.Windows.Forms.Label();
  150. this.kf = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  151. this.label6 = new System.Windows.Forms.Label();
  152. this.qydate = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  153. this.label5 = new System.Windows.Forms.Label();
  154. this.label4 = new System.Windows.Forms.Label();
  155. this.label3 = new System.Windows.Forms.Label();
  156. this.label2 = new System.Windows.Forms.Label();
  157. this.ultraExpandableGroupBox4 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  158. this.ultraExpandableGroupBoxPanel4 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  159. this.splitContainer8 = new System.Windows.Forms.SplitContainer();
  160. this.ultraGridkfqz = new Infragistics.Win.UltraWinGrid.UltraGrid();
  161. this.uEGB_qz = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  162. this.ultraExpandableGroupBoxPanel5 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  163. this.isvalidqz = new System.Windows.Forms.Label();
  164. this.uCb_kfqztype = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  165. this.label18 = new System.Windows.Forms.Label();
  166. this.label25 = new System.Windows.Forms.Label();
  167. this.qz_id = new System.Windows.Forms.Label();
  168. this.lab_kfqztype_desc = new System.Windows.Forms.Label();
  169. this.uB_deleteqz = new Infragistics.Win.Misc.UltraButton();
  170. this.uB_isvalidqz = new Infragistics.Win.Misc.UltraButton();
  171. this.uB_saveqz = new Infragistics.Win.Misc.UltraButton();
  172. this.qz = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  173. this.qydateqz = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  174. this.label20 = new System.Windows.Forms.Label();
  175. this.label21 = new System.Windows.Forms.Label();
  176. this.splitContainer3 = new System.Windows.Forms.SplitContainer();
  177. this.splitContainer6 = new System.Windows.Forms.SplitContainer();
  178. this.ultraGridkffj = new Infragistics.Win.UltraWinGrid.UltraGrid();
  179. this.uEGB_fj = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  180. this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  181. this.fj_value = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  182. this.lab_kftypefj_name = new System.Windows.Forms.Label();
  183. this.txt_kftypefj = new System.Windows.Forms.TextBox();
  184. this.label23 = new System.Windows.Forms.Label();
  185. this.lab_kdtypenamefj = new System.Windows.Forms.Label();
  186. this.uB_isvalidfj = new Infragistics.Win.Misc.UltraButton();
  187. this.isvalidfj = new System.Windows.Forms.Label();
  188. this.label28 = new System.Windows.Forms.Label();
  189. this.cLB_processcodefj = new System.Windows.Forms.CheckedListBox();
  190. this.label26 = new System.Windows.Forms.Label();
  191. this.uB_deletefj = new Infragistics.Win.Misc.UltraButton();
  192. this.fj_id = new System.Windows.Forms.Label();
  193. this.qydatefj = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  194. this.label16 = new System.Windows.Forms.Label();
  195. this.uB_savefj = new Infragistics.Win.Misc.UltraButton();
  196. this.label14 = new System.Windows.Forms.Label();
  197. this.label15 = new System.Windows.Forms.Label();
  198. this.uCb_fjtype = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  199. this.label13 = new System.Windows.Forms.Label();
  200. this.splitContainer7 = new System.Windows.Forms.SplitContainer();
  201. this.ultraGridkffgz = new Infragistics.Win.UltraWinGrid.UltraGrid();
  202. this.uEGB_fgz = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  203. this.ultraExpandableGroupBoxPanel3 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  204. this.uCb_nowork_days = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  205. this.uCb_nowork_times = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  206. this.uB_savefgz = new Infragistics.Win.Misc.UltraButton();
  207. this.lab_kftypefgz_name = new System.Windows.Forms.Label();
  208. this.txt_kftypefgz = new System.Windows.Forms.TextBox();
  209. this.label24 = new System.Windows.Forms.Label();
  210. this.qydatefgz = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  211. this.label19 = new System.Windows.Forms.Label();
  212. this.isvalidfgz = new System.Windows.Forms.Label();
  213. this.label29 = new System.Windows.Forms.Label();
  214. this.uB_isvalidfgz = new Infragistics.Win.Misc.UltraButton();
  215. this.uB_deletefgz = new Infragistics.Win.Misc.UltraButton();
  216. this.fgz_id = new System.Windows.Forms.Label();
  217. this.txt_noworktime_desc = new System.Windows.Forms.TextBox();
  218. this.label12 = new System.Windows.Forms.Label();
  219. this.label11 = new System.Windows.Forms.Label();
  220. this.label10 = new System.Windows.Forms.Label();
  221. this.label9 = new System.Windows.Forms.Label();
  222. this.label8 = new System.Windows.Forms.Label();
  223. this.uCb_pline = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  224. this.uCb_processcode = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  225. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  226. this.splitContainer1.Panel1.SuspendLayout();
  227. this.splitContainer1.Panel2.SuspendLayout();
  228. this.splitContainer1.SuspendLayout();
  229. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  230. this.ultraGroupBox1.SuspendLayout();
  231. ((System.ComponentModel.ISupportInitialize)(this.uCb_kftype)).BeginInit();
  232. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
  233. this.splitContainer2.Panel1.SuspendLayout();
  234. this.splitContainer2.Panel2.SuspendLayout();
  235. this.splitContainer2.SuspendLayout();
  236. ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).BeginInit();
  237. this.splitContainer4.Panel1.SuspendLayout();
  238. this.splitContainer4.Panel2.SuspendLayout();
  239. this.splitContainer4.SuspendLayout();
  240. ((System.ComponentModel.ISupportInitialize)(this.splitContainer5)).BeginInit();
  241. this.splitContainer5.Panel1.SuspendLayout();
  242. this.splitContainer5.Panel2.SuspendLayout();
  243. this.splitContainer5.SuspendLayout();
  244. ((System.ComponentModel.ISupportInitialize)(this.ultraGridkf)).BeginInit();
  245. ((System.ComponentModel.ISupportInitialize)(this.uEGB_kf)).BeginInit();
  246. this.uEGB_kf.SuspendLayout();
  247. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  248. ((System.ComponentModel.ISupportInitialize)(this.max_range)).BeginInit();
  249. ((System.ComponentModel.ISupportInitialize)(this.min_range)).BeginInit();
  250. ((System.ComponentModel.ISupportInitialize)(this.kf)).BeginInit();
  251. ((System.ComponentModel.ISupportInitialize)(this.qydate)).BeginInit();
  252. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox4)).BeginInit();
  253. this.ultraExpandableGroupBox4.SuspendLayout();
  254. this.ultraExpandableGroupBoxPanel4.SuspendLayout();
  255. ((System.ComponentModel.ISupportInitialize)(this.splitContainer8)).BeginInit();
  256. this.splitContainer8.Panel1.SuspendLayout();
  257. this.splitContainer8.Panel2.SuspendLayout();
  258. this.splitContainer8.SuspendLayout();
  259. ((System.ComponentModel.ISupportInitialize)(this.ultraGridkfqz)).BeginInit();
  260. ((System.ComponentModel.ISupportInitialize)(this.uEGB_qz)).BeginInit();
  261. this.uEGB_qz.SuspendLayout();
  262. this.ultraExpandableGroupBoxPanel5.SuspendLayout();
  263. ((System.ComponentModel.ISupportInitialize)(this.uCb_kfqztype)).BeginInit();
  264. ((System.ComponentModel.ISupportInitialize)(this.qz)).BeginInit();
  265. ((System.ComponentModel.ISupportInitialize)(this.qydateqz)).BeginInit();
  266. ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
  267. this.splitContainer3.Panel1.SuspendLayout();
  268. this.splitContainer3.Panel2.SuspendLayout();
  269. this.splitContainer3.SuspendLayout();
  270. ((System.ComponentModel.ISupportInitialize)(this.splitContainer6)).BeginInit();
  271. this.splitContainer6.Panel1.SuspendLayout();
  272. this.splitContainer6.Panel2.SuspendLayout();
  273. this.splitContainer6.SuspendLayout();
  274. ((System.ComponentModel.ISupportInitialize)(this.ultraGridkffj)).BeginInit();
  275. ((System.ComponentModel.ISupportInitialize)(this.uEGB_fj)).BeginInit();
  276. this.uEGB_fj.SuspendLayout();
  277. this.ultraExpandableGroupBoxPanel2.SuspendLayout();
  278. ((System.ComponentModel.ISupportInitialize)(this.fj_value)).BeginInit();
  279. ((System.ComponentModel.ISupportInitialize)(this.qydatefj)).BeginInit();
  280. ((System.ComponentModel.ISupportInitialize)(this.uCb_fjtype)).BeginInit();
  281. ((System.ComponentModel.ISupportInitialize)(this.splitContainer7)).BeginInit();
  282. this.splitContainer7.Panel1.SuspendLayout();
  283. this.splitContainer7.Panel2.SuspendLayout();
  284. this.splitContainer7.SuspendLayout();
  285. ((System.ComponentModel.ISupportInitialize)(this.ultraGridkffgz)).BeginInit();
  286. ((System.ComponentModel.ISupportInitialize)(this.uEGB_fgz)).BeginInit();
  287. this.uEGB_fgz.SuspendLayout();
  288. this.ultraExpandableGroupBoxPanel3.SuspendLayout();
  289. ((System.ComponentModel.ISupportInitialize)(this.uCb_nowork_days)).BeginInit();
  290. ((System.ComponentModel.ISupportInitialize)(this.uCb_nowork_times)).BeginInit();
  291. ((System.ComponentModel.ISupportInitialize)(this.qydatefgz)).BeginInit();
  292. ((System.ComponentModel.ISupportInitialize)(this.uCb_pline)).BeginInit();
  293. ((System.ComponentModel.ISupportInitialize)(this.uCb_processcode)).BeginInit();
  294. this.SuspendLayout();
  295. //
  296. // splitContainer1
  297. //
  298. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  299. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  300. this.splitContainer1.Name = "splitContainer1";
  301. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  302. //
  303. // splitContainer1.Panel1
  304. //
  305. this.splitContainer1.Panel1.Controls.Add(this.ultraGroupBox1);
  306. //
  307. // splitContainer1.Panel2
  308. //
  309. this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
  310. this.splitContainer1.Size = new System.Drawing.Size(955, 663);
  311. this.splitContainer1.SplitterDistance = 44;
  312. this.splitContainer1.TabIndex = 0;
  313. //
  314. // ultraGroupBox1
  315. //
  316. this.ultraGroupBox1.Controls.Add(this.uB_ImportData);
  317. this.ultraGroupBox1.Controls.Add(this.uB_addkfqz);
  318. this.ultraGroupBox1.Controls.Add(this.uB_addkf);
  319. this.ultraGroupBox1.Controls.Add(this.uCb_kftype);
  320. this.ultraGroupBox1.Controls.Add(this.label1);
  321. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  322. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  323. this.ultraGroupBox1.Name = "ultraGroupBox1";
  324. this.ultraGroupBox1.Size = new System.Drawing.Size(955, 44);
  325. this.ultraGroupBox1.TabIndex = 0;
  326. this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  327. //
  328. // uB_ImportData
  329. //
  330. this.uB_ImportData.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  331. this.uB_ImportData.DialogResult = System.Windows.Forms.DialogResult.Yes;
  332. this.uB_ImportData.Location = new System.Drawing.Point(550, 7);
  333. this.uB_ImportData.Name = "uB_ImportData";
  334. this.uB_ImportData.Size = new System.Drawing.Size(113, 26);
  335. this.uB_ImportData.TabIndex = 30;
  336. this.uB_ImportData.Text = "重新导入今天数据";
  337. this.uB_ImportData.UseMnemonic = false;
  338. this.uB_ImportData.Click += new System.EventHandler(this.uB_ImportData_Click);
  339. //
  340. // uB_addkfqz
  341. //
  342. this.uB_addkfqz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  343. this.uB_addkfqz.DialogResult = System.Windows.Forms.DialogResult.Yes;
  344. this.uB_addkfqz.Location = new System.Drawing.Point(438, 6);
  345. this.uB_addkfqz.Name = "uB_addkfqz";
  346. this.uB_addkfqz.Size = new System.Drawing.Size(95, 26);
  347. this.uB_addkfqz.TabIndex = 29;
  348. this.uB_addkfqz.Text = "新增扣分权重";
  349. this.uB_addkfqz.UseMnemonic = false;
  350. this.uB_addkfqz.Click += new System.EventHandler(this.uB_addkfqz_Click);
  351. //
  352. // uB_addkf
  353. //
  354. this.uB_addkf.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  355. this.uB_addkf.DialogResult = System.Windows.Forms.DialogResult.Yes;
  356. this.uB_addkf.Location = new System.Drawing.Point(227, 8);
  357. this.uB_addkf.Name = "uB_addkf";
  358. this.uB_addkf.Size = new System.Drawing.Size(75, 26);
  359. this.uB_addkf.TabIndex = 26;
  360. this.uB_addkf.Text = "新增扣分";
  361. this.uB_addkf.UseMnemonic = false;
  362. this.uB_addkf.Click += new System.EventHandler(this.uB_addkf_Click);
  363. //
  364. // uCb_kftype
  365. //
  366. valueListItem15.DataValue = "ls_dc";
  367. valueListItem15.DisplayText = "流速-待产";
  368. valueListItem16.DataValue = "ls_qx";
  369. valueListItem16.DisplayText = "流速-清线";
  370. valueListItem17.DataValue = "ls_dpsp";
  371. valueListItem17.DisplayText = "流速-待判-送判";
  372. valueListItem18.DataValue = "ls_dppd";
  373. valueListItem18.DisplayText = "流速-待判-判定";
  374. valueListItem19.DataValue = "ls_lxwt";
  375. valueListItem19.DisplayText = "流速-离线-委托";
  376. valueListItem29.DataValue = "ls_lxfx";
  377. valueListItem29.DisplayText = "流速-离线-返线";
  378. valueListItem30.DataValue = "ls_lxfxjcx";
  379. valueListItem30.DisplayText = "流速-离线-返线(仅除锈)";
  380. valueListItem31.DataValue = "ls_fp";
  381. valueListItem31.DisplayText = "流速-废品";
  382. this.uCb_kftype.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  383. valueListItem15,
  384. valueListItem16,
  385. valueListItem17,
  386. valueListItem18,
  387. valueListItem19,
  388. valueListItem29,
  389. valueListItem30,
  390. valueListItem31});
  391. this.uCb_kftype.Location = new System.Drawing.Point(100, 11);
  392. this.uCb_kftype.Name = "uCb_kftype";
  393. this.uCb_kftype.Size = new System.Drawing.Size(122, 21);
  394. this.uCb_kftype.TabIndex = 8;
  395. this.uCb_kftype.SelectionChanged += new System.EventHandler(this.uCb_kftype_SelectionChanged);
  396. this.uCb_kftype.TextChanged += new System.EventHandler(this.uCb_kftype_TextChanged);
  397. //
  398. // label1
  399. //
  400. this.label1.AutoSize = true;
  401. this.label1.Location = new System.Drawing.Point(12, 17);
  402. this.label1.Name = "label1";
  403. this.label1.Size = new System.Drawing.Size(89, 12);
  404. this.label1.TabIndex = 6;
  405. this.label1.Text = "流速扣分类型:";
  406. //
  407. // splitContainer2
  408. //
  409. this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
  410. this.splitContainer2.Location = new System.Drawing.Point(0, 0);
  411. this.splitContainer2.Name = "splitContainer2";
  412. //
  413. // splitContainer2.Panel1
  414. //
  415. this.splitContainer2.Panel1.Controls.Add(this.splitContainer4);
  416. //
  417. // splitContainer2.Panel2
  418. //
  419. this.splitContainer2.Panel2.Controls.Add(this.splitContainer3);
  420. this.splitContainer2.Size = new System.Drawing.Size(955, 615);
  421. this.splitContainer2.SplitterDistance = 519;
  422. this.splitContainer2.TabIndex = 0;
  423. //
  424. // splitContainer4
  425. //
  426. this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
  427. this.splitContainer4.Location = new System.Drawing.Point(0, 0);
  428. this.splitContainer4.Name = "splitContainer4";
  429. this.splitContainer4.Orientation = System.Windows.Forms.Orientation.Horizontal;
  430. //
  431. // splitContainer4.Panel1
  432. //
  433. this.splitContainer4.Panel1.Controls.Add(this.splitContainer5);
  434. //
  435. // splitContainer4.Panel2
  436. //
  437. this.splitContainer4.Panel2.Controls.Add(this.ultraExpandableGroupBox4);
  438. this.splitContainer4.Size = new System.Drawing.Size(519, 615);
  439. this.splitContainer4.SplitterDistance = 359;
  440. this.splitContainer4.TabIndex = 2;
  441. //
  442. // splitContainer5
  443. //
  444. this.splitContainer5.Dock = System.Windows.Forms.DockStyle.Fill;
  445. this.splitContainer5.Location = new System.Drawing.Point(0, 0);
  446. this.splitContainer5.Name = "splitContainer5";
  447. this.splitContainer5.Orientation = System.Windows.Forms.Orientation.Horizontal;
  448. //
  449. // splitContainer5.Panel1
  450. //
  451. this.splitContainer5.Panel1.Controls.Add(this.ultraGridkf);
  452. //
  453. // splitContainer5.Panel2
  454. //
  455. this.splitContainer5.Panel2.Controls.Add(this.uEGB_kf);
  456. this.splitContainer5.Size = new System.Drawing.Size(519, 359);
  457. this.splitContainer5.SplitterDistance = 157;
  458. this.splitContainer5.TabIndex = 0;
  459. //
  460. // ultraGridkf
  461. //
  462. appearance1.BackColor = System.Drawing.SystemColors.Window;
  463. appearance1.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  464. this.ultraGridkf.DisplayLayout.Appearance = appearance1;
  465. this.ultraGridkf.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  466. this.ultraGridkf.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  467. appearance2.BackColor = System.Drawing.SystemColors.ActiveBorder;
  468. appearance2.BackColor2 = System.Drawing.SystemColors.ControlDark;
  469. appearance2.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  470. appearance2.BorderColor = System.Drawing.SystemColors.Window;
  471. this.ultraGridkf.DisplayLayout.GroupByBox.Appearance = appearance2;
  472. appearance4.ForeColor = System.Drawing.SystemColors.GrayText;
  473. this.ultraGridkf.DisplayLayout.GroupByBox.BandLabelAppearance = appearance4;
  474. this.ultraGridkf.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  475. appearance3.BackColor = System.Drawing.SystemColors.ControlLightLight;
  476. appearance3.BackColor2 = System.Drawing.SystemColors.Control;
  477. appearance3.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  478. appearance3.ForeColor = System.Drawing.SystemColors.GrayText;
  479. this.ultraGridkf.DisplayLayout.GroupByBox.PromptAppearance = appearance3;
  480. this.ultraGridkf.DisplayLayout.MaxColScrollRegions = 1;
  481. this.ultraGridkf.DisplayLayout.MaxRowScrollRegions = 1;
  482. appearance7.BackColor = System.Drawing.SystemColors.Window;
  483. appearance7.ForeColor = System.Drawing.SystemColors.ControlText;
  484. this.ultraGridkf.DisplayLayout.Override.ActiveCellAppearance = appearance7;
  485. appearance10.BackColor = System.Drawing.SystemColors.Highlight;
  486. appearance10.ForeColor = System.Drawing.SystemColors.HighlightText;
  487. this.ultraGridkf.DisplayLayout.Override.ActiveRowAppearance = appearance10;
  488. this.ultraGridkf.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  489. this.ultraGridkf.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  490. appearance12.BackColor = System.Drawing.SystemColors.Window;
  491. this.ultraGridkf.DisplayLayout.Override.CardAreaAppearance = appearance12;
  492. appearance8.BorderColor = System.Drawing.Color.Silver;
  493. appearance8.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  494. this.ultraGridkf.DisplayLayout.Override.CellAppearance = appearance8;
  495. this.ultraGridkf.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  496. this.ultraGridkf.DisplayLayout.Override.CellPadding = 0;
  497. appearance6.BackColor = System.Drawing.SystemColors.Control;
  498. appearance6.BackColor2 = System.Drawing.SystemColors.ControlDark;
  499. appearance6.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  500. appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  501. appearance6.BorderColor = System.Drawing.SystemColors.Window;
  502. this.ultraGridkf.DisplayLayout.Override.GroupByRowAppearance = appearance6;
  503. appearance5.TextHAlignAsString = "Left";
  504. this.ultraGridkf.DisplayLayout.Override.HeaderAppearance = appearance5;
  505. this.ultraGridkf.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  506. this.ultraGridkf.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  507. appearance11.BackColor = System.Drawing.SystemColors.Window;
  508. appearance11.BorderColor = System.Drawing.Color.Silver;
  509. this.ultraGridkf.DisplayLayout.Override.RowAppearance = appearance11;
  510. this.ultraGridkf.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  511. this.ultraGridkf.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
  512. appearance9.BackColor = System.Drawing.SystemColors.ControlLight;
  513. this.ultraGridkf.DisplayLayout.Override.TemplateAddRowAppearance = appearance9;
  514. this.ultraGridkf.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  515. this.ultraGridkf.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  516. this.ultraGridkf.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  517. this.ultraGridkf.Dock = System.Windows.Forms.DockStyle.Fill;
  518. this.ultraGridkf.Location = new System.Drawing.Point(0, 0);
  519. this.ultraGridkf.Name = "ultraGridkf";
  520. this.ultraGridkf.Size = new System.Drawing.Size(519, 157);
  521. this.ultraGridkf.TabIndex = 0;
  522. this.ultraGridkf.Text = "ultraGrid1";
  523. this.ultraGridkf.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGridkf_AfterSelectChange);
  524. this.ultraGridkf.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGridkf_ClickCell);
  525. //
  526. // uEGB_kf
  527. //
  528. this.uEGB_kf.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  529. this.uEGB_kf.Dock = System.Windows.Forms.DockStyle.Fill;
  530. this.uEGB_kf.ExpandedSize = new System.Drawing.Size(519, 198);
  531. this.uEGB_kf.Location = new System.Drawing.Point(0, 0);
  532. this.uEGB_kf.Name = "uEGB_kf";
  533. this.uEGB_kf.Size = new System.Drawing.Size(519, 198);
  534. this.uEGB_kf.TabIndex = 1;
  535. this.uEGB_kf.Text = "扣分编辑区";
  536. this.uEGB_kf.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  537. //
  538. // ultraExpandableGroupBoxPanel1
  539. //
  540. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.max_range);
  541. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.min_range);
  542. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.lab_kftype_name);
  543. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.uB_delete);
  544. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.uB_isvalid);
  545. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.isvalid);
  546. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label17);
  547. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.id);
  548. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_kftype);
  549. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.uB_addkffgz);
  550. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.uB_addkffj);
  551. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.uB_savekf);
  552. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cLB_processcode);
  553. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.lab_qztypename);
  554. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label7);
  555. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.kf);
  556. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label6);
  557. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.qydate);
  558. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label5);
  559. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label4);
  560. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label3);
  561. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.label2);
  562. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  563. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 20);
  564. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  565. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(513, 175);
  566. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  567. //
  568. // max_range
  569. //
  570. appearance54.TextHAlignAsString = "Right";
  571. this.max_range.Appearance = appearance54;
  572. this.max_range.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  573. this.max_range.Location = new System.Drawing.Point(177, 60);
  574. this.max_range.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  575. this.max_range.MaxValue = 100;
  576. this.max_range.MinValue = 0;
  577. this.max_range.Name = "max_range";
  578. this.max_range.Nullable = true;
  579. this.max_range.ShowInkButton = Infragistics.Win.ShowInkButton.Always;
  580. this.max_range.Size = new System.Drawing.Size(64, 21);
  581. this.max_range.SpinButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.OnMouseEnter;
  582. this.max_range.SpinWrap = true;
  583. this.max_range.TabIndex = 36;
  584. this.max_range.ValueChanged += new System.EventHandler(this.max_range_ValueChanged);
  585. //
  586. // min_range
  587. //
  588. appearance55.TextHAlignAsString = "Right";
  589. this.min_range.Appearance = appearance55;
  590. this.min_range.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  591. this.min_range.Location = new System.Drawing.Point(52, 60);
  592. this.min_range.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  593. this.min_range.MaxValue = 100;
  594. this.min_range.MinValue = 0;
  595. this.min_range.Name = "min_range";
  596. this.min_range.ShowInkButton = Infragistics.Win.ShowInkButton.Always;
  597. this.min_range.Size = new System.Drawing.Size(64, 21);
  598. this.min_range.SpinButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.OnMouseEnter;
  599. this.min_range.SpinWrap = true;
  600. this.min_range.TabIndex = 35;
  601. this.min_range.ValueChanged += new System.EventHandler(this.min_range_ValueChanged);
  602. //
  603. // lab_kftype_name
  604. //
  605. this.lab_kftype_name.AutoSize = true;
  606. this.lab_kftype_name.Location = new System.Drawing.Point(225, 12);
  607. this.lab_kftype_name.Name = "lab_kftype_name";
  608. this.lab_kftype_name.Size = new System.Drawing.Size(95, 12);
  609. this.lab_kftype_name.TabIndex = 34;
  610. this.lab_kftype_name.Text = "txt_kftype_name";
  611. //
  612. // uB_delete
  613. //
  614. this.uB_delete.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  615. this.uB_delete.DialogResult = System.Windows.Forms.DialogResult.Yes;
  616. this.uB_delete.Location = new System.Drawing.Point(452, 92);
  617. this.uB_delete.Name = "uB_delete";
  618. this.uB_delete.Size = new System.Drawing.Size(46, 25);
  619. this.uB_delete.TabIndex = 33;
  620. this.uB_delete.Text = "删除";
  621. this.uB_delete.Click += new System.EventHandler(this.uB_delete_Click);
  622. //
  623. // uB_isvalid
  624. //
  625. this.uB_isvalid.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  626. this.uB_isvalid.DialogResult = System.Windows.Forms.DialogResult.Yes;
  627. this.uB_isvalid.Location = new System.Drawing.Point(452, 59);
  628. this.uB_isvalid.Name = "uB_isvalid";
  629. this.uB_isvalid.Size = new System.Drawing.Size(46, 25);
  630. this.uB_isvalid.TabIndex = 32;
  631. this.uB_isvalid.Text = "启用";
  632. this.uB_isvalid.Click += new System.EventHandler(this.uB_isvalid_Click);
  633. //
  634. // isvalid
  635. //
  636. this.isvalid.AutoSize = true;
  637. this.isvalid.Location = new System.Drawing.Point(73, 90);
  638. this.isvalid.Name = "isvalid";
  639. this.isvalid.Size = new System.Drawing.Size(47, 12);
  640. this.isvalid.TabIndex = 31;
  641. this.isvalid.Text = "isvalid";
  642. this.isvalid.TextChanged += new System.EventHandler(this.isvalid_TextChanged);
  643. //
  644. // label17
  645. //
  646. this.label17.AutoSize = true;
  647. this.label17.Location = new System.Drawing.Point(10, 90);
  648. this.label17.Name = "label17";
  649. this.label17.Size = new System.Drawing.Size(65, 12);
  650. this.label17.TabIndex = 30;
  651. this.label17.Text = "是否有效:";
  652. //
  653. // id
  654. //
  655. this.id.AutoSize = true;
  656. this.id.Location = new System.Drawing.Point(293, 66);
  657. this.id.Name = "id";
  658. this.id.Size = new System.Drawing.Size(17, 12);
  659. this.id.TabIndex = 29;
  660. this.id.Text = "id";
  661. this.id.Visible = false;
  662. this.id.TextChanged += new System.EventHandler(this.id_TextChanged);
  663. //
  664. // txt_kftype
  665. //
  666. this.txt_kftype.Location = new System.Drawing.Point(97, 6);
  667. this.txt_kftype.Name = "txt_kftype";
  668. this.txt_kftype.ReadOnly = true;
  669. this.txt_kftype.Size = new System.Drawing.Size(121, 21);
  670. this.txt_kftype.TabIndex = 28;
  671. this.txt_kftype.TextChanged += new System.EventHandler(this.txt_kftype_TextChanged);
  672. //
  673. // uB_addkffgz
  674. //
  675. this.uB_addkffgz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  676. this.uB_addkffgz.DialogResult = System.Windows.Forms.DialogResult.Yes;
  677. this.uB_addkffgz.Location = new System.Drawing.Point(265, 85);
  678. this.uB_addkffgz.Name = "uB_addkffgz";
  679. this.uB_addkffgz.Size = new System.Drawing.Size(82, 26);
  680. this.uB_addkffgz.TabIndex = 27;
  681. this.uB_addkffgz.Text = "新增附加项2";
  682. this.uB_addkffgz.Click += new System.EventHandler(this.uB_addkffgz_Click);
  683. //
  684. // uB_addkffj
  685. //
  686. this.uB_addkffj.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  687. this.uB_addkffj.DialogResult = System.Windows.Forms.DialogResult.Yes;
  688. this.uB_addkffj.Location = new System.Drawing.Point(178, 85);
  689. this.uB_addkffj.Name = "uB_addkffj";
  690. this.uB_addkffj.Size = new System.Drawing.Size(82, 25);
  691. this.uB_addkffj.TabIndex = 26;
  692. this.uB_addkffj.Text = "新增附加项1";
  693. this.uB_addkffj.Click += new System.EventHandler(this.uB_addkffj_Click);
  694. //
  695. // uB_savekf
  696. //
  697. this.uB_savekf.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  698. this.uB_savekf.DialogResult = System.Windows.Forms.DialogResult.Yes;
  699. this.uB_savekf.Location = new System.Drawing.Point(452, 25);
  700. this.uB_savekf.Name = "uB_savekf";
  701. this.uB_savekf.Size = new System.Drawing.Size(46, 25);
  702. this.uB_savekf.TabIndex = 25;
  703. this.uB_savekf.Text = "保存";
  704. this.uB_savekf.Click += new System.EventHandler(this.uB_savekf_Click);
  705. //
  706. // cLB_processcode
  707. //
  708. this.cLB_processcode.FormattingEnabled = true;
  709. this.cLB_processcode.Items.AddRange(new object[] {
  710. "B",
  711. "D",
  712. "E",
  713. "F",
  714. "G"});
  715. this.cLB_processcode.Location = new System.Drawing.Point(363, 32);
  716. this.cLB_processcode.Name = "cLB_processcode";
  717. this.cLB_processcode.Size = new System.Drawing.Size(83, 84);
  718. this.cLB_processcode.TabIndex = 19;
  719. //
  720. // lab_qztypename
  721. //
  722. this.lab_qztypename.AutoSize = true;
  723. this.lab_qztypename.Location = new System.Drawing.Point(39, 114);
  724. this.lab_qztypename.Name = "lab_qztypename";
  725. this.lab_qztypename.Size = new System.Drawing.Size(77, 12);
  726. this.lab_qztypename.TabIndex = 23;
  727. this.lab_qztypename.Text = "扣分类型说明";
  728. //
  729. // label7
  730. //
  731. this.label7.AutoSize = true;
  732. this.label7.Location = new System.Drawing.Point(10, 66);
  733. this.label7.Name = "label7";
  734. this.label7.Size = new System.Drawing.Size(41, 12);
  735. this.label7.TabIndex = 22;
  736. this.label7.Text = "范围:";
  737. //
  738. // kf
  739. //
  740. appearance52.TextHAlignAsString = "Right";
  741. this.kf.Appearance = appearance52;
  742. this.kf.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  743. this.kf.Location = new System.Drawing.Point(51, 32);
  744. this.kf.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  745. this.kf.MaxValue = 10;
  746. this.kf.MinValue = 0;
  747. this.kf.Name = "kf";
  748. this.kf.ShowInkButton = Infragistics.Win.ShowInkButton.Always;
  749. this.kf.Size = new System.Drawing.Size(64, 21);
  750. this.kf.SpinButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.OnMouseEnter;
  751. this.kf.SpinWrap = true;
  752. this.kf.TabIndex = 21;
  753. this.kf.ValueChanged += new System.EventHandler(this.kf_ValueChanged);
  754. //
  755. // label6
  756. //
  757. this.label6.AutoSize = true;
  758. this.label6.Location = new System.Drawing.Point(293, 38);
  759. this.label6.Name = "label6";
  760. this.label6.Size = new System.Drawing.Size(77, 12);
  761. this.label6.TabIndex = 20;
  762. this.label6.Text = "适用大工序:";
  763. //
  764. // qydate
  765. //
  766. this.qydate.DateButtons.Add(dateButton1);
  767. this.qydate.Location = new System.Drawing.Point(177, 32);
  768. this.qydate.Name = "qydate";
  769. this.qydate.NonAutoSizeHeight = 21;
  770. this.qydate.Size = new System.Drawing.Size(83, 21);
  771. this.qydate.TabIndex = 18;
  772. this.qydate.Value = "2020-04-01 0:00:00";
  773. //
  774. // label5
  775. //
  776. this.label5.AutoSize = true;
  777. this.label5.Location = new System.Drawing.Point(121, 38);
  778. this.label5.Name = "label5";
  779. this.label5.Size = new System.Drawing.Size(65, 12);
  780. this.label5.TabIndex = 17;
  781. this.label5.Text = "启用日期:";
  782. //
  783. // label4
  784. //
  785. this.label4.AutoSize = true;
  786. this.label4.Location = new System.Drawing.Point(125, 66);
  787. this.label4.Name = "label4";
  788. this.label4.Size = new System.Drawing.Size(47, 12);
  789. this.label4.TabIndex = 16;
  790. this.label4.Text = "≤天数<";
  791. //
  792. // label3
  793. //
  794. this.label3.AutoSize = true;
  795. this.label3.Location = new System.Drawing.Point(10, 38);
  796. this.label3.Name = "label3";
  797. this.label3.Size = new System.Drawing.Size(41, 12);
  798. this.label3.TabIndex = 11;
  799. this.label3.Text = "扣分:";
  800. //
  801. // label2
  802. //
  803. this.label2.AutoSize = true;
  804. this.label2.Location = new System.Drawing.Point(9, 12);
  805. this.label2.Name = "label2";
  806. this.label2.Size = new System.Drawing.Size(89, 12);
  807. this.label2.TabIndex = 9;
  808. this.label2.Text = "流速扣分类型:";
  809. //
  810. // ultraExpandableGroupBox4
  811. //
  812. this.ultraExpandableGroupBox4.Controls.Add(this.ultraExpandableGroupBoxPanel4);
  813. this.ultraExpandableGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
  814. this.ultraExpandableGroupBox4.ExpandedSize = new System.Drawing.Size(519, 252);
  815. this.ultraExpandableGroupBox4.Location = new System.Drawing.Point(0, 0);
  816. this.ultraExpandableGroupBox4.Name = "ultraExpandableGroupBox4";
  817. this.ultraExpandableGroupBox4.Size = new System.Drawing.Size(519, 252);
  818. this.ultraExpandableGroupBox4.TabIndex = 0;
  819. this.ultraExpandableGroupBox4.Text = "流速扣分权重维护";
  820. this.ultraExpandableGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  821. //
  822. // ultraExpandableGroupBoxPanel4
  823. //
  824. this.ultraExpandableGroupBoxPanel4.Controls.Add(this.splitContainer8);
  825. this.ultraExpandableGroupBoxPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
  826. this.ultraExpandableGroupBoxPanel4.Location = new System.Drawing.Point(3, 20);
  827. this.ultraExpandableGroupBoxPanel4.Name = "ultraExpandableGroupBoxPanel4";
  828. this.ultraExpandableGroupBoxPanel4.Size = new System.Drawing.Size(513, 229);
  829. this.ultraExpandableGroupBoxPanel4.TabIndex = 0;
  830. //
  831. // splitContainer8
  832. //
  833. this.splitContainer8.Dock = System.Windows.Forms.DockStyle.Fill;
  834. this.splitContainer8.Location = new System.Drawing.Point(0, 0);
  835. this.splitContainer8.Name = "splitContainer8";
  836. this.splitContainer8.Orientation = System.Windows.Forms.Orientation.Horizontal;
  837. //
  838. // splitContainer8.Panel1
  839. //
  840. this.splitContainer8.Panel1.Controls.Add(this.ultraGridkfqz);
  841. //
  842. // splitContainer8.Panel2
  843. //
  844. this.splitContainer8.Panel2.AutoScroll = true;
  845. this.splitContainer8.Panel2.Controls.Add(this.uEGB_qz);
  846. this.splitContainer8.Size = new System.Drawing.Size(513, 229);
  847. this.splitContainer8.SplitterDistance = 116;
  848. this.splitContainer8.TabIndex = 0;
  849. //
  850. // ultraGridkfqz
  851. //
  852. appearance38.BackColor = System.Drawing.SystemColors.Window;
  853. appearance38.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  854. this.ultraGridkfqz.DisplayLayout.Appearance = appearance38;
  855. this.ultraGridkfqz.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  856. this.ultraGridkfqz.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  857. appearance39.BackColor = System.Drawing.SystemColors.ActiveBorder;
  858. appearance39.BackColor2 = System.Drawing.SystemColors.ControlDark;
  859. appearance39.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  860. appearance39.BorderColor = System.Drawing.SystemColors.Window;
  861. this.ultraGridkfqz.DisplayLayout.GroupByBox.Appearance = appearance39;
  862. appearance41.ForeColor = System.Drawing.SystemColors.GrayText;
  863. this.ultraGridkfqz.DisplayLayout.GroupByBox.BandLabelAppearance = appearance41;
  864. this.ultraGridkfqz.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  865. appearance40.BackColor = System.Drawing.SystemColors.ControlLightLight;
  866. appearance40.BackColor2 = System.Drawing.SystemColors.Control;
  867. appearance40.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  868. appearance40.ForeColor = System.Drawing.SystemColors.GrayText;
  869. this.ultraGridkfqz.DisplayLayout.GroupByBox.PromptAppearance = appearance40;
  870. this.ultraGridkfqz.DisplayLayout.MaxColScrollRegions = 1;
  871. this.ultraGridkfqz.DisplayLayout.MaxRowScrollRegions = 1;
  872. appearance44.BackColor = System.Drawing.SystemColors.Window;
  873. appearance44.ForeColor = System.Drawing.SystemColors.ControlText;
  874. this.ultraGridkfqz.DisplayLayout.Override.ActiveCellAppearance = appearance44;
  875. appearance47.BackColor = System.Drawing.SystemColors.Highlight;
  876. appearance47.ForeColor = System.Drawing.SystemColors.HighlightText;
  877. this.ultraGridkfqz.DisplayLayout.Override.ActiveRowAppearance = appearance47;
  878. this.ultraGridkfqz.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  879. this.ultraGridkfqz.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  880. appearance49.BackColor = System.Drawing.SystemColors.Window;
  881. this.ultraGridkfqz.DisplayLayout.Override.CardAreaAppearance = appearance49;
  882. appearance45.BorderColor = System.Drawing.Color.Silver;
  883. appearance45.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  884. this.ultraGridkfqz.DisplayLayout.Override.CellAppearance = appearance45;
  885. this.ultraGridkfqz.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  886. this.ultraGridkfqz.DisplayLayout.Override.CellPadding = 0;
  887. appearance43.BackColor = System.Drawing.SystemColors.Control;
  888. appearance43.BackColor2 = System.Drawing.SystemColors.ControlDark;
  889. appearance43.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  890. appearance43.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  891. appearance43.BorderColor = System.Drawing.SystemColors.Window;
  892. this.ultraGridkfqz.DisplayLayout.Override.GroupByRowAppearance = appearance43;
  893. appearance42.TextHAlignAsString = "Left";
  894. this.ultraGridkfqz.DisplayLayout.Override.HeaderAppearance = appearance42;
  895. this.ultraGridkfqz.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  896. this.ultraGridkfqz.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  897. appearance48.BackColor = System.Drawing.SystemColors.Window;
  898. appearance48.BorderColor = System.Drawing.Color.Silver;
  899. this.ultraGridkfqz.DisplayLayout.Override.RowAppearance = appearance48;
  900. this.ultraGridkfqz.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  901. this.ultraGridkfqz.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
  902. appearance46.BackColor = System.Drawing.SystemColors.ControlLight;
  903. this.ultraGridkfqz.DisplayLayout.Override.TemplateAddRowAppearance = appearance46;
  904. this.ultraGridkfqz.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  905. this.ultraGridkfqz.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  906. this.ultraGridkfqz.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  907. this.ultraGridkfqz.Dock = System.Windows.Forms.DockStyle.Fill;
  908. this.ultraGridkfqz.Location = new System.Drawing.Point(0, 0);
  909. this.ultraGridkfqz.Name = "ultraGridkfqz";
  910. this.ultraGridkfqz.Size = new System.Drawing.Size(513, 116);
  911. this.ultraGridkfqz.TabIndex = 0;
  912. this.ultraGridkfqz.Text = "ultraGrid1";
  913. this.ultraGridkfqz.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGridkfqz_AfterSelectChange);
  914. this.ultraGridkfqz.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGridkfqz_ClickCell);
  915. //
  916. // uEGB_qz
  917. //
  918. this.uEGB_qz.Controls.Add(this.ultraExpandableGroupBoxPanel5);
  919. this.uEGB_qz.Dock = System.Windows.Forms.DockStyle.Fill;
  920. this.uEGB_qz.ExpandedSize = new System.Drawing.Size(513, 109);
  921. this.uEGB_qz.Location = new System.Drawing.Point(0, 0);
  922. this.uEGB_qz.Name = "uEGB_qz";
  923. this.uEGB_qz.Size = new System.Drawing.Size(513, 109);
  924. this.uEGB_qz.TabIndex = 0;
  925. this.uEGB_qz.Text = "流速扣分权重编辑区";
  926. this.uEGB_qz.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  927. //
  928. // ultraExpandableGroupBoxPanel5
  929. //
  930. this.ultraExpandableGroupBoxPanel5.Controls.Add(this.isvalidqz);
  931. this.ultraExpandableGroupBoxPanel5.Controls.Add(this.uCb_kfqztype);
  932. this.ultraExpandableGroupBoxPanel5.Controls.Add(this.label18);
  933. this.ultraExpandableGroupBoxPanel5.Controls.Add(this.label25);
  934. this.ultraExpandableGroupBoxPanel5.Controls.Add(this.qz_id);
  935. this.ultraExpandableGroupBoxPanel5.Controls.Add(this.lab_kfqztype_desc);
  936. this.ultraExpandableGroupBoxPanel5.Controls.Add(this.uB_deleteqz);
  937. this.ultraExpandableGroupBoxPanel5.Controls.Add(this.uB_isvalidqz);
  938. this.ultraExpandableGroupBoxPanel5.Controls.Add(this.uB_saveqz);
  939. this.ultraExpandableGroupBoxPanel5.Controls.Add(this.qz);
  940. this.ultraExpandableGroupBoxPanel5.Controls.Add(this.qydateqz);
  941. this.ultraExpandableGroupBoxPanel5.Controls.Add(this.label20);
  942. this.ultraExpandableGroupBoxPanel5.Controls.Add(this.label21);
  943. this.ultraExpandableGroupBoxPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
  944. this.ultraExpandableGroupBoxPanel5.Location = new System.Drawing.Point(3, 20);
  945. this.ultraExpandableGroupBoxPanel5.Name = "ultraExpandableGroupBoxPanel5";
  946. this.ultraExpandableGroupBoxPanel5.Size = new System.Drawing.Size(507, 86);
  947. this.ultraExpandableGroupBoxPanel5.TabIndex = 0;
  948. //
  949. // isvalidqz
  950. //
  951. this.isvalidqz.AutoSize = true;
  952. this.isvalidqz.Location = new System.Drawing.Point(378, 40);
  953. this.isvalidqz.Name = "isvalidqz";
  954. this.isvalidqz.Size = new System.Drawing.Size(65, 12);
  955. this.isvalidqz.TabIndex = 48;
  956. this.isvalidqz.Text = "isvalid_qz";
  957. this.isvalidqz.TextChanged += new System.EventHandler(this.isvalidqz_TextChanged);
  958. //
  959. // uCb_kfqztype
  960. //
  961. valueListItem8.DataValue = "DC";
  962. valueListItem8.DisplayText = "待产";
  963. valueListItem9.DataValue = "QX";
  964. valueListItem9.DisplayText = "清线";
  965. valueListItem10.DataValue = "DSP";
  966. valueListItem10.DisplayText = "待判-送判";
  967. valueListItem11.DataValue = "DPD";
  968. valueListItem11.DisplayText = "待判-判定";
  969. valueListItem12.DataValue = "LXWT";
  970. valueListItem12.DisplayText = "离线-委托";
  971. valueListItem13.DataValue = "LXFX";
  972. valueListItem13.DisplayText = "离线-返线";
  973. valueListItem14.DataValue = "FP";
  974. valueListItem14.DisplayText = "废品";
  975. this.uCb_kfqztype.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  976. valueListItem8,
  977. valueListItem9,
  978. valueListItem10,
  979. valueListItem11,
  980. valueListItem12,
  981. valueListItem13,
  982. valueListItem14});
  983. this.uCb_kfqztype.Location = new System.Drawing.Point(117, 8);
  984. this.uCb_kfqztype.Name = "uCb_kfqztype";
  985. this.uCb_kfqztype.Size = new System.Drawing.Size(122, 21);
  986. this.uCb_kfqztype.TabIndex = 28;
  987. this.uCb_kfqztype.SelectionChanged += new System.EventHandler(this.uCb_kfqztype_SelectionChanged);
  988. this.uCb_kfqztype.TextChanged += new System.EventHandler(this.uCb_kfqztype_TextChanged);
  989. //
  990. // label18
  991. //
  992. this.label18.AutoSize = true;
  993. this.label18.Location = new System.Drawing.Point(8, 12);
  994. this.label18.Name = "label18";
  995. this.label18.Size = new System.Drawing.Size(113, 12);
  996. this.label18.TabIndex = 27;
  997. this.label18.Text = "流速扣分权重类型:";
  998. //
  999. // label25
  1000. //
  1001. this.label25.AutoSize = true;
  1002. this.label25.Location = new System.Drawing.Point(315, 40);
  1003. this.label25.Name = "label25";
  1004. this.label25.Size = new System.Drawing.Size(65, 12);
  1005. this.label25.TabIndex = 47;
  1006. this.label25.Text = "是否有效:";
  1007. //
  1008. // qz_id
  1009. //
  1010. this.qz_id.AutoSize = true;
  1011. this.qz_id.Location = new System.Drawing.Point(292, 39);
  1012. this.qz_id.Name = "qz_id";
  1013. this.qz_id.Size = new System.Drawing.Size(17, 12);
  1014. this.qz_id.TabIndex = 46;
  1015. this.qz_id.Text = "id";
  1016. this.qz_id.Visible = false;
  1017. this.qz_id.TextChanged += new System.EventHandler(this.qz_id_TextChanged);
  1018. //
  1019. // lab_kfqztype_desc
  1020. //
  1021. this.lab_kfqztype_desc.AutoSize = true;
  1022. this.lab_kfqztype_desc.Location = new System.Drawing.Point(8, 65);
  1023. this.lab_kfqztype_desc.Name = "lab_kfqztype_desc";
  1024. this.lab_kfqztype_desc.Size = new System.Drawing.Size(77, 12);
  1025. this.lab_kfqztype_desc.TabIndex = 45;
  1026. this.lab_kfqztype_desc.Text = "扣分权重说明";
  1027. //
  1028. // uB_deleteqz
  1029. //
  1030. this.uB_deleteqz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  1031. this.uB_deleteqz.DialogResult = System.Windows.Forms.DialogResult.Yes;
  1032. this.uB_deleteqz.Location = new System.Drawing.Point(397, 7);
  1033. this.uB_deleteqz.Name = "uB_deleteqz";
  1034. this.uB_deleteqz.Size = new System.Drawing.Size(46, 25);
  1035. this.uB_deleteqz.TabIndex = 44;
  1036. this.uB_deleteqz.Text = "删除";
  1037. this.uB_deleteqz.Click += new System.EventHandler(this.uB_deleteqz_Click);
  1038. //
  1039. // uB_isvalidqz
  1040. //
  1041. this.uB_isvalidqz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  1042. this.uB_isvalidqz.DialogResult = System.Windows.Forms.DialogResult.Yes;
  1043. this.uB_isvalidqz.Location = new System.Drawing.Point(334, 7);
  1044. this.uB_isvalidqz.Name = "uB_isvalidqz";
  1045. this.uB_isvalidqz.Size = new System.Drawing.Size(46, 25);
  1046. this.uB_isvalidqz.TabIndex = 43;
  1047. this.uB_isvalidqz.Text = "启用";
  1048. this.uB_isvalidqz.Click += new System.EventHandler(this.uB_isvalidqz_Click);
  1049. //
  1050. // uB_saveqz
  1051. //
  1052. this.uB_saveqz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  1053. this.uB_saveqz.DialogResult = System.Windows.Forms.DialogResult.Yes;
  1054. this.uB_saveqz.Location = new System.Drawing.Point(271, 7);
  1055. this.uB_saveqz.Name = "uB_saveqz";
  1056. this.uB_saveqz.Size = new System.Drawing.Size(46, 25);
  1057. this.uB_saveqz.TabIndex = 42;
  1058. this.uB_saveqz.Text = "保存";
  1059. this.uB_saveqz.Click += new System.EventHandler(this.uB_saveqz_Click);
  1060. //
  1061. // qz
  1062. //
  1063. appearance37.TextHAlignAsString = "Right";
  1064. this.qz.Appearance = appearance37;
  1065. this.qz.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1066. this.qz.Location = new System.Drawing.Point(48, 34);
  1067. this.qz.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  1068. this.qz.MaxValue = 100;
  1069. this.qz.MinValue = 0;
  1070. this.qz.Name = "qz";
  1071. this.qz.ShowInkButton = Infragistics.Win.ShowInkButton.Always;
  1072. this.qz.Size = new System.Drawing.Size(64, 21);
  1073. this.qz.SpinButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.OnMouseEnter;
  1074. this.qz.SpinWrap = true;
  1075. this.qz.TabIndex = 39;
  1076. this.qz.ValueChanged += new System.EventHandler(this.qz_ValueChanged);
  1077. //
  1078. // qydateqz
  1079. //
  1080. this.qydateqz.DateButtons.Add(dateButton2);
  1081. this.qydateqz.Location = new System.Drawing.Point(197, 34);
  1082. this.qydateqz.Name = "qydateqz";
  1083. this.qydateqz.NonAutoSizeHeight = 21;
  1084. this.qydateqz.Size = new System.Drawing.Size(83, 21);
  1085. this.qydateqz.TabIndex = 38;
  1086. this.qydateqz.Value = "2020-04-01 0:00:00";
  1087. //
  1088. // label20
  1089. //
  1090. this.label20.AutoSize = true;
  1091. this.label20.Location = new System.Drawing.Point(131, 40);
  1092. this.label20.Name = "label20";
  1093. this.label20.Size = new System.Drawing.Size(65, 12);
  1094. this.label20.TabIndex = 37;
  1095. this.label20.Text = "启用日期:";
  1096. //
  1097. // label21
  1098. //
  1099. this.label21.AutoSize = true;
  1100. this.label21.Location = new System.Drawing.Point(8, 40);
  1101. this.label21.Name = "label21";
  1102. this.label21.Size = new System.Drawing.Size(41, 12);
  1103. this.label21.TabIndex = 36;
  1104. this.label21.Text = "权重:";
  1105. //
  1106. // splitContainer3
  1107. //
  1108. this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
  1109. this.splitContainer3.Location = new System.Drawing.Point(0, 0);
  1110. this.splitContainer3.Name = "splitContainer3";
  1111. this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
  1112. //
  1113. // splitContainer3.Panel1
  1114. //
  1115. this.splitContainer3.Panel1.Controls.Add(this.splitContainer6);
  1116. //
  1117. // splitContainer3.Panel2
  1118. //
  1119. this.splitContainer3.Panel2.Controls.Add(this.splitContainer7);
  1120. this.splitContainer3.Size = new System.Drawing.Size(432, 615);
  1121. this.splitContainer3.SplitterDistance = 311;
  1122. this.splitContainer3.TabIndex = 0;
  1123. //
  1124. // splitContainer6
  1125. //
  1126. this.splitContainer6.Dock = System.Windows.Forms.DockStyle.Fill;
  1127. this.splitContainer6.Location = new System.Drawing.Point(0, 0);
  1128. this.splitContainer6.Name = "splitContainer6";
  1129. this.splitContainer6.Orientation = System.Windows.Forms.Orientation.Horizontal;
  1130. //
  1131. // splitContainer6.Panel1
  1132. //
  1133. this.splitContainer6.Panel1.Controls.Add(this.ultraGridkffj);
  1134. //
  1135. // splitContainer6.Panel2
  1136. //
  1137. this.splitContainer6.Panel2.AutoScroll = true;
  1138. this.splitContainer6.Panel2.Controls.Add(this.uEGB_fj);
  1139. this.splitContainer6.Size = new System.Drawing.Size(432, 311);
  1140. this.splitContainer6.SplitterDistance = 122;
  1141. this.splitContainer6.TabIndex = 3;
  1142. //
  1143. // ultraGridkffj
  1144. //
  1145. appearance25.BackColor = System.Drawing.SystemColors.Window;
  1146. appearance25.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1147. this.ultraGridkffj.DisplayLayout.Appearance = appearance25;
  1148. this.ultraGridkffj.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1149. this.ultraGridkffj.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1150. appearance26.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1151. appearance26.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1152. appearance26.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1153. appearance26.BorderColor = System.Drawing.SystemColors.Window;
  1154. this.ultraGridkffj.DisplayLayout.GroupByBox.Appearance = appearance26;
  1155. appearance27.ForeColor = System.Drawing.SystemColors.GrayText;
  1156. this.ultraGridkffj.DisplayLayout.GroupByBox.BandLabelAppearance = appearance27;
  1157. this.ultraGridkffj.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1158. appearance28.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1159. appearance28.BackColor2 = System.Drawing.SystemColors.Control;
  1160. appearance28.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1161. appearance28.ForeColor = System.Drawing.SystemColors.GrayText;
  1162. this.ultraGridkffj.DisplayLayout.GroupByBox.PromptAppearance = appearance28;
  1163. this.ultraGridkffj.DisplayLayout.MaxColScrollRegions = 1;
  1164. this.ultraGridkffj.DisplayLayout.MaxRowScrollRegions = 1;
  1165. appearance29.BackColor = System.Drawing.SystemColors.Window;
  1166. appearance29.ForeColor = System.Drawing.SystemColors.ControlText;
  1167. this.ultraGridkffj.DisplayLayout.Override.ActiveCellAppearance = appearance29;
  1168. appearance30.BackColor = System.Drawing.SystemColors.Highlight;
  1169. appearance30.ForeColor = System.Drawing.SystemColors.HighlightText;
  1170. this.ultraGridkffj.DisplayLayout.Override.ActiveRowAppearance = appearance30;
  1171. this.ultraGridkffj.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1172. this.ultraGridkffj.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1173. appearance31.BackColor = System.Drawing.SystemColors.Window;
  1174. this.ultraGridkffj.DisplayLayout.Override.CardAreaAppearance = appearance31;
  1175. appearance32.BorderColor = System.Drawing.Color.Silver;
  1176. appearance32.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1177. this.ultraGridkffj.DisplayLayout.Override.CellAppearance = appearance32;
  1178. this.ultraGridkffj.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1179. this.ultraGridkffj.DisplayLayout.Override.CellPadding = 0;
  1180. appearance33.BackColor = System.Drawing.SystemColors.Control;
  1181. appearance33.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1182. appearance33.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1183. appearance33.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1184. appearance33.BorderColor = System.Drawing.SystemColors.Window;
  1185. this.ultraGridkffj.DisplayLayout.Override.GroupByRowAppearance = appearance33;
  1186. appearance34.TextHAlignAsString = "Left";
  1187. this.ultraGridkffj.DisplayLayout.Override.HeaderAppearance = appearance34;
  1188. this.ultraGridkffj.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1189. this.ultraGridkffj.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1190. appearance35.BackColor = System.Drawing.SystemColors.Window;
  1191. appearance35.BorderColor = System.Drawing.Color.Silver;
  1192. this.ultraGridkffj.DisplayLayout.Override.RowAppearance = appearance35;
  1193. this.ultraGridkffj.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1194. this.ultraGridkffj.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
  1195. appearance36.BackColor = System.Drawing.SystemColors.ControlLight;
  1196. this.ultraGridkffj.DisplayLayout.Override.TemplateAddRowAppearance = appearance36;
  1197. this.ultraGridkffj.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1198. this.ultraGridkffj.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1199. this.ultraGridkffj.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1200. this.ultraGridkffj.Dock = System.Windows.Forms.DockStyle.Fill;
  1201. this.ultraGridkffj.Location = new System.Drawing.Point(0, 0);
  1202. this.ultraGridkffj.Name = "ultraGridkffj";
  1203. this.ultraGridkffj.Size = new System.Drawing.Size(432, 122);
  1204. this.ultraGridkffj.TabIndex = 0;
  1205. this.ultraGridkffj.Text = "ultraGrid2";
  1206. this.ultraGridkffj.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGridkffj_AfterSelectChange);
  1207. this.ultraGridkffj.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGridkffj_ClickCell);
  1208. //
  1209. // uEGB_fj
  1210. //
  1211. this.uEGB_fj.Controls.Add(this.ultraExpandableGroupBoxPanel2);
  1212. this.uEGB_fj.Dock = System.Windows.Forms.DockStyle.Fill;
  1213. this.uEGB_fj.ExpandedSize = new System.Drawing.Size(432, 185);
  1214. this.uEGB_fj.Location = new System.Drawing.Point(0, 0);
  1215. this.uEGB_fj.Name = "uEGB_fj";
  1216. this.uEGB_fj.Size = new System.Drawing.Size(432, 185);
  1217. this.uEGB_fj.TabIndex = 2;
  1218. this.uEGB_fj.Text = "附加项1编辑区";
  1219. this.uEGB_fj.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1220. //
  1221. // ultraExpandableGroupBoxPanel2
  1222. //
  1223. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.fj_value);
  1224. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.lab_kftypefj_name);
  1225. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.txt_kftypefj);
  1226. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label23);
  1227. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.lab_kdtypenamefj);
  1228. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.uB_isvalidfj);
  1229. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.isvalidfj);
  1230. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label28);
  1231. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.cLB_processcodefj);
  1232. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label26);
  1233. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.uB_deletefj);
  1234. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.fj_id);
  1235. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.qydatefj);
  1236. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label16);
  1237. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.uB_savefj);
  1238. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label14);
  1239. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label15);
  1240. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.uCb_fjtype);
  1241. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.label13);
  1242. this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  1243. this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 20);
  1244. this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
  1245. this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(426, 162);
  1246. this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
  1247. //
  1248. // fj_value
  1249. //
  1250. appearance50.TextHAlignAsString = "Right";
  1251. this.fj_value.Appearance = appearance50;
  1252. this.fj_value.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1253. this.fj_value.Location = new System.Drawing.Point(209, 33);
  1254. this.fj_value.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  1255. this.fj_value.MaxValue = 100;
  1256. this.fj_value.MinValue = 0;
  1257. this.fj_value.Name = "fj_value";
  1258. this.fj_value.Nullable = true;
  1259. this.fj_value.ShowInkButton = Infragistics.Win.ShowInkButton.Always;
  1260. this.fj_value.Size = new System.Drawing.Size(64, 21);
  1261. this.fj_value.SpinButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.OnMouseEnter;
  1262. this.fj_value.SpinWrap = true;
  1263. this.fj_value.TabIndex = 44;
  1264. this.fj_value.ValueChanged += new System.EventHandler(this.fj_value_ValueChanged);
  1265. //
  1266. // lab_kftypefj_name
  1267. //
  1268. this.lab_kftypefj_name.AutoSize = true;
  1269. this.lab_kftypefj_name.Location = new System.Drawing.Point(224, 15);
  1270. this.lab_kftypefj_name.Name = "lab_kftypefj_name";
  1271. this.lab_kftypefj_name.Size = new System.Drawing.Size(107, 12);
  1272. this.lab_kftypefj_name.TabIndex = 43;
  1273. this.lab_kftypefj_name.Text = "lab_kftypefj_name";
  1274. //
  1275. // txt_kftypefj
  1276. //
  1277. this.txt_kftypefj.Location = new System.Drawing.Point(96, 9);
  1278. this.txt_kftypefj.Name = "txt_kftypefj";
  1279. this.txt_kftypefj.ReadOnly = true;
  1280. this.txt_kftypefj.Size = new System.Drawing.Size(121, 21);
  1281. this.txt_kftypefj.TabIndex = 42;
  1282. this.txt_kftypefj.TextChanged += new System.EventHandler(this.txt_kftypefj_TextChanged);
  1283. //
  1284. // label23
  1285. //
  1286. this.label23.AutoSize = true;
  1287. this.label23.Location = new System.Drawing.Point(8, 15);
  1288. this.label23.Name = "label23";
  1289. this.label23.Size = new System.Drawing.Size(89, 12);
  1290. this.label23.TabIndex = 41;
  1291. this.label23.Text = "流速扣分类型:";
  1292. //
  1293. // lab_kdtypenamefj
  1294. //
  1295. this.lab_kdtypenamefj.AutoSize = true;
  1296. this.lab_kdtypenamefj.Location = new System.Drawing.Point(32, 106);
  1297. this.lab_kdtypenamefj.Name = "lab_kdtypenamefj";
  1298. this.lab_kdtypenamefj.Size = new System.Drawing.Size(65, 12);
  1299. this.lab_kdtypenamefj.TabIndex = 40;
  1300. this.lab_kdtypenamefj.Text = "附加项说明";
  1301. //
  1302. // uB_isvalidfj
  1303. //
  1304. this.uB_isvalidfj.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  1305. this.uB_isvalidfj.DialogResult = System.Windows.Forms.DialogResult.Yes;
  1306. this.uB_isvalidfj.Location = new System.Drawing.Point(333, 81);
  1307. this.uB_isvalidfj.Name = "uB_isvalidfj";
  1308. this.uB_isvalidfj.Size = new System.Drawing.Size(46, 25);
  1309. this.uB_isvalidfj.TabIndex = 39;
  1310. this.uB_isvalidfj.Text = "启用";
  1311. this.uB_isvalidfj.Click += new System.EventHandler(this.uB_isvalidfj_Click);
  1312. //
  1313. // isvalidfj
  1314. //
  1315. this.isvalidfj.AutoSize = true;
  1316. this.isvalidfj.Location = new System.Drawing.Point(72, 86);
  1317. this.isvalidfj.Name = "isvalidfj";
  1318. this.isvalidfj.Size = new System.Drawing.Size(47, 12);
  1319. this.isvalidfj.TabIndex = 38;
  1320. this.isvalidfj.Text = "isvalid";
  1321. this.isvalidfj.TextChanged += new System.EventHandler(this.isvalidfj_TextChanged);
  1322. //
  1323. // label28
  1324. //
  1325. this.label28.AutoSize = true;
  1326. this.label28.Location = new System.Drawing.Point(9, 86);
  1327. this.label28.Name = "label28";
  1328. this.label28.Size = new System.Drawing.Size(65, 12);
  1329. this.label28.TabIndex = 37;
  1330. this.label28.Text = "是否有效:";
  1331. //
  1332. // cLB_processcodefj
  1333. //
  1334. this.cLB_processcodefj.FormattingEnabled = true;
  1335. this.cLB_processcodefj.Items.AddRange(new object[] {
  1336. "B",
  1337. "D",
  1338. "E",
  1339. "F",
  1340. "G"});
  1341. this.cLB_processcodefj.Location = new System.Drawing.Point(244, 58);
  1342. this.cLB_processcodefj.Name = "cLB_processcodefj";
  1343. this.cLB_processcodefj.Size = new System.Drawing.Size(83, 84);
  1344. this.cLB_processcodefj.TabIndex = 35;
  1345. //
  1346. // label26
  1347. //
  1348. this.label26.AutoSize = true;
  1349. this.label26.Location = new System.Drawing.Point(173, 64);
  1350. this.label26.Name = "label26";
  1351. this.label26.Size = new System.Drawing.Size(77, 12);
  1352. this.label26.TabIndex = 36;
  1353. this.label26.Text = "适用大工序:";
  1354. //
  1355. // uB_deletefj
  1356. //
  1357. this.uB_deletefj.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  1358. this.uB_deletefj.DialogResult = System.Windows.Forms.DialogResult.Yes;
  1359. this.uB_deletefj.Location = new System.Drawing.Point(333, 117);
  1360. this.uB_deletefj.Name = "uB_deletefj";
  1361. this.uB_deletefj.Size = new System.Drawing.Size(46, 25);
  1362. this.uB_deletefj.TabIndex = 34;
  1363. this.uB_deletefj.Text = "删除";
  1364. this.uB_deletefj.Click += new System.EventHandler(this.uB_deletefj_Click);
  1365. //
  1366. // fj_id
  1367. //
  1368. this.fj_id.AutoSize = true;
  1369. this.fj_id.Location = new System.Drawing.Point(296, 35);
  1370. this.fj_id.Name = "fj_id";
  1371. this.fj_id.Size = new System.Drawing.Size(17, 12);
  1372. this.fj_id.TabIndex = 30;
  1373. this.fj_id.Text = "id";
  1374. this.fj_id.Visible = false;
  1375. this.fj_id.TextChanged += new System.EventHandler(this.fj_id_TextChanged);
  1376. //
  1377. // qydatefj
  1378. //
  1379. this.qydatefj.DateButtons.Add(dateButton3);
  1380. this.qydatefj.Location = new System.Drawing.Point(75, 58);
  1381. this.qydatefj.Name = "qydatefj";
  1382. this.qydatefj.NonAutoSizeHeight = 21;
  1383. this.qydatefj.Size = new System.Drawing.Size(83, 21);
  1384. this.qydatefj.TabIndex = 29;
  1385. this.qydatefj.Value = "2020-04-01 0:00:00";
  1386. //
  1387. // label16
  1388. //
  1389. this.label16.AutoSize = true;
  1390. this.label16.Location = new System.Drawing.Point(8, 64);
  1391. this.label16.Name = "label16";
  1392. this.label16.Size = new System.Drawing.Size(65, 12);
  1393. this.label16.TabIndex = 28;
  1394. this.label16.Text = "启用日期:";
  1395. //
  1396. // uB_savefj
  1397. //
  1398. this.uB_savefj.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  1399. this.uB_savefj.DialogResult = System.Windows.Forms.DialogResult.Yes;
  1400. this.uB_savefj.Location = new System.Drawing.Point(333, 50);
  1401. this.uB_savefj.Name = "uB_savefj";
  1402. this.uB_savefj.Size = new System.Drawing.Size(46, 25);
  1403. this.uB_savefj.TabIndex = 27;
  1404. this.uB_savefj.Text = "保存";
  1405. this.uB_savefj.Click += new System.EventHandler(this.uB_savefj_Click);
  1406. //
  1407. // label14
  1408. //
  1409. this.label14.AutoSize = true;
  1410. this.label14.Location = new System.Drawing.Point(273, 38);
  1411. this.label14.Name = "label14";
  1412. this.label14.Size = new System.Drawing.Size(17, 12);
  1413. this.label14.TabIndex = 22;
  1414. this.label14.Text = "天";
  1415. //
  1416. // label15
  1417. //
  1418. this.label15.AutoSize = true;
  1419. this.label15.Location = new System.Drawing.Point(165, 38);
  1420. this.label15.Name = "label15";
  1421. this.label15.Size = new System.Drawing.Size(41, 12);
  1422. this.label15.TabIndex = 20;
  1423. this.label15.Text = "增加:";
  1424. //
  1425. // uCb_fjtype
  1426. //
  1427. this.uCb_fjtype.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1428. valueListItem20.DataValue = "SSC";
  1429. valueListItem20.DisplayText = "SSC试验";
  1430. valueListItem21.DataValue = "HIC";
  1431. valueListItem21.DisplayText = "HIC试验";
  1432. this.uCb_fjtype.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1433. valueListItem20,
  1434. valueListItem21});
  1435. this.uCb_fjtype.Location = new System.Drawing.Point(46, 33);
  1436. this.uCb_fjtype.Name = "uCb_fjtype";
  1437. this.uCb_fjtype.Size = new System.Drawing.Size(113, 21);
  1438. this.uCb_fjtype.TabIndex = 12;
  1439. this.uCb_fjtype.SelectionChanged += new System.EventHandler(this.uCb_fjtype_SelectionChanged);
  1440. this.uCb_fjtype.TextChanged += new System.EventHandler(this.uCb_fjtype_TextChanged);
  1441. //
  1442. // label13
  1443. //
  1444. this.label13.AutoSize = true;
  1445. this.label13.Location = new System.Drawing.Point(9, 38);
  1446. this.label13.Name = "label13";
  1447. this.label13.Size = new System.Drawing.Size(41, 12);
  1448. this.label13.TabIndex = 11;
  1449. this.label13.Text = "类型:";
  1450. //
  1451. // splitContainer7
  1452. //
  1453. this.splitContainer7.Dock = System.Windows.Forms.DockStyle.Fill;
  1454. this.splitContainer7.Location = new System.Drawing.Point(0, 0);
  1455. this.splitContainer7.Name = "splitContainer7";
  1456. this.splitContainer7.Orientation = System.Windows.Forms.Orientation.Horizontal;
  1457. //
  1458. // splitContainer7.Panel1
  1459. //
  1460. this.splitContainer7.Panel1.Controls.Add(this.ultraGridkffgz);
  1461. //
  1462. // splitContainer7.Panel2
  1463. //
  1464. this.splitContainer7.Panel2.AutoScroll = true;
  1465. this.splitContainer7.Panel2.Controls.Add(this.uEGB_fgz);
  1466. this.splitContainer7.Size = new System.Drawing.Size(432, 300);
  1467. this.splitContainer7.SplitterDistance = 113;
  1468. this.splitContainer7.TabIndex = 4;
  1469. //
  1470. // ultraGridkffgz
  1471. //
  1472. appearance13.BackColor = System.Drawing.SystemColors.Window;
  1473. appearance13.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1474. this.ultraGridkffgz.DisplayLayout.Appearance = appearance13;
  1475. this.ultraGridkffgz.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1476. this.ultraGridkffgz.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1477. appearance14.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1478. appearance14.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1479. appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1480. appearance14.BorderColor = System.Drawing.SystemColors.Window;
  1481. this.ultraGridkffgz.DisplayLayout.GroupByBox.Appearance = appearance14;
  1482. appearance16.ForeColor = System.Drawing.SystemColors.GrayText;
  1483. this.ultraGridkffgz.DisplayLayout.GroupByBox.BandLabelAppearance = appearance16;
  1484. this.ultraGridkffgz.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1485. appearance15.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1486. appearance15.BackColor2 = System.Drawing.SystemColors.Control;
  1487. appearance15.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1488. appearance15.ForeColor = System.Drawing.SystemColors.GrayText;
  1489. this.ultraGridkffgz.DisplayLayout.GroupByBox.PromptAppearance = appearance15;
  1490. this.ultraGridkffgz.DisplayLayout.MaxColScrollRegions = 1;
  1491. this.ultraGridkffgz.DisplayLayout.MaxRowScrollRegions = 1;
  1492. appearance19.BackColor = System.Drawing.SystemColors.Window;
  1493. appearance19.ForeColor = System.Drawing.SystemColors.ControlText;
  1494. this.ultraGridkffgz.DisplayLayout.Override.ActiveCellAppearance = appearance19;
  1495. appearance22.BackColor = System.Drawing.SystemColors.Highlight;
  1496. appearance22.ForeColor = System.Drawing.SystemColors.HighlightText;
  1497. this.ultraGridkffgz.DisplayLayout.Override.ActiveRowAppearance = appearance22;
  1498. this.ultraGridkffgz.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1499. this.ultraGridkffgz.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1500. appearance24.BackColor = System.Drawing.SystemColors.Window;
  1501. this.ultraGridkffgz.DisplayLayout.Override.CardAreaAppearance = appearance24;
  1502. appearance20.BorderColor = System.Drawing.Color.Silver;
  1503. appearance20.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1504. this.ultraGridkffgz.DisplayLayout.Override.CellAppearance = appearance20;
  1505. this.ultraGridkffgz.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1506. this.ultraGridkffgz.DisplayLayout.Override.CellPadding = 0;
  1507. appearance18.BackColor = System.Drawing.SystemColors.Control;
  1508. appearance18.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1509. appearance18.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1510. appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1511. appearance18.BorderColor = System.Drawing.SystemColors.Window;
  1512. this.ultraGridkffgz.DisplayLayout.Override.GroupByRowAppearance = appearance18;
  1513. appearance17.TextHAlignAsString = "Left";
  1514. this.ultraGridkffgz.DisplayLayout.Override.HeaderAppearance = appearance17;
  1515. this.ultraGridkffgz.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1516. this.ultraGridkffgz.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1517. appearance23.BackColor = System.Drawing.SystemColors.Window;
  1518. appearance23.BorderColor = System.Drawing.Color.Silver;
  1519. this.ultraGridkffgz.DisplayLayout.Override.RowAppearance = appearance23;
  1520. this.ultraGridkffgz.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1521. this.ultraGridkffgz.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
  1522. appearance21.BackColor = System.Drawing.SystemColors.ControlLight;
  1523. this.ultraGridkffgz.DisplayLayout.Override.TemplateAddRowAppearance = appearance21;
  1524. this.ultraGridkffgz.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
  1525. this.ultraGridkffgz.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1526. this.ultraGridkffgz.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1527. this.ultraGridkffgz.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1528. this.ultraGridkffgz.Dock = System.Windows.Forms.DockStyle.Fill;
  1529. this.ultraGridkffgz.Location = new System.Drawing.Point(0, 0);
  1530. this.ultraGridkffgz.Name = "ultraGridkffgz";
  1531. this.ultraGridkffgz.Size = new System.Drawing.Size(432, 113);
  1532. this.ultraGridkffgz.TabIndex = 1;
  1533. this.ultraGridkffgz.Text = "ultraGrid3";
  1534. this.ultraGridkffgz.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ultraGridkffgz_AfterSelectChange);
  1535. this.ultraGridkffgz.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGridkffgz_ClickCell);
  1536. //
  1537. // uEGB_fgz
  1538. //
  1539. this.uEGB_fgz.Controls.Add(this.ultraExpandableGroupBoxPanel3);
  1540. this.uEGB_fgz.Dock = System.Windows.Forms.DockStyle.Fill;
  1541. this.uEGB_fgz.ExpandedSize = new System.Drawing.Size(432, 183);
  1542. this.uEGB_fgz.Location = new System.Drawing.Point(0, 0);
  1543. this.uEGB_fgz.Name = "uEGB_fgz";
  1544. this.uEGB_fgz.Size = new System.Drawing.Size(432, 183);
  1545. this.uEGB_fgz.TabIndex = 3;
  1546. this.uEGB_fgz.Text = "附加项2编辑区";
  1547. this.uEGB_fgz.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1548. //
  1549. // ultraExpandableGroupBoxPanel3
  1550. //
  1551. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.uCb_nowork_days);
  1552. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.uCb_nowork_times);
  1553. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.uB_savefgz);
  1554. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.lab_kftypefgz_name);
  1555. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.txt_kftypefgz);
  1556. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label24);
  1557. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.qydatefgz);
  1558. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label19);
  1559. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.isvalidfgz);
  1560. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label29);
  1561. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.uB_isvalidfgz);
  1562. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.uB_deletefgz);
  1563. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.fgz_id);
  1564. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.txt_noworktime_desc);
  1565. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label12);
  1566. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label11);
  1567. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label10);
  1568. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label9);
  1569. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.label8);
  1570. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.uCb_pline);
  1571. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.uCb_processcode);
  1572. this.ultraExpandableGroupBoxPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
  1573. this.ultraExpandableGroupBoxPanel3.Location = new System.Drawing.Point(3, 20);
  1574. this.ultraExpandableGroupBoxPanel3.Name = "ultraExpandableGroupBoxPanel3";
  1575. this.ultraExpandableGroupBoxPanel3.Size = new System.Drawing.Size(426, 160);
  1576. this.ultraExpandableGroupBoxPanel3.TabIndex = 0;
  1577. //
  1578. // uCb_nowork_days
  1579. //
  1580. this.uCb_nowork_days.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1581. valueListItem22.DataValue = "1";
  1582. valueListItem22.DisplayText = "星期一";
  1583. valueListItem23.DataValue = "2";
  1584. valueListItem23.DisplayText = "星期二";
  1585. valueListItem24.DataValue = "3";
  1586. valueListItem24.DisplayText = "星期三";
  1587. valueListItem25.DataValue = "4";
  1588. valueListItem25.DisplayText = "星期四";
  1589. valueListItem26.DataValue = "5";
  1590. valueListItem26.DisplayText = "星期五";
  1591. valueListItem35.DataValue = "6";
  1592. valueListItem35.DisplayText = "星期六";
  1593. valueListItem36.DataValue = "7";
  1594. valueListItem36.DisplayText = "星期日";
  1595. this.uCb_nowork_days.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1596. valueListItem22,
  1597. valueListItem23,
  1598. valueListItem24,
  1599. valueListItem25,
  1600. valueListItem26,
  1601. valueListItem35,
  1602. valueListItem36});
  1603. this.uCb_nowork_days.Location = new System.Drawing.Point(53, 58);
  1604. this.uCb_nowork_days.Name = "uCb_nowork_days";
  1605. this.uCb_nowork_days.Size = new System.Drawing.Size(68, 21);
  1606. this.uCb_nowork_days.TabIndex = 50;
  1607. this.uCb_nowork_days.SelectionChanged += new System.EventHandler(this.uCb_nowork_days_SelectionChanged);
  1608. this.uCb_nowork_days.TextChanged += new System.EventHandler(this.uCb_nowork_days_TextChanged);
  1609. //
  1610. // uCb_nowork_times
  1611. //
  1612. appearance53.TextHAlignAsString = "Right";
  1613. this.uCb_nowork_times.Appearance = appearance53;
  1614. this.uCb_nowork_times.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1615. this.uCb_nowork_times.Location = new System.Drawing.Point(169, 58);
  1616. this.uCb_nowork_times.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  1617. this.uCb_nowork_times.MaxValue = 23;
  1618. this.uCb_nowork_times.MinValue = 0;
  1619. this.uCb_nowork_times.Name = "uCb_nowork_times";
  1620. this.uCb_nowork_times.Nullable = true;
  1621. this.uCb_nowork_times.ShowInkButton = Infragistics.Win.ShowInkButton.Always;
  1622. this.uCb_nowork_times.Size = new System.Drawing.Size(64, 21);
  1623. this.uCb_nowork_times.SpinButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.OnMouseEnter;
  1624. this.uCb_nowork_times.SpinWrap = true;
  1625. this.uCb_nowork_times.TabIndex = 49;
  1626. this.uCb_nowork_times.ValueChanged += new System.EventHandler(this.uCb_nowork_times_ValueChanged);
  1627. //
  1628. // uB_savefgz
  1629. //
  1630. this.uB_savefgz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  1631. this.uB_savefgz.DialogResult = System.Windows.Forms.DialogResult.Yes;
  1632. this.uB_savefgz.Location = new System.Drawing.Point(316, 32);
  1633. this.uB_savefgz.Name = "uB_savefgz";
  1634. this.uB_savefgz.Size = new System.Drawing.Size(46, 25);
  1635. this.uB_savefgz.TabIndex = 26;
  1636. this.uB_savefgz.Text = "保存";
  1637. this.uB_savefgz.Click += new System.EventHandler(this.uB_savefgz_Click);
  1638. //
  1639. // lab_kftypefgz_name
  1640. //
  1641. this.lab_kftypefgz_name.AutoSize = true;
  1642. this.lab_kftypefgz_name.Location = new System.Drawing.Point(224, 12);
  1643. this.lab_kftypefgz_name.Name = "lab_kftypefgz_name";
  1644. this.lab_kftypefgz_name.Size = new System.Drawing.Size(113, 12);
  1645. this.lab_kftypefgz_name.TabIndex = 47;
  1646. this.lab_kftypefgz_name.Text = "lab_kftypefgz_name";
  1647. //
  1648. // txt_kftypefgz
  1649. //
  1650. this.txt_kftypefgz.Location = new System.Drawing.Point(96, 8);
  1651. this.txt_kftypefgz.Name = "txt_kftypefgz";
  1652. this.txt_kftypefgz.ReadOnly = true;
  1653. this.txt_kftypefgz.Size = new System.Drawing.Size(121, 21);
  1654. this.txt_kftypefgz.TabIndex = 46;
  1655. this.txt_kftypefgz.TextChanged += new System.EventHandler(this.txt_kftypefgz_TextChanged);
  1656. //
  1657. // label24
  1658. //
  1659. this.label24.AutoSize = true;
  1660. this.label24.Location = new System.Drawing.Point(8, 12);
  1661. this.label24.Name = "label24";
  1662. this.label24.Size = new System.Drawing.Size(89, 12);
  1663. this.label24.TabIndex = 45;
  1664. this.label24.Text = "流速扣分类型:";
  1665. //
  1666. // qydatefgz
  1667. //
  1668. this.qydatefgz.DateButtons.Add(dateButton4);
  1669. this.qydatefgz.Location = new System.Drawing.Point(207, 82);
  1670. this.qydatefgz.Name = "qydatefgz";
  1671. this.qydatefgz.NonAutoSizeHeight = 21;
  1672. this.qydatefgz.Size = new System.Drawing.Size(83, 21);
  1673. this.qydatefgz.TabIndex = 44;
  1674. this.qydatefgz.Value = "2020-04-01 0:00:00";
  1675. //
  1676. // label19
  1677. //
  1678. this.label19.AutoSize = true;
  1679. this.label19.Location = new System.Drawing.Point(136, 88);
  1680. this.label19.Name = "label19";
  1681. this.label19.Size = new System.Drawing.Size(65, 12);
  1682. this.label19.TabIndex = 43;
  1683. this.label19.Text = "启用日期:";
  1684. //
  1685. // isvalidfgz
  1686. //
  1687. this.isvalidfgz.AutoSize = true;
  1688. this.isvalidfgz.Location = new System.Drawing.Point(69, 88);
  1689. this.isvalidfgz.Name = "isvalidfgz";
  1690. this.isvalidfgz.Size = new System.Drawing.Size(47, 12);
  1691. this.isvalidfgz.TabIndex = 42;
  1692. this.isvalidfgz.Text = "isvalid";
  1693. this.isvalidfgz.TextChanged += new System.EventHandler(this.isvalidfgz_TextChanged);
  1694. //
  1695. // label29
  1696. //
  1697. this.label29.AutoSize = true;
  1698. this.label29.Location = new System.Drawing.Point(6, 88);
  1699. this.label29.Name = "label29";
  1700. this.label29.Size = new System.Drawing.Size(65, 12);
  1701. this.label29.TabIndex = 41;
  1702. this.label29.Text = "是否有效:";
  1703. //
  1704. // uB_isvalidfgz
  1705. //
  1706. this.uB_isvalidfgz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  1707. this.uB_isvalidfgz.DialogResult = System.Windows.Forms.DialogResult.Yes;
  1708. this.uB_isvalidfgz.Location = new System.Drawing.Point(316, 70);
  1709. this.uB_isvalidfgz.Name = "uB_isvalidfgz";
  1710. this.uB_isvalidfgz.Size = new System.Drawing.Size(46, 25);
  1711. this.uB_isvalidfgz.TabIndex = 40;
  1712. this.uB_isvalidfgz.Text = "启用";
  1713. this.uB_isvalidfgz.Click += new System.EventHandler(this.uB_isvalidfgz_Click);
  1714. //
  1715. // uB_deletefgz
  1716. //
  1717. this.uB_deletefgz.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2007RibbonButton;
  1718. this.uB_deletefgz.DialogResult = System.Windows.Forms.DialogResult.Yes;
  1719. this.uB_deletefgz.Location = new System.Drawing.Point(316, 105);
  1720. this.uB_deletefgz.Name = "uB_deletefgz";
  1721. this.uB_deletefgz.Size = new System.Drawing.Size(46, 25);
  1722. this.uB_deletefgz.TabIndex = 34;
  1723. this.uB_deletefgz.Text = "删除";
  1724. this.uB_deletefgz.Click += new System.EventHandler(this.uB_deletefgz_Click);
  1725. //
  1726. // fgz_id
  1727. //
  1728. this.fgz_id.AutoSize = true;
  1729. this.fgz_id.Location = new System.Drawing.Point(273, 62);
  1730. this.fgz_id.Name = "fgz_id";
  1731. this.fgz_id.Size = new System.Drawing.Size(17, 12);
  1732. this.fgz_id.TabIndex = 31;
  1733. this.fgz_id.Text = "id";
  1734. this.fgz_id.Visible = false;
  1735. this.fgz_id.TextChanged += new System.EventHandler(this.fgz_id_TextChanged);
  1736. //
  1737. // txt_noworktime_desc
  1738. //
  1739. this.txt_noworktime_desc.Location = new System.Drawing.Point(53, 107);
  1740. this.txt_noworktime_desc.Name = "txt_noworktime_desc";
  1741. this.txt_noworktime_desc.Size = new System.Drawing.Size(250, 21);
  1742. this.txt_noworktime_desc.TabIndex = 28;
  1743. //
  1744. // label12
  1745. //
  1746. this.label12.AutoSize = true;
  1747. this.label12.Location = new System.Drawing.Point(6, 112);
  1748. this.label12.Name = "label12";
  1749. this.label12.Size = new System.Drawing.Size(41, 12);
  1750. this.label12.TabIndex = 27;
  1751. this.label12.Text = "说明:";
  1752. //
  1753. // label11
  1754. //
  1755. this.label11.AutoSize = true;
  1756. this.label11.Location = new System.Drawing.Point(236, 64);
  1757. this.label11.Name = "label11";
  1758. this.label11.Size = new System.Drawing.Size(29, 12);
  1759. this.label11.TabIndex = 20;
  1760. this.label11.Text = "小时";
  1761. //
  1762. // label10
  1763. //
  1764. this.label10.AutoSize = true;
  1765. this.label10.Location = new System.Drawing.Point(126, 64);
  1766. this.label10.Name = "label10";
  1767. this.label10.Size = new System.Drawing.Size(29, 12);
  1768. this.label10.TabIndex = 19;
  1769. this.label10.Text = "星期";
  1770. //
  1771. // label9
  1772. //
  1773. this.label9.AutoSize = true;
  1774. this.label9.Location = new System.Drawing.Point(6, 64);
  1775. this.label9.Name = "label9";
  1776. this.label9.Size = new System.Drawing.Size(53, 12);
  1777. this.label9.TabIndex = 14;
  1778. this.label9.Text = "非工作:";
  1779. //
  1780. // label8
  1781. //
  1782. this.label8.AutoSize = true;
  1783. this.label8.Location = new System.Drawing.Point(6, 38);
  1784. this.label8.Name = "label8";
  1785. this.label8.Size = new System.Drawing.Size(41, 12);
  1786. this.label8.TabIndex = 13;
  1787. this.label8.Text = "产线:";
  1788. //
  1789. // uCb_pline
  1790. //
  1791. this.uCb_pline.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
  1792. this.uCb_pline.DisplayMember = "PLINE_NAME";
  1793. this.uCb_pline.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1794. valueListItem1.DataValue = "ls_dc";
  1795. valueListItem1.DisplayText = "流速-待产";
  1796. valueListItem2.DataValue = "ls_qx";
  1797. valueListItem2.DisplayText = "流速-清线";
  1798. valueListItem3.DataValue = "ls_dpsp";
  1799. valueListItem3.DisplayText = "流速-待判-送判";
  1800. valueListItem4.DataValue = "ls_dppd";
  1801. valueListItem4.DisplayText = "流速-待判-判定";
  1802. valueListItem5.DataValue = "ls_lxwt";
  1803. valueListItem5.DisplayText = "流速-离线-委托";
  1804. valueListItem6.DataValue = "ls_lxfx";
  1805. valueListItem6.DisplayText = "流速-离线-返线";
  1806. valueListItem7.DataValue = "ls_fp";
  1807. valueListItem7.DisplayText = "流速-废品";
  1808. this.uCb_pline.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1809. valueListItem1,
  1810. valueListItem2,
  1811. valueListItem3,
  1812. valueListItem4,
  1813. valueListItem5,
  1814. valueListItem6,
  1815. valueListItem7});
  1816. this.uCb_pline.Location = new System.Drawing.Point(126, 33);
  1817. this.uCb_pline.Name = "uCb_pline";
  1818. this.uCb_pline.Size = new System.Drawing.Size(179, 21);
  1819. this.uCb_pline.TabIndex = 12;
  1820. this.uCb_pline.ValueMember = "PLINE_CODE";
  1821. this.uCb_pline.SelectionChanged += new System.EventHandler(this.uCb_pline_SelectionChanged);
  1822. this.uCb_pline.TextChanged += new System.EventHandler(this.uCb_pline_TextChanged);
  1823. //
  1824. // uCb_processcode
  1825. //
  1826. this.uCb_processcode.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1827. valueListItem27.DataValue = "B";
  1828. valueListItem27.DisplayText = "炼钢";
  1829. valueListItem28.DataValue = "D";
  1830. valueListItem28.DisplayText = "轧管";
  1831. valueListItem32.DataValue = "E";
  1832. valueListItem32.DisplayText = "镦拔扩";
  1833. valueListItem33.DataValue = "F";
  1834. valueListItem33.DisplayText = "热处理";
  1835. valueListItem34.DataValue = "G";
  1836. valueListItem34.DisplayText = "管加工";
  1837. this.uCb_processcode.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1838. valueListItem27,
  1839. valueListItem28,
  1840. valueListItem32,
  1841. valueListItem33,
  1842. valueListItem34});
  1843. this.uCb_processcode.Location = new System.Drawing.Point(53, 33);
  1844. this.uCb_processcode.Name = "uCb_processcode";
  1845. this.uCb_processcode.Size = new System.Drawing.Size(68, 21);
  1846. this.uCb_processcode.TabIndex = 11;
  1847. this.uCb_processcode.SelectionChanged += new System.EventHandler(this.uCb_processcode_SelectionChanged);
  1848. this.uCb_processcode.TextChanged += new System.EventHandler(this.uCb_processcode_TextChanged);
  1849. //
  1850. // RptPVKFSetting
  1851. //
  1852. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1853. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1854. this.ClientSize = new System.Drawing.Size(955, 663);
  1855. this.Controls.Add(this.splitContainer1);
  1856. this.Name = "RptPVKFSetting";
  1857. this.Text = "生产流速扣分设置";
  1858. this.Load += new System.EventHandler(this.RptPVKFSetting_Load);
  1859. this.splitContainer1.Panel1.ResumeLayout(false);
  1860. this.splitContainer1.Panel2.ResumeLayout(false);
  1861. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  1862. this.splitContainer1.ResumeLayout(false);
  1863. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  1864. this.ultraGroupBox1.ResumeLayout(false);
  1865. this.ultraGroupBox1.PerformLayout();
  1866. ((System.ComponentModel.ISupportInitialize)(this.uCb_kftype)).EndInit();
  1867. this.splitContainer2.Panel1.ResumeLayout(false);
  1868. this.splitContainer2.Panel2.ResumeLayout(false);
  1869. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
  1870. this.splitContainer2.ResumeLayout(false);
  1871. this.splitContainer4.Panel1.ResumeLayout(false);
  1872. this.splitContainer4.Panel2.ResumeLayout(false);
  1873. ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).EndInit();
  1874. this.splitContainer4.ResumeLayout(false);
  1875. this.splitContainer5.Panel1.ResumeLayout(false);
  1876. this.splitContainer5.Panel2.ResumeLayout(false);
  1877. ((System.ComponentModel.ISupportInitialize)(this.splitContainer5)).EndInit();
  1878. this.splitContainer5.ResumeLayout(false);
  1879. ((System.ComponentModel.ISupportInitialize)(this.ultraGridkf)).EndInit();
  1880. ((System.ComponentModel.ISupportInitialize)(this.uEGB_kf)).EndInit();
  1881. this.uEGB_kf.ResumeLayout(false);
  1882. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  1883. this.ultraExpandableGroupBoxPanel1.PerformLayout();
  1884. ((System.ComponentModel.ISupportInitialize)(this.max_range)).EndInit();
  1885. ((System.ComponentModel.ISupportInitialize)(this.min_range)).EndInit();
  1886. ((System.ComponentModel.ISupportInitialize)(this.kf)).EndInit();
  1887. ((System.ComponentModel.ISupportInitialize)(this.qydate)).EndInit();
  1888. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox4)).EndInit();
  1889. this.ultraExpandableGroupBox4.ResumeLayout(false);
  1890. this.ultraExpandableGroupBoxPanel4.ResumeLayout(false);
  1891. this.splitContainer8.Panel1.ResumeLayout(false);
  1892. this.splitContainer8.Panel2.ResumeLayout(false);
  1893. ((System.ComponentModel.ISupportInitialize)(this.splitContainer8)).EndInit();
  1894. this.splitContainer8.ResumeLayout(false);
  1895. ((System.ComponentModel.ISupportInitialize)(this.ultraGridkfqz)).EndInit();
  1896. ((System.ComponentModel.ISupportInitialize)(this.uEGB_qz)).EndInit();
  1897. this.uEGB_qz.ResumeLayout(false);
  1898. this.ultraExpandableGroupBoxPanel5.ResumeLayout(false);
  1899. this.ultraExpandableGroupBoxPanel5.PerformLayout();
  1900. ((System.ComponentModel.ISupportInitialize)(this.uCb_kfqztype)).EndInit();
  1901. ((System.ComponentModel.ISupportInitialize)(this.qz)).EndInit();
  1902. ((System.ComponentModel.ISupportInitialize)(this.qydateqz)).EndInit();
  1903. this.splitContainer3.Panel1.ResumeLayout(false);
  1904. this.splitContainer3.Panel2.ResumeLayout(false);
  1905. ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
  1906. this.splitContainer3.ResumeLayout(false);
  1907. this.splitContainer6.Panel1.ResumeLayout(false);
  1908. this.splitContainer6.Panel2.ResumeLayout(false);
  1909. ((System.ComponentModel.ISupportInitialize)(this.splitContainer6)).EndInit();
  1910. this.splitContainer6.ResumeLayout(false);
  1911. ((System.ComponentModel.ISupportInitialize)(this.ultraGridkffj)).EndInit();
  1912. ((System.ComponentModel.ISupportInitialize)(this.uEGB_fj)).EndInit();
  1913. this.uEGB_fj.ResumeLayout(false);
  1914. this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
  1915. this.ultraExpandableGroupBoxPanel2.PerformLayout();
  1916. ((System.ComponentModel.ISupportInitialize)(this.fj_value)).EndInit();
  1917. ((System.ComponentModel.ISupportInitialize)(this.qydatefj)).EndInit();
  1918. ((System.ComponentModel.ISupportInitialize)(this.uCb_fjtype)).EndInit();
  1919. this.splitContainer7.Panel1.ResumeLayout(false);
  1920. this.splitContainer7.Panel2.ResumeLayout(false);
  1921. ((System.ComponentModel.ISupportInitialize)(this.splitContainer7)).EndInit();
  1922. this.splitContainer7.ResumeLayout(false);
  1923. ((System.ComponentModel.ISupportInitialize)(this.ultraGridkffgz)).EndInit();
  1924. ((System.ComponentModel.ISupportInitialize)(this.uEGB_fgz)).EndInit();
  1925. this.uEGB_fgz.ResumeLayout(false);
  1926. this.ultraExpandableGroupBoxPanel3.ResumeLayout(false);
  1927. this.ultraExpandableGroupBoxPanel3.PerformLayout();
  1928. ((System.ComponentModel.ISupportInitialize)(this.uCb_nowork_days)).EndInit();
  1929. ((System.ComponentModel.ISupportInitialize)(this.uCb_nowork_times)).EndInit();
  1930. ((System.ComponentModel.ISupportInitialize)(this.qydatefgz)).EndInit();
  1931. ((System.ComponentModel.ISupportInitialize)(this.uCb_pline)).EndInit();
  1932. ((System.ComponentModel.ISupportInitialize)(this.uCb_processcode)).EndInit();
  1933. this.ResumeLayout(false);
  1934. }
  1935. #endregion
  1936. private System.Windows.Forms.SplitContainer splitContainer1;
  1937. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  1938. private System.Windows.Forms.SplitContainer splitContainer2;
  1939. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridkf;
  1940. private Infragistics.Win.Misc.UltraExpandableGroupBox uEGB_kf;
  1941. private System.Windows.Forms.SplitContainer splitContainer3;
  1942. private Infragistics.Win.Misc.UltraExpandableGroupBox uEGB_fj;
  1943. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel2;
  1944. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridkffj;
  1945. private Infragistics.Win.Misc.UltraExpandableGroupBox uEGB_fgz;
  1946. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridkffgz;
  1947. private Infragistics.Win.UltraWinEditors.UltraComboEditor uCb_kftype;
  1948. private System.Windows.Forms.Label label1;
  1949. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel3;
  1950. private System.Windows.Forms.Label label9;
  1951. private System.Windows.Forms.Label label8;
  1952. private Infragistics.Win.UltraWinEditors.UltraComboEditor uCb_pline;
  1953. private Infragistics.Win.UltraWinEditors.UltraComboEditor uCb_processcode;
  1954. private System.Windows.Forms.Label label11;
  1955. private System.Windows.Forms.Label label10;
  1956. private System.Windows.Forms.Label label12;
  1957. private Infragistics.Win.Misc.UltraButton uB_savefgz;
  1958. private System.Windows.Forms.TextBox txt_noworktime_desc;
  1959. private Infragistics.Win.UltraWinEditors.UltraComboEditor uCb_fjtype;
  1960. private System.Windows.Forms.Label label13;
  1961. private System.Windows.Forms.Label label14;
  1962. private System.Windows.Forms.Label label15;
  1963. private Infragistics.Win.Misc.UltraButton uB_savefj;
  1964. private Infragistics.Win.Misc.UltraButton uB_addkf;
  1965. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo qydatefj;
  1966. private System.Windows.Forms.Label label16;
  1967. private System.Windows.Forms.Label fj_id;
  1968. private System.Windows.Forms.Label fgz_id;
  1969. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  1970. private Infragistics.Win.Misc.UltraButton uB_delete;
  1971. private Infragistics.Win.Misc.UltraButton uB_isvalid;
  1972. private System.Windows.Forms.Label isvalid;
  1973. private System.Windows.Forms.Label label17;
  1974. private System.Windows.Forms.Label id;
  1975. private System.Windows.Forms.TextBox txt_kftype;
  1976. private Infragistics.Win.Misc.UltraButton uB_addkffgz;
  1977. private Infragistics.Win.Misc.UltraButton uB_addkffj;
  1978. private Infragistics.Win.Misc.UltraButton uB_savekf;
  1979. private System.Windows.Forms.CheckedListBox cLB_processcode;
  1980. private System.Windows.Forms.Label lab_qztypename;
  1981. private System.Windows.Forms.Label label7;
  1982. private Infragistics.Win.UltraWinEditors.UltraNumericEditor kf;
  1983. private System.Windows.Forms.Label label6;
  1984. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo qydate;
  1985. private System.Windows.Forms.Label label5;
  1986. private System.Windows.Forms.Label label4;
  1987. private System.Windows.Forms.Label label3;
  1988. private System.Windows.Forms.Label label2;
  1989. private Infragistics.Win.Misc.UltraButton uB_deletefj;
  1990. private Infragistics.Win.Misc.UltraButton uB_deletefgz;
  1991. private System.Windows.Forms.Label lab_kftype_name;
  1992. private System.Windows.Forms.SplitContainer splitContainer4;
  1993. private System.Windows.Forms.SplitContainer splitContainer5;
  1994. private System.Windows.Forms.SplitContainer splitContainer6;
  1995. private System.Windows.Forms.SplitContainer splitContainer7;
  1996. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox4;
  1997. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel4;
  1998. private System.Windows.Forms.SplitContainer splitContainer8;
  1999. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridkfqz;
  2000. private Infragistics.Win.Misc.UltraExpandableGroupBox uEGB_qz;
  2001. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel5;
  2002. private Infragistics.Win.Misc.UltraButton uB_addkfqz;
  2003. private Infragistics.Win.UltraWinEditors.UltraComboEditor uCb_kfqztype;
  2004. private System.Windows.Forms.Label label18;
  2005. private System.Windows.Forms.Label isvalidqz;
  2006. private System.Windows.Forms.Label label25;
  2007. private System.Windows.Forms.Label qz_id;
  2008. private System.Windows.Forms.Label lab_kfqztype_desc;
  2009. private Infragistics.Win.Misc.UltraButton uB_deleteqz;
  2010. private Infragistics.Win.Misc.UltraButton uB_isvalidqz;
  2011. private Infragistics.Win.Misc.UltraButton uB_saveqz;
  2012. private Infragistics.Win.UltraWinEditors.UltraNumericEditor qz;
  2013. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo qydateqz;
  2014. private System.Windows.Forms.Label label20;
  2015. private System.Windows.Forms.Label label21;
  2016. private Infragistics.Win.Misc.UltraButton uB_isvalidfj;
  2017. private System.Windows.Forms.Label isvalidfj;
  2018. private System.Windows.Forms.Label label28;
  2019. private System.Windows.Forms.CheckedListBox cLB_processcodefj;
  2020. private System.Windows.Forms.Label label26;
  2021. private System.Windows.Forms.Label lab_kdtypenamefj;
  2022. private System.Windows.Forms.Label isvalidfgz;
  2023. private System.Windows.Forms.Label label29;
  2024. private Infragistics.Win.Misc.UltraButton uB_isvalidfgz;
  2025. private Infragistics.Win.UltraWinEditors.UltraNumericEditor max_range;
  2026. private Infragistics.Win.UltraWinEditors.UltraNumericEditor min_range;
  2027. private System.Windows.Forms.Label lab_kftypefj_name;
  2028. private System.Windows.Forms.TextBox txt_kftypefj;
  2029. private System.Windows.Forms.Label label23;
  2030. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo qydatefgz;
  2031. private System.Windows.Forms.Label label19;
  2032. private System.Windows.Forms.Label lab_kftypefgz_name;
  2033. private System.Windows.Forms.TextBox txt_kftypefgz;
  2034. private System.Windows.Forms.Label label24;
  2035. private Infragistics.Win.UltraWinEditors.UltraNumericEditor fj_value;
  2036. private Infragistics.Win.UltraWinEditors.UltraNumericEditor uCb_nowork_times;
  2037. private Infragistics.Win.UltraWinEditors.UltraComboEditor uCb_nowork_days;
  2038. private Infragistics.Win.Misc.UltraButton uB_ImportData;
  2039. }
  2040. }