Clearing.Designer.cs 181 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781
  1. namespace PTMedicalInsurance.Forms
  2. {
  3. partial class Clearing
  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. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
  35. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
  36. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
  37. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
  38. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle46 = new System.Windows.Forms.DataGridViewCellStyle();
  39. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle47 = new System.Windows.Forms.DataGridViewCellStyle();
  40. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle48 = new System.Windows.Forms.DataGridViewCellStyle();
  41. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle49 = new System.Windows.Forms.DataGridViewCellStyle();
  42. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle50 = new System.Windows.Forms.DataGridViewCellStyle();
  43. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Clearing));
  44. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
  45. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
  46. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
  47. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
  48. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
  49. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
  50. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
  51. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
  52. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
  53. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
  54. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle51 = new System.Windows.Forms.DataGridViewCellStyle();
  55. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle52 = new System.Windows.Forms.DataGridViewCellStyle();
  56. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle53 = new System.Windows.Forms.DataGridViewCellStyle();
  57. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle54 = new System.Windows.Forms.DataGridViewCellStyle();
  58. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle55 = new System.Windows.Forms.DataGridViewCellStyle();
  59. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
  60. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
  61. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
  62. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
  63. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
  64. this.uiTabControl1 = new Sunny.UI.UITabControl();
  65. this.tabPage1 = new System.Windows.Forms.TabPage();
  66. this.uiPanel2 = new Sunny.UI.UIPanel();
  67. this.uiTabControl3 = new Sunny.UI.UITabControl();
  68. this.tabPage6 = new System.Windows.Forms.TabPage();
  69. this.dgvHisSettlRec = new Sunny.UI.UIDataGridView();
  70. this.tabPage7 = new System.Windows.Forms.TabPage();
  71. this.dgvCenterSettlRec = new Sunny.UI.UIDataGridView();
  72. this.tabPage8 = new System.Windows.Forms.TabPage();
  73. this.rtbCheckDetailLog = new Sunny.UI.UIRichTextBox();
  74. this.uiTabControl2 = new Sunny.UI.UITabControl();
  75. this.tabPage4 = new System.Windows.Forms.TabPage();
  76. this.dgvSettlSummary = new Sunny.UI.UIDataGridView();
  77. this.cmsCheck = new Sunny.UI.UIContextMenuStrip();
  78. this.tsmCheck_Single = new System.Windows.Forms.ToolStripMenuItem();
  79. this.tsmCheckDetail_Single = new System.Windows.Forms.ToolStripMenuItem();
  80. this.tsmCheck_Batch = new System.Windows.Forms.ToolStripMenuItem();
  81. this.tsmCheckDetail_Batch = new System.Windows.Forms.ToolStripMenuItem();
  82. this.tsmHisRecord = new System.Windows.Forms.ToolStripMenuItem();
  83. this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
  84. this.tsmAICheck = new System.Windows.Forms.ToolStripMenuItem();
  85. this.导出TXTToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  86. this.tsmExport = new System.Windows.Forms.ToolStripMenuItem();
  87. this.tsmCompress = new System.Windows.Forms.ToolStripMenuItem();
  88. this.tsmZIPToSDec = new System.Windows.Forms.ToolStripMenuItem();
  89. this.tsmUploadZIP = new System.Windows.Forms.ToolStripMenuItem();
  90. this.tsm3202 = new System.Windows.Forms.ToolStripMenuItem();
  91. this.tsmDownload = new System.Windows.Forms.ToolStripMenuItem();
  92. this.tsmUnCompress = new System.Windows.Forms.ToolStripMenuItem();
  93. this.tsmImport = new System.Windows.Forms.ToolStripMenuItem();
  94. this.tsmHandCheck = new System.Windows.Forms.ToolStripMenuItem();
  95. this.tabPage5 = new System.Windows.Forms.TabPage();
  96. this.rtbCheckLog = new Sunny.UI.UIRichTextBox();
  97. this.uiPanel1 = new Sunny.UI.UIPanel();
  98. this.tbTmp = new System.Windows.Forms.RichTextBox();
  99. this.gbConditionSet = new Sunny.UI.UIGroupBox();
  100. this.cbxInterface = new Sunny.UI.UIComboBox();
  101. this.tbSettlOption = new Sunny.UI.UITextBox();
  102. this.cbxValid = new Sunny.UI.UIComboBox();
  103. this.uiLabel5 = new Sunny.UI.UILabel();
  104. this.uiLabel4 = new Sunny.UI.UILabel();
  105. this.cbxClrType = new Sunny.UI.UIComboBox();
  106. this.uiLabel3 = new Sunny.UI.UILabel();
  107. this.cbxInsuType = new Sunny.UI.UIComboBox();
  108. this.uiLabel2 = new Sunny.UI.UILabel();
  109. this.uiLabel1 = new Sunny.UI.UILabel();
  110. this.cbgGroupSet = new Sunny.UI.UICheckBoxGroup();
  111. this.uiGroupBox1 = new Sunny.UI.UIGroupBox();
  112. this.uiGroupBox10 = new Sunny.UI.UIGroupBox();
  113. this.uiButton4 = new Sunny.UI.UIButton();
  114. this.uiButton5 = new Sunny.UI.UIButton();
  115. this.Btn_Query = new Sunny.UI.UIButton();
  116. this.btnQuerySettlSummary = new Sunny.UI.UIButton();
  117. this.btnClose = new Sunny.UI.UIButton();
  118. this.btnBatchCheck = new Sunny.UI.UIButton();
  119. this.gbDateTime = new Sunny.UI.UIGroupBox();
  120. this.btnReduceOndDay = new Sunny.UI.UISymbolButton();
  121. this.btnAddOneDay = new Sunny.UI.UISymbolButton();
  122. this.dpED = new Sunny.UI.UIDatetimePicker();
  123. this.dpST = new Sunny.UI.UIDatetimePicker();
  124. this.tabPage10 = new System.Windows.Forms.TabPage();
  125. this.uiPanel7 = new Sunny.UI.UIPanel();
  126. this.uiTabControl6 = new Sunny.UI.UITabControl();
  127. this.tabPage14 = new System.Windows.Forms.TabPage();
  128. this.rtbOthCheckResultRecord = new Sunny.UI.UIRichTextBox();
  129. this.uiTabControl7 = new Sunny.UI.UITabControl();
  130. this.tabPage15 = new System.Windows.Forms.TabPage();
  131. this.dgvOthCheck = new Sunny.UI.UIDataGridView();
  132. this.cmdOthPlcCheck = new Sunny.UI.UIContextMenuStrip();
  133. this.tsmOthPlcCheck = new System.Windows.Forms.ToolStripMenuItem();
  134. this.uiPanel6 = new Sunny.UI.UIPanel();
  135. this.uiGroupBox7 = new Sunny.UI.UIGroupBox();
  136. this.uiTextBox1 = new Sunny.UI.UITextBox();
  137. this.cbxValid_O = new Sunny.UI.UIComboBox();
  138. this.uiLabel12 = new Sunny.UI.UILabel();
  139. this.uiLabel14 = new Sunny.UI.UILabel();
  140. this.cbxClrType_O = new Sunny.UI.UIComboBox();
  141. this.uiLabel15 = new Sunny.UI.UILabel();
  142. this.uiComboBox4 = new Sunny.UI.UIComboBox();
  143. this.uiLabel16 = new Sunny.UI.UILabel();
  144. this.uiGroupBox8 = new Sunny.UI.UIGroupBox();
  145. this.uiButton1 = new Sunny.UI.UIButton();
  146. this.uiButton2 = new Sunny.UI.UIButton();
  147. this.uiButton3 = new Sunny.UI.UIButton();
  148. this.uiGroupBox9 = new Sunny.UI.UIGroupBox();
  149. this.uiSymbolButton1 = new Sunny.UI.UISymbolButton();
  150. this.uiSymbolButton2 = new Sunny.UI.UISymbolButton();
  151. this.dpED_O = new Sunny.UI.UIDatetimePicker();
  152. this.dpST_O = new Sunny.UI.UIDatetimePicker();
  153. this.tabPage2 = new System.Windows.Forms.TabPage();
  154. this.uiPanel4 = new Sunny.UI.UIPanel();
  155. this.uiTabControl4 = new Sunny.UI.UITabControl();
  156. this.tabPage9 = new System.Windows.Forms.TabPage();
  157. this.dgvHisSettlRec_2 = new Sunny.UI.UIDataGridView();
  158. this.uiTabControl5 = new Sunny.UI.UITabControl();
  159. this.tabPage12 = new System.Windows.Forms.TabPage();
  160. this.dgvClearingSum = new Sunny.UI.UIDataGridView();
  161. this.cmsClearing = new Sunny.UI.UIContextMenuStrip();
  162. this.tmsClearing_2 = new System.Windows.Forms.ToolStripMenuItem();
  163. this.tmsHisSettlRecord_2 = new System.Windows.Forms.ToolStripMenuItem();
  164. this.uiPanel3 = new Sunny.UI.UIPanel();
  165. this.uiGroupBox3 = new Sunny.UI.UIGroupBox();
  166. this.btnClose_2 = new Sunny.UI.UIButton();
  167. this.btnPatchClr = new Sunny.UI.UIButton();
  168. this.btnQueryClrSum = new Sunny.UI.UIButton();
  169. this.uiGroupBox2 = new Sunny.UI.UIGroupBox();
  170. this.tbInsuPlc = new Sunny.UI.UITextBox();
  171. this.uiLabel18 = new Sunny.UI.UILabel();
  172. this.cbOtherPlaceFlag = new Sunny.UI.UIComboBox();
  173. this.uiLabel19 = new Sunny.UI.UILabel();
  174. this.cbClrWay_2 = new Sunny.UI.UIComboBox();
  175. this.uiLabel11 = new Sunny.UI.UILabel();
  176. this.cbInterface_2 = new Sunny.UI.UIComboBox();
  177. this.tbSettlOption_2 = new Sunny.UI.UITextBox();
  178. this.cbValid_2 = new Sunny.UI.UIComboBox();
  179. this.uiLabel6 = new Sunny.UI.UILabel();
  180. this.uiLabel7 = new Sunny.UI.UILabel();
  181. this.cbClrType_2 = new Sunny.UI.UIComboBox();
  182. this.uiLabel8 = new Sunny.UI.UILabel();
  183. this.cbInsutype_2 = new Sunny.UI.UIComboBox();
  184. this.uiLabel9 = new Sunny.UI.UILabel();
  185. this.uiLabel10 = new Sunny.UI.UILabel();
  186. this.uiGroupBox4 = new Sunny.UI.UIGroupBox();
  187. this.btnReduceMonth = new Sunny.UI.UISymbolButton();
  188. this.btnAddMonth = new Sunny.UI.UISymbolButton();
  189. this.dpED_2 = new Sunny.UI.UIDatetimePicker();
  190. this.dpST_2 = new Sunny.UI.UIDatetimePicker();
  191. this.tabPage3 = new System.Windows.Forms.TabPage();
  192. this.dgvClearingData = new Sunny.UI.UIDataGridView();
  193. this.uiPanel5 = new Sunny.UI.UIPanel();
  194. this.btnCancleClearing = new Sunny.UI.UIButton();
  195. this.uiGroupBox6 = new Sunny.UI.UIGroupBox();
  196. this.cbInterface_3 = new Sunny.UI.UIComboBox();
  197. this.cbValid_3 = new Sunny.UI.UIComboBox();
  198. this.uiLabel13 = new Sunny.UI.UILabel();
  199. this.uiLabel17 = new Sunny.UI.UILabel();
  200. this.rbgTimeWay = new Sunny.UI.UIRadioButtonGroup();
  201. this.btnClose_3 = new Sunny.UI.UIButton();
  202. this.btnQueryClearing = new Sunny.UI.UIButton();
  203. this.uiGroupBox5 = new Sunny.UI.UIGroupBox();
  204. this.dpED_3 = new Sunny.UI.UIDatetimePicker();
  205. this.dpST_3 = new Sunny.UI.UIDatetimePicker();
  206. this.uiTabControl1.SuspendLayout();
  207. this.tabPage1.SuspendLayout();
  208. this.uiPanel2.SuspendLayout();
  209. this.uiTabControl3.SuspendLayout();
  210. this.tabPage6.SuspendLayout();
  211. ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec)).BeginInit();
  212. this.tabPage7.SuspendLayout();
  213. ((System.ComponentModel.ISupportInitialize)(this.dgvCenterSettlRec)).BeginInit();
  214. this.tabPage8.SuspendLayout();
  215. this.uiTabControl2.SuspendLayout();
  216. this.tabPage4.SuspendLayout();
  217. ((System.ComponentModel.ISupportInitialize)(this.dgvSettlSummary)).BeginInit();
  218. this.cmsCheck.SuspendLayout();
  219. this.tabPage5.SuspendLayout();
  220. this.uiPanel1.SuspendLayout();
  221. this.gbConditionSet.SuspendLayout();
  222. this.uiGroupBox1.SuspendLayout();
  223. this.uiGroupBox10.SuspendLayout();
  224. this.gbDateTime.SuspendLayout();
  225. this.tabPage10.SuspendLayout();
  226. this.uiPanel7.SuspendLayout();
  227. this.uiTabControl6.SuspendLayout();
  228. this.tabPage14.SuspendLayout();
  229. this.uiTabControl7.SuspendLayout();
  230. this.tabPage15.SuspendLayout();
  231. ((System.ComponentModel.ISupportInitialize)(this.dgvOthCheck)).BeginInit();
  232. this.cmdOthPlcCheck.SuspendLayout();
  233. this.uiPanel6.SuspendLayout();
  234. this.uiGroupBox7.SuspendLayout();
  235. this.uiGroupBox8.SuspendLayout();
  236. this.uiGroupBox9.SuspendLayout();
  237. this.tabPage2.SuspendLayout();
  238. this.uiPanel4.SuspendLayout();
  239. this.uiTabControl4.SuspendLayout();
  240. this.tabPage9.SuspendLayout();
  241. ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec_2)).BeginInit();
  242. this.uiTabControl5.SuspendLayout();
  243. this.tabPage12.SuspendLayout();
  244. ((System.ComponentModel.ISupportInitialize)(this.dgvClearingSum)).BeginInit();
  245. this.cmsClearing.SuspendLayout();
  246. this.uiPanel3.SuspendLayout();
  247. this.uiGroupBox3.SuspendLayout();
  248. this.uiGroupBox2.SuspendLayout();
  249. this.uiGroupBox4.SuspendLayout();
  250. this.tabPage3.SuspendLayout();
  251. ((System.ComponentModel.ISupportInitialize)(this.dgvClearingData)).BeginInit();
  252. this.uiPanel5.SuspendLayout();
  253. this.uiGroupBox6.SuspendLayout();
  254. this.uiGroupBox5.SuspendLayout();
  255. this.SuspendLayout();
  256. //
  257. // uiTabControl1
  258. //
  259. this.uiTabControl1.Controls.Add(this.tabPage1);
  260. this.uiTabControl1.Controls.Add(this.tabPage10);
  261. this.uiTabControl1.Controls.Add(this.tabPage2);
  262. this.uiTabControl1.Controls.Add(this.tabPage3);
  263. this.uiTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  264. this.uiTabControl1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  265. this.uiTabControl1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  266. this.uiTabControl1.ItemSize = new System.Drawing.Size(150, 30);
  267. this.uiTabControl1.Location = new System.Drawing.Point(0, 0);
  268. this.uiTabControl1.MainPage = "";
  269. this.uiTabControl1.Name = "uiTabControl1";
  270. this.uiTabControl1.SelectedIndex = 0;
  271. this.uiTabControl1.Size = new System.Drawing.Size(1200, 796);
  272. this.uiTabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  273. this.uiTabControl1.TabIndex = 0;
  274. this.uiTabControl1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  275. this.uiTabControl1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  276. //
  277. // tabPage1
  278. //
  279. this.tabPage1.Controls.Add(this.uiPanel2);
  280. this.tabPage1.Controls.Add(this.uiPanel1);
  281. this.tabPage1.Location = new System.Drawing.Point(0, 30);
  282. this.tabPage1.Name = "tabPage1";
  283. this.tabPage1.Size = new System.Drawing.Size(1200, 766);
  284. this.tabPage1.TabIndex = 0;
  285. this.tabPage1.Text = "本地对账";
  286. this.tabPage1.UseVisualStyleBackColor = true;
  287. //
  288. // uiPanel2
  289. //
  290. this.uiPanel2.Controls.Add(this.uiTabControl3);
  291. this.uiPanel2.Controls.Add(this.uiTabControl2);
  292. this.uiPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  293. this.uiPanel2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  294. this.uiPanel2.Location = new System.Drawing.Point(228, 0);
  295. this.uiPanel2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  296. this.uiPanel2.MinimumSize = new System.Drawing.Size(1, 1);
  297. this.uiPanel2.Name = "uiPanel2";
  298. this.uiPanel2.Size = new System.Drawing.Size(972, 766);
  299. this.uiPanel2.TabIndex = 3;
  300. this.uiPanel2.Text = null;
  301. this.uiPanel2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  302. this.uiPanel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  303. //
  304. // uiTabControl3
  305. //
  306. this.uiTabControl3.Controls.Add(this.tabPage6);
  307. this.uiTabControl3.Controls.Add(this.tabPage7);
  308. this.uiTabControl3.Controls.Add(this.tabPage8);
  309. this.uiTabControl3.Dock = System.Windows.Forms.DockStyle.Fill;
  310. this.uiTabControl3.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  311. this.uiTabControl3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  312. this.uiTabControl3.ItemSize = new System.Drawing.Size(150, 25);
  313. this.uiTabControl3.Location = new System.Drawing.Point(0, 424);
  314. this.uiTabControl3.MainPage = "";
  315. this.uiTabControl3.Name = "uiTabControl3";
  316. this.uiTabControl3.SelectedIndex = 0;
  317. this.uiTabControl3.Size = new System.Drawing.Size(972, 342);
  318. this.uiTabControl3.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  319. this.uiTabControl3.TabIndex = 1;
  320. this.uiTabControl3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  321. this.uiTabControl3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  322. //
  323. // tabPage6
  324. //
  325. this.tabPage6.Controls.Add(this.dgvHisSettlRec);
  326. this.tabPage6.Location = new System.Drawing.Point(0, 25);
  327. this.tabPage6.Name = "tabPage6";
  328. this.tabPage6.Size = new System.Drawing.Size(972, 317);
  329. this.tabPage6.TabIndex = 0;
  330. this.tabPage6.Text = "HIS结算记录";
  331. this.tabPage6.UseVisualStyleBackColor = true;
  332. //
  333. // dgvHisSettlRec
  334. //
  335. this.dgvHisSettlRec.AllowUserToAddRows = false;
  336. dataGridViewCellStyle36.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  337. this.dgvHisSettlRec.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle36;
  338. this.dgvHisSettlRec.BackgroundColor = System.Drawing.Color.White;
  339. this.dgvHisSettlRec.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  340. dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  341. dataGridViewCellStyle37.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  342. dataGridViewCellStyle37.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  343. dataGridViewCellStyle37.ForeColor = System.Drawing.Color.White;
  344. dataGridViewCellStyle37.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  345. dataGridViewCellStyle37.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  346. dataGridViewCellStyle37.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  347. this.dgvHisSettlRec.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle37;
  348. this.dgvHisSettlRec.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  349. dataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  350. dataGridViewCellStyle38.BackColor = System.Drawing.SystemColors.Window;
  351. dataGridViewCellStyle38.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  352. dataGridViewCellStyle38.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  353. dataGridViewCellStyle38.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  354. dataGridViewCellStyle38.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  355. dataGridViewCellStyle38.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  356. this.dgvHisSettlRec.DefaultCellStyle = dataGridViewCellStyle38;
  357. this.dgvHisSettlRec.Dock = System.Windows.Forms.DockStyle.Fill;
  358. this.dgvHisSettlRec.EnableHeadersVisualStyles = false;
  359. this.dgvHisSettlRec.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  360. this.dgvHisSettlRec.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  361. this.dgvHisSettlRec.Location = new System.Drawing.Point(0, 0);
  362. this.dgvHisSettlRec.Name = "dgvHisSettlRec";
  363. this.dgvHisSettlRec.ReadOnly = true;
  364. dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  365. dataGridViewCellStyle39.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  366. dataGridViewCellStyle39.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  367. dataGridViewCellStyle39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  368. dataGridViewCellStyle39.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  369. dataGridViewCellStyle39.SelectionForeColor = System.Drawing.Color.White;
  370. dataGridViewCellStyle39.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  371. this.dgvHisSettlRec.RowHeadersDefaultCellStyle = dataGridViewCellStyle39;
  372. this.dgvHisSettlRec.RowHeadersWidth = 51;
  373. dataGridViewCellStyle40.BackColor = System.Drawing.Color.White;
  374. dataGridViewCellStyle40.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  375. this.dgvHisSettlRec.RowsDefaultCellStyle = dataGridViewCellStyle40;
  376. this.dgvHisSettlRec.RowTemplate.Height = 23;
  377. this.dgvHisSettlRec.SelectedIndex = -1;
  378. this.dgvHisSettlRec.Size = new System.Drawing.Size(972, 317);
  379. this.dgvHisSettlRec.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  380. this.dgvHisSettlRec.TabIndex = 1;
  381. this.dgvHisSettlRec.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  382. this.dgvHisSettlRec.RowStateChanged += new System.Windows.Forms.DataGridViewRowStateChangedEventHandler(this.dgvHisSettlRec_RowStateChanged);
  383. //
  384. // tabPage7
  385. //
  386. this.tabPage7.Controls.Add(this.dgvCenterSettlRec);
  387. this.tabPage7.Location = new System.Drawing.Point(0, 25);
  388. this.tabPage7.Name = "tabPage7";
  389. this.tabPage7.Size = new System.Drawing.Size(972, 317);
  390. this.tabPage7.TabIndex = 1;
  391. this.tabPage7.Text = "中心结算记录";
  392. this.tabPage7.UseVisualStyleBackColor = true;
  393. //
  394. // dgvCenterSettlRec
  395. //
  396. this.dgvCenterSettlRec.AllowUserToAddRows = false;
  397. dataGridViewCellStyle41.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  398. this.dgvCenterSettlRec.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle41;
  399. this.dgvCenterSettlRec.BackgroundColor = System.Drawing.Color.White;
  400. this.dgvCenterSettlRec.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  401. dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  402. dataGridViewCellStyle42.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  403. dataGridViewCellStyle42.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  404. dataGridViewCellStyle42.ForeColor = System.Drawing.Color.White;
  405. dataGridViewCellStyle42.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  406. dataGridViewCellStyle42.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  407. dataGridViewCellStyle42.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  408. this.dgvCenterSettlRec.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle42;
  409. this.dgvCenterSettlRec.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  410. dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  411. dataGridViewCellStyle43.BackColor = System.Drawing.SystemColors.Window;
  412. dataGridViewCellStyle43.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  413. dataGridViewCellStyle43.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  414. dataGridViewCellStyle43.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  415. dataGridViewCellStyle43.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  416. dataGridViewCellStyle43.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  417. this.dgvCenterSettlRec.DefaultCellStyle = dataGridViewCellStyle43;
  418. this.dgvCenterSettlRec.Dock = System.Windows.Forms.DockStyle.Fill;
  419. this.dgvCenterSettlRec.EnableHeadersVisualStyles = false;
  420. this.dgvCenterSettlRec.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  421. this.dgvCenterSettlRec.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  422. this.dgvCenterSettlRec.Location = new System.Drawing.Point(0, 0);
  423. this.dgvCenterSettlRec.Name = "dgvCenterSettlRec";
  424. dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  425. dataGridViewCellStyle44.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  426. dataGridViewCellStyle44.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  427. dataGridViewCellStyle44.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  428. dataGridViewCellStyle44.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  429. dataGridViewCellStyle44.SelectionForeColor = System.Drawing.Color.White;
  430. dataGridViewCellStyle44.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  431. this.dgvCenterSettlRec.RowHeadersDefaultCellStyle = dataGridViewCellStyle44;
  432. this.dgvCenterSettlRec.RowHeadersWidth = 51;
  433. dataGridViewCellStyle45.BackColor = System.Drawing.Color.White;
  434. dataGridViewCellStyle45.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  435. this.dgvCenterSettlRec.RowsDefaultCellStyle = dataGridViewCellStyle45;
  436. this.dgvCenterSettlRec.RowTemplate.Height = 23;
  437. this.dgvCenterSettlRec.SelectedIndex = -1;
  438. this.dgvCenterSettlRec.Size = new System.Drawing.Size(972, 317);
  439. this.dgvCenterSettlRec.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  440. this.dgvCenterSettlRec.TabIndex = 1;
  441. this.dgvCenterSettlRec.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  442. //
  443. // tabPage8
  444. //
  445. this.tabPage8.Controls.Add(this.rtbCheckDetailLog);
  446. this.tabPage8.Location = new System.Drawing.Point(0, 25);
  447. this.tabPage8.Name = "tabPage8";
  448. this.tabPage8.Size = new System.Drawing.Size(972, 317);
  449. this.tabPage8.TabIndex = 2;
  450. this.tabPage8.Text = "对明细账结果记录";
  451. this.tabPage8.UseVisualStyleBackColor = true;
  452. //
  453. // rtbCheckDetailLog
  454. //
  455. this.rtbCheckDetailLog.Dock = System.Windows.Forms.DockStyle.Fill;
  456. this.rtbCheckDetailLog.FillColor = System.Drawing.Color.White;
  457. this.rtbCheckDetailLog.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  458. this.rtbCheckDetailLog.Location = new System.Drawing.Point(0, 0);
  459. this.rtbCheckDetailLog.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  460. this.rtbCheckDetailLog.MinimumSize = new System.Drawing.Size(1, 1);
  461. this.rtbCheckDetailLog.Name = "rtbCheckDetailLog";
  462. this.rtbCheckDetailLog.Padding = new System.Windows.Forms.Padding(2);
  463. this.rtbCheckDetailLog.ShowText = false;
  464. this.rtbCheckDetailLog.Size = new System.Drawing.Size(972, 317);
  465. this.rtbCheckDetailLog.Style = Sunny.UI.UIStyle.Custom;
  466. this.rtbCheckDetailLog.TabIndex = 0;
  467. this.rtbCheckDetailLog.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  468. this.rtbCheckDetailLog.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  469. //
  470. // uiTabControl2
  471. //
  472. this.uiTabControl2.Controls.Add(this.tabPage4);
  473. this.uiTabControl2.Controls.Add(this.tabPage5);
  474. this.uiTabControl2.Dock = System.Windows.Forms.DockStyle.Top;
  475. this.uiTabControl2.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  476. this.uiTabControl2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  477. this.uiTabControl2.ItemSize = new System.Drawing.Size(150, 25);
  478. this.uiTabControl2.Location = new System.Drawing.Point(0, 0);
  479. this.uiTabControl2.MainPage = "";
  480. this.uiTabControl2.Name = "uiTabControl2";
  481. this.uiTabControl2.SelectedIndex = 0;
  482. this.uiTabControl2.Size = new System.Drawing.Size(972, 424);
  483. this.uiTabControl2.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  484. this.uiTabControl2.TabIndex = 0;
  485. this.uiTabControl2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  486. this.uiTabControl2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  487. //
  488. // tabPage4
  489. //
  490. this.tabPage4.Controls.Add(this.dgvSettlSummary);
  491. this.tabPage4.Location = new System.Drawing.Point(0, 25);
  492. this.tabPage4.Name = "tabPage4";
  493. this.tabPage4.Size = new System.Drawing.Size(972, 399);
  494. this.tabPage4.TabIndex = 0;
  495. this.tabPage4.Text = "结算汇总数据";
  496. this.tabPage4.UseVisualStyleBackColor = true;
  497. //
  498. // dgvSettlSummary
  499. //
  500. this.dgvSettlSummary.AllowUserToAddRows = false;
  501. dataGridViewCellStyle46.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  502. this.dgvSettlSummary.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle46;
  503. this.dgvSettlSummary.BackgroundColor = System.Drawing.Color.White;
  504. this.dgvSettlSummary.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
  505. dataGridViewCellStyle47.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  506. dataGridViewCellStyle47.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  507. dataGridViewCellStyle47.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  508. dataGridViewCellStyle47.ForeColor = System.Drawing.Color.White;
  509. dataGridViewCellStyle47.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  510. dataGridViewCellStyle47.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  511. dataGridViewCellStyle47.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  512. this.dgvSettlSummary.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle47;
  513. this.dgvSettlSummary.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  514. this.dgvSettlSummary.ContextMenuStrip = this.cmsCheck;
  515. dataGridViewCellStyle48.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  516. dataGridViewCellStyle48.BackColor = System.Drawing.SystemColors.Window;
  517. dataGridViewCellStyle48.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  518. dataGridViewCellStyle48.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  519. dataGridViewCellStyle48.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  520. dataGridViewCellStyle48.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  521. dataGridViewCellStyle48.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  522. this.dgvSettlSummary.DefaultCellStyle = dataGridViewCellStyle48;
  523. this.dgvSettlSummary.Dock = System.Windows.Forms.DockStyle.Fill;
  524. this.dgvSettlSummary.EnableHeadersVisualStyles = false;
  525. this.dgvSettlSummary.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  526. this.dgvSettlSummary.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  527. this.dgvSettlSummary.Location = new System.Drawing.Point(0, 0);
  528. this.dgvSettlSummary.Name = "dgvSettlSummary";
  529. this.dgvSettlSummary.ReadOnly = true;
  530. dataGridViewCellStyle49.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  531. dataGridViewCellStyle49.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  532. dataGridViewCellStyle49.Font = new System.Drawing.Font("微软雅黑", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  533. dataGridViewCellStyle49.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  534. dataGridViewCellStyle49.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  535. dataGridViewCellStyle49.SelectionForeColor = System.Drawing.Color.White;
  536. dataGridViewCellStyle49.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  537. this.dgvSettlSummary.RowHeadersDefaultCellStyle = dataGridViewCellStyle49;
  538. this.dgvSettlSummary.RowHeadersWidth = 30;
  539. this.dgvSettlSummary.RowHeight = 30;
  540. dataGridViewCellStyle50.BackColor = System.Drawing.Color.White;
  541. dataGridViewCellStyle50.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  542. this.dgvSettlSummary.RowsDefaultCellStyle = dataGridViewCellStyle50;
  543. this.dgvSettlSummary.RowTemplate.Height = 30;
  544. this.dgvSettlSummary.SelectedIndex = -1;
  545. this.dgvSettlSummary.Size = new System.Drawing.Size(972, 399);
  546. this.dgvSettlSummary.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  547. this.dgvSettlSummary.TabIndex = 0;
  548. this.dgvSettlSummary.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  549. this.dgvSettlSummary.RowStateChanged += new System.Windows.Forms.DataGridViewRowStateChangedEventHandler(this.dgvSettlSummary_RowStateChanged);
  550. //
  551. // cmsCheck
  552. //
  553. this.cmsCheck.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  554. this.cmsCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  555. this.cmsCheck.ImageScalingSize = new System.Drawing.Size(20, 20);
  556. this.cmsCheck.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  557. this.tsmCheck_Single,
  558. this.tsmCheckDetail_Single,
  559. this.tsmCheck_Batch,
  560. this.tsmCheckDetail_Batch,
  561. this.tsmHisRecord,
  562. this.toolStripMenuItem1,
  563. this.tsmAICheck,
  564. this.导出TXTToolStripMenuItem});
  565. this.cmsCheck.Name = "cmsCheck";
  566. this.cmsCheck.Size = new System.Drawing.Size(235, 212);
  567. this.cmsCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  568. this.cmsCheck.Opening += new System.ComponentModel.CancelEventHandler(this.cmsCheck_Opening);
  569. //
  570. // tsmCheck_Single
  571. //
  572. this.tsmCheck_Single.Name = "tsmCheck_Single";
  573. this.tsmCheck_Single.Size = new System.Drawing.Size(234, 26);
  574. this.tsmCheck_Single.Text = "单条对总账";
  575. this.tsmCheck_Single.Click += new System.EventHandler(this.tsmCheck_Single_Click);
  576. //
  577. // tsmCheckDetail_Single
  578. //
  579. this.tsmCheckDetail_Single.Name = "tsmCheckDetail_Single";
  580. this.tsmCheckDetail_Single.Size = new System.Drawing.Size(234, 26);
  581. this.tsmCheckDetail_Single.Text = "单条对明细账";
  582. this.tsmCheckDetail_Single.Click += new System.EventHandler(this.tsmCheckDetail_Single_Click);
  583. //
  584. // tsmCheck_Batch
  585. //
  586. this.tsmCheck_Batch.Name = "tsmCheck_Batch";
  587. this.tsmCheck_Batch.Size = new System.Drawing.Size(234, 26);
  588. this.tsmCheck_Batch.Text = "批量对总账";
  589. //
  590. // tsmCheckDetail_Batch
  591. //
  592. this.tsmCheckDetail_Batch.Name = "tsmCheckDetail_Batch";
  593. this.tsmCheckDetail_Batch.Size = new System.Drawing.Size(234, 26);
  594. this.tsmCheckDetail_Batch.Text = "批量对明细账";
  595. this.tsmCheckDetail_Batch.Click += new System.EventHandler(this.tsmCheckDetail_Batch_Click);
  596. //
  597. // tsmHisRecord
  598. //
  599. this.tsmHisRecord.Name = "tsmHisRecord";
  600. this.tsmHisRecord.Size = new System.Drawing.Size(234, 26);
  601. this.tsmHisRecord.Text = "查看HIS记录明细 ";
  602. this.tsmHisRecord.Click += new System.EventHandler(this.tsmHisRecord_Click);
  603. //
  604. // toolStripMenuItem1
  605. //
  606. this.toolStripMenuItem1.Name = "toolStripMenuItem1";
  607. this.toolStripMenuItem1.Size = new System.Drawing.Size(234, 26);
  608. this.toolStripMenuItem1.Text = "toolStripMenuItem1";
  609. this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
  610. //
  611. // tsmAICheck
  612. //
  613. this.tsmAICheck.Name = "tsmAICheck";
  614. this.tsmAICheck.Size = new System.Drawing.Size(234, 26);
  615. this.tsmAICheck.Text = "智能比对";
  616. this.tsmAICheck.Click += new System.EventHandler(this.tsmAICheck_Click);
  617. //
  618. // 导出TXTToolStripMenuItem
  619. //
  620. this.导出TXTToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  621. this.tsmExport,
  622. this.tsmCompress,
  623. this.tsmZIPToSDec,
  624. this.tsmUploadZIP,
  625. this.tsm3202,
  626. this.tsmDownload,
  627. this.tsmUnCompress,
  628. this.tsmImport,
  629. this.tsmHandCheck});
  630. this.导出TXTToolStripMenuItem.Name = "导出TXTToolStripMenuItem";
  631. this.导出TXTToolStripMenuItem.Size = new System.Drawing.Size(234, 26);
  632. this.导出TXTToolStripMenuItem.Text = "附属功能";
  633. //
  634. // tsmExport
  635. //
  636. this.tsmExport.Name = "tsmExport";
  637. this.tsmExport.Size = new System.Drawing.Size(217, 26);
  638. this.tsmExport.Text = "导出TXT";
  639. this.tsmExport.Click += new System.EventHandler(this.tsmExport_Click);
  640. //
  641. // tsmCompress
  642. //
  643. this.tsmCompress.Name = "tsmCompress";
  644. this.tsmCompress.Size = new System.Drawing.Size(217, 26);
  645. this.tsmCompress.Text = "TXT压缩为ZIP";
  646. this.tsmCompress.Click += new System.EventHandler(this.tsmCompress_Click);
  647. //
  648. // tsmZIPToSDec
  649. //
  650. this.tsmZIPToSDec.Name = "tsmZIPToSDec";
  651. this.tsmZIPToSDec.Size = new System.Drawing.Size(217, 26);
  652. this.tsmZIPToSDec.Text = "ZIP转为有符号整数";
  653. this.tsmZIPToSDec.Click += new System.EventHandler(this.tsmZIPToSDec_Click);
  654. //
  655. // tsmUploadZIP
  656. //
  657. this.tsmUploadZIP.Name = "tsmUploadZIP";
  658. this.tsmUploadZIP.Size = new System.Drawing.Size(217, 26);
  659. this.tsmUploadZIP.Text = "上传ZIP";
  660. this.tsmUploadZIP.Click += new System.EventHandler(this.tsmUploadZIP_Click);
  661. //
  662. // tsm3202
  663. //
  664. this.tsm3202.Name = "tsm3202";
  665. this.tsm3202.Size = new System.Drawing.Size(217, 26);
  666. this.tsm3202.Text = "明细对账(3202)";
  667. this.tsm3202.Click += new System.EventHandler(this.tsm3202_Click);
  668. //
  669. // tsmDownload
  670. //
  671. this.tsmDownload.Name = "tsmDownload";
  672. this.tsmDownload.Size = new System.Drawing.Size(217, 26);
  673. this.tsmDownload.Text = "下载文件";
  674. this.tsmDownload.Click += new System.EventHandler(this.tsmDownload_Click);
  675. //
  676. // tsmUnCompress
  677. //
  678. this.tsmUnCompress.Name = "tsmUnCompress";
  679. this.tsmUnCompress.Size = new System.Drawing.Size(217, 26);
  680. this.tsmUnCompress.Text = "解压文件";
  681. this.tsmUnCompress.Click += new System.EventHandler(this.tsmUnCompress_Click);
  682. //
  683. // tsmImport
  684. //
  685. this.tsmImport.Name = "tsmImport";
  686. this.tsmImport.Size = new System.Drawing.Size(217, 26);
  687. this.tsmImport.Text = "导入文件";
  688. this.tsmImport.Click += new System.EventHandler(this.tsmImport_Click);
  689. //
  690. // tsmHandCheck
  691. //
  692. this.tsmHandCheck.Name = "tsmHandCheck";
  693. this.tsmHandCheck.Size = new System.Drawing.Size(217, 26);
  694. this.tsmHandCheck.Text = "手工对账";
  695. this.tsmHandCheck.Click += new System.EventHandler(this.tsmHandCheck_Click);
  696. //
  697. // tabPage5
  698. //
  699. this.tabPage5.Controls.Add(this.rtbCheckLog);
  700. this.tabPage5.Location = new System.Drawing.Point(0, 25);
  701. this.tabPage5.Name = "tabPage5";
  702. this.tabPage5.Size = new System.Drawing.Size(972, 399);
  703. this.tabPage5.TabIndex = 1;
  704. this.tabPage5.Text = "对总账结果记录";
  705. this.tabPage5.UseVisualStyleBackColor = true;
  706. //
  707. // rtbCheckLog
  708. //
  709. this.rtbCheckLog.Dock = System.Windows.Forms.DockStyle.Fill;
  710. this.rtbCheckLog.FillColor = System.Drawing.Color.White;
  711. this.rtbCheckLog.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  712. this.rtbCheckLog.Location = new System.Drawing.Point(0, 0);
  713. this.rtbCheckLog.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  714. this.rtbCheckLog.MinimumSize = new System.Drawing.Size(1, 1);
  715. this.rtbCheckLog.Name = "rtbCheckLog";
  716. this.rtbCheckLog.Padding = new System.Windows.Forms.Padding(2);
  717. this.rtbCheckLog.ShowText = false;
  718. this.rtbCheckLog.Size = new System.Drawing.Size(972, 399);
  719. this.rtbCheckLog.Style = Sunny.UI.UIStyle.Custom;
  720. this.rtbCheckLog.TabIndex = 1;
  721. this.rtbCheckLog.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  722. this.rtbCheckLog.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  723. //
  724. // uiPanel1
  725. //
  726. this.uiPanel1.Controls.Add(this.tbTmp);
  727. this.uiPanel1.Controls.Add(this.gbConditionSet);
  728. this.uiPanel1.Controls.Add(this.cbgGroupSet);
  729. this.uiPanel1.Controls.Add(this.uiGroupBox1);
  730. this.uiPanel1.Controls.Add(this.gbDateTime);
  731. this.uiPanel1.Dock = System.Windows.Forms.DockStyle.Left;
  732. this.uiPanel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  733. this.uiPanel1.Location = new System.Drawing.Point(0, 0);
  734. this.uiPanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  735. this.uiPanel1.MinimumSize = new System.Drawing.Size(1, 1);
  736. this.uiPanel1.Name = "uiPanel1";
  737. this.uiPanel1.Size = new System.Drawing.Size(228, 766);
  738. this.uiPanel1.TabIndex = 2;
  739. this.uiPanel1.Text = null;
  740. this.uiPanel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  741. this.uiPanel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  742. //
  743. // tbTmp
  744. //
  745. this.tbTmp.Dock = System.Windows.Forms.DockStyle.Top;
  746. this.tbTmp.Location = new System.Drawing.Point(0, 493);
  747. this.tbTmp.Name = "tbTmp";
  748. this.tbTmp.Size = new System.Drawing.Size(228, 146);
  749. this.tbTmp.TabIndex = 31;
  750. this.tbTmp.Text = "E:\\GHSF\\SCYBDownLoad\\result.txt";
  751. //
  752. // gbConditionSet
  753. //
  754. this.gbConditionSet.Controls.Add(this.cbxInterface);
  755. this.gbConditionSet.Controls.Add(this.tbSettlOption);
  756. this.gbConditionSet.Controls.Add(this.cbxValid);
  757. this.gbConditionSet.Controls.Add(this.uiLabel5);
  758. this.gbConditionSet.Controls.Add(this.uiLabel4);
  759. this.gbConditionSet.Controls.Add(this.cbxClrType);
  760. this.gbConditionSet.Controls.Add(this.uiLabel3);
  761. this.gbConditionSet.Controls.Add(this.cbxInsuType);
  762. this.gbConditionSet.Controls.Add(this.uiLabel2);
  763. this.gbConditionSet.Controls.Add(this.uiLabel1);
  764. this.gbConditionSet.Dock = System.Windows.Forms.DockStyle.Top;
  765. this.gbConditionSet.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  766. this.gbConditionSet.Location = new System.Drawing.Point(0, 267);
  767. this.gbConditionSet.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  768. this.gbConditionSet.MinimumSize = new System.Drawing.Size(1, 1);
  769. this.gbConditionSet.Name = "gbConditionSet";
  770. this.gbConditionSet.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  771. this.gbConditionSet.Size = new System.Drawing.Size(228, 226);
  772. this.gbConditionSet.TabIndex = 24;
  773. this.gbConditionSet.TabStop = false;
  774. this.gbConditionSet.Text = "条件设置";
  775. this.gbConditionSet.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  776. this.gbConditionSet.TitleTop = 10;
  777. this.gbConditionSet.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  778. //
  779. // cbxInterface
  780. //
  781. this.cbxInterface.DataSource = null;
  782. this.cbxInterface.FillColor = System.Drawing.Color.White;
  783. this.cbxInterface.FilterMaxCount = 50;
  784. this.cbxInterface.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  785. this.cbxInterface.ItemHeight = 20;
  786. this.cbxInterface.Items.AddRange(new object[] {
  787. "1",
  788. "2"});
  789. this.cbxInterface.Location = new System.Drawing.Point(67, 30);
  790. this.cbxInterface.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  791. this.cbxInterface.MinimumSize = new System.Drawing.Size(63, 0);
  792. this.cbxInterface.Name = "cbxInterface";
  793. this.cbxInterface.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  794. this.cbxInterface.Size = new System.Drawing.Size(153, 25);
  795. this.cbxInterface.TabIndex = 11;
  796. this.cbxInterface.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  797. this.cbxInterface.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  798. //
  799. // tbSettlOption
  800. //
  801. this.tbSettlOption.Cursor = System.Windows.Forms.Cursors.IBeam;
  802. this.tbSettlOption.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  803. this.tbSettlOption.Location = new System.Drawing.Point(67, 144);
  804. this.tbSettlOption.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  805. this.tbSettlOption.MinimumSize = new System.Drawing.Size(1, 16);
  806. this.tbSettlOption.Name = "tbSettlOption";
  807. this.tbSettlOption.ShowText = false;
  808. this.tbSettlOption.Size = new System.Drawing.Size(153, 25);
  809. this.tbSettlOption.TabIndex = 10;
  810. this.tbSettlOption.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  811. this.tbSettlOption.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  812. //
  813. // cbxValid
  814. //
  815. this.cbxValid.DataSource = null;
  816. this.cbxValid.FillColor = System.Drawing.Color.White;
  817. this.cbxValid.FilterMaxCount = 50;
  818. this.cbxValid.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  819. this.cbxValid.ItemHeight = 20;
  820. this.cbxValid.Items.AddRange(new object[] {
  821. "全部",
  822. "有效",
  823. "无效"});
  824. this.cbxValid.Location = new System.Drawing.Point(67, 182);
  825. this.cbxValid.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  826. this.cbxValid.MinimumSize = new System.Drawing.Size(63, 0);
  827. this.cbxValid.Name = "cbxValid";
  828. this.cbxValid.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  829. this.cbxValid.Size = new System.Drawing.Size(153, 25);
  830. this.cbxValid.TabIndex = 9;
  831. this.cbxValid.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  832. this.cbxValid.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  833. //
  834. // uiLabel5
  835. //
  836. this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  837. this.uiLabel5.Location = new System.Drawing.Point(4, 185);
  838. this.uiLabel5.Name = "uiLabel5";
  839. this.uiLabel5.Size = new System.Drawing.Size(78, 23);
  840. this.uiLabel5.TabIndex = 8;
  841. this.uiLabel5.Text = "有效标志";
  842. this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  843. this.uiLabel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  844. //
  845. // uiLabel4
  846. //
  847. this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  848. this.uiLabel4.Location = new System.Drawing.Point(4, 147);
  849. this.uiLabel4.Name = "uiLabel4";
  850. this.uiLabel4.Size = new System.Drawing.Size(78, 23);
  851. this.uiLabel4.TabIndex = 6;
  852. this.uiLabel4.Text = "经办机构";
  853. this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  854. this.uiLabel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  855. //
  856. // cbxClrType
  857. //
  858. this.cbxClrType.DataSource = null;
  859. this.cbxClrType.FillColor = System.Drawing.Color.White;
  860. this.cbxClrType.FilterMaxCount = 50;
  861. this.cbxClrType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  862. this.cbxClrType.ItemHeight = 20;
  863. this.cbxClrType.Items.AddRange(new object[] {
  864. "1",
  865. "2"});
  866. this.cbxClrType.Location = new System.Drawing.Point(67, 106);
  867. this.cbxClrType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  868. this.cbxClrType.MinimumSize = new System.Drawing.Size(63, 0);
  869. this.cbxClrType.Name = "cbxClrType";
  870. this.cbxClrType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  871. this.cbxClrType.Size = new System.Drawing.Size(153, 25);
  872. this.cbxClrType.TabIndex = 5;
  873. this.cbxClrType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  874. this.cbxClrType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  875. //
  876. // uiLabel3
  877. //
  878. this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  879. this.uiLabel3.Location = new System.Drawing.Point(4, 109);
  880. this.uiLabel3.Name = "uiLabel3";
  881. this.uiLabel3.Size = new System.Drawing.Size(78, 23);
  882. this.uiLabel3.TabIndex = 4;
  883. this.uiLabel3.Text = "清算类别";
  884. this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  885. this.uiLabel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  886. //
  887. // cbxInsuType
  888. //
  889. this.cbxInsuType.DataSource = null;
  890. this.cbxInsuType.FillColor = System.Drawing.Color.White;
  891. this.cbxInsuType.FilterMaxCount = 50;
  892. this.cbxInsuType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  893. this.cbxInsuType.ItemHeight = 20;
  894. this.cbxInsuType.Items.AddRange(new object[] {
  895. "1",
  896. "2"});
  897. this.cbxInsuType.Location = new System.Drawing.Point(67, 68);
  898. this.cbxInsuType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  899. this.cbxInsuType.MinimumSize = new System.Drawing.Size(63, 0);
  900. this.cbxInsuType.Name = "cbxInsuType";
  901. this.cbxInsuType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  902. this.cbxInsuType.Size = new System.Drawing.Size(153, 25);
  903. this.cbxInsuType.TabIndex = 3;
  904. this.cbxInsuType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  905. this.cbxInsuType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  906. //
  907. // uiLabel2
  908. //
  909. this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  910. this.uiLabel2.Location = new System.Drawing.Point(4, 71);
  911. this.uiLabel2.Name = "uiLabel2";
  912. this.uiLabel2.Size = new System.Drawing.Size(78, 23);
  913. this.uiLabel2.TabIndex = 2;
  914. this.uiLabel2.Text = "险种类型";
  915. this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  916. this.uiLabel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  917. //
  918. // uiLabel1
  919. //
  920. this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  921. this.uiLabel1.Location = new System.Drawing.Point(4, 33);
  922. this.uiLabel1.Name = "uiLabel1";
  923. this.uiLabel1.Size = new System.Drawing.Size(78, 23);
  924. this.uiLabel1.TabIndex = 0;
  925. this.uiLabel1.Text = "接口目录";
  926. this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  927. this.uiLabel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  928. //
  929. // cbgGroupSet
  930. //
  931. this.cbgGroupSet.Dock = System.Windows.Forms.DockStyle.Top;
  932. this.cbgGroupSet.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  933. this.cbgGroupSet.Items.AddRange(new object[] {
  934. "接 口",
  935. "险 种 类 型",
  936. "清 算 类 别",
  937. "经 办 机 构",
  938. "单 据 类 型"});
  939. this.cbgGroupSet.ItemSize = new System.Drawing.Size(150, 25);
  940. this.cbgGroupSet.Location = new System.Drawing.Point(0, 112);
  941. this.cbgGroupSet.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  942. this.cbgGroupSet.MinimumSize = new System.Drawing.Size(1, 1);
  943. this.cbgGroupSet.Name = "cbgGroupSet";
  944. this.cbgGroupSet.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  945. this.cbgGroupSet.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Top;
  946. this.cbgGroupSet.SelectedIndexes = ((System.Collections.Generic.List<int>)(resources.GetObject("cbgGroupSet.SelectedIndexes")));
  947. this.cbgGroupSet.Size = new System.Drawing.Size(228, 155);
  948. this.cbgGroupSet.TabIndex = 25;
  949. this.cbgGroupSet.Text = "分组设置";
  950. this.cbgGroupSet.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  951. this.cbgGroupSet.TitleTop = 10;
  952. this.cbgGroupSet.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  953. //
  954. // uiGroupBox1
  955. //
  956. this.uiGroupBox1.Controls.Add(this.uiGroupBox10);
  957. this.uiGroupBox1.Controls.Add(this.btnQuerySettlSummary);
  958. this.uiGroupBox1.Controls.Add(this.btnClose);
  959. this.uiGroupBox1.Controls.Add(this.btnBatchCheck);
  960. this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  961. this.uiGroupBox1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  962. this.uiGroupBox1.Location = new System.Drawing.Point(0, 112);
  963. this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  964. this.uiGroupBox1.MinimumSize = new System.Drawing.Size(1, 1);
  965. this.uiGroupBox1.Name = "uiGroupBox1";
  966. this.uiGroupBox1.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  967. this.uiGroupBox1.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  968. this.uiGroupBox1.RectSize = 2;
  969. this.uiGroupBox1.Size = new System.Drawing.Size(228, 654);
  970. this.uiGroupBox1.TabIndex = 22;
  971. this.uiGroupBox1.Text = null;
  972. this.uiGroupBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  973. this.uiGroupBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  974. //
  975. // uiGroupBox10
  976. //
  977. this.uiGroupBox10.Controls.Add(this.uiButton4);
  978. this.uiGroupBox10.Controls.Add(this.uiButton5);
  979. this.uiGroupBox10.Controls.Add(this.Btn_Query);
  980. this.uiGroupBox10.Dock = System.Windows.Forms.DockStyle.Bottom;
  981. this.uiGroupBox10.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  982. this.uiGroupBox10.Location = new System.Drawing.Point(0, 541);
  983. this.uiGroupBox10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  984. this.uiGroupBox10.MinimumSize = new System.Drawing.Size(1, 1);
  985. this.uiGroupBox10.Name = "uiGroupBox10";
  986. this.uiGroupBox10.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  987. this.uiGroupBox10.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  988. this.uiGroupBox10.RectSize = 2;
  989. this.uiGroupBox10.Size = new System.Drawing.Size(228, 113);
  990. this.uiGroupBox10.TabIndex = 34;
  991. this.uiGroupBox10.Text = null;
  992. this.uiGroupBox10.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  993. this.uiGroupBox10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  994. //
  995. // uiButton4
  996. //
  997. this.uiButton4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  998. | System.Windows.Forms.AnchorStyles.Right)));
  999. this.uiButton4.Cursor = System.Windows.Forms.Cursors.Hand;
  1000. this.uiButton4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1001. this.uiButton4.Location = new System.Drawing.Point(39, 75);
  1002. this.uiButton4.MinimumSize = new System.Drawing.Size(1, 1);
  1003. this.uiButton4.Name = "uiButton4";
  1004. this.uiButton4.Size = new System.Drawing.Size(144, 27);
  1005. this.uiButton4.TabIndex = 2;
  1006. this.uiButton4.Text = "退出";
  1007. this.uiButton4.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1008. this.uiButton4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1009. this.uiButton4.Click += new System.EventHandler(this.btnClose_Click);
  1010. //
  1011. // uiButton5
  1012. //
  1013. this.uiButton5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  1014. | System.Windows.Forms.AnchorStyles.Right)));
  1015. this.uiButton5.Cursor = System.Windows.Forms.Cursors.Hand;
  1016. this.uiButton5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1017. this.uiButton5.Location = new System.Drawing.Point(39, 39);
  1018. this.uiButton5.MinimumSize = new System.Drawing.Size(1, 1);
  1019. this.uiButton5.Name = "uiButton5";
  1020. this.uiButton5.Size = new System.Drawing.Size(144, 27);
  1021. this.uiButton5.TabIndex = 1;
  1022. this.uiButton5.Text = "批量对总账";
  1023. this.uiButton5.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1024. this.uiButton5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1025. //
  1026. // Btn_Query
  1027. //
  1028. this.Btn_Query.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  1029. | System.Windows.Forms.AnchorStyles.Right)));
  1030. this.Btn_Query.Cursor = System.Windows.Forms.Cursors.Hand;
  1031. this.Btn_Query.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1032. this.Btn_Query.Location = new System.Drawing.Point(39, 3);
  1033. this.Btn_Query.MinimumSize = new System.Drawing.Size(1, 1);
  1034. this.Btn_Query.Name = "Btn_Query";
  1035. this.Btn_Query.Size = new System.Drawing.Size(144, 27);
  1036. this.Btn_Query.TabIndex = 0;
  1037. this.Btn_Query.Text = "查询汇总数据";
  1038. this.Btn_Query.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1039. this.Btn_Query.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1040. this.Btn_Query.Click += new System.EventHandler(this.Btn_Query_Click);
  1041. //
  1042. // btnQuerySettlSummary
  1043. //
  1044. this.btnQuerySettlSummary.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1045. this.btnQuerySettlSummary.Cursor = System.Windows.Forms.Cursors.Hand;
  1046. this.btnQuerySettlSummary.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1047. this.btnQuerySettlSummary.Location = new System.Drawing.Point(34, 719);
  1048. this.btnQuerySettlSummary.MinimumSize = new System.Drawing.Size(1, 1);
  1049. this.btnQuerySettlSummary.Name = "btnQuerySettlSummary";
  1050. this.btnQuerySettlSummary.Size = new System.Drawing.Size(168, 27);
  1051. this.btnQuerySettlSummary.TabIndex = 33;
  1052. this.btnQuerySettlSummary.Text = "查询汇总数据";
  1053. this.btnQuerySettlSummary.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1054. this.btnQuerySettlSummary.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1055. //
  1056. // btnClose
  1057. //
  1058. this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1059. this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand;
  1060. this.btnClose.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1061. this.btnClose.Location = new System.Drawing.Point(34, 828);
  1062. this.btnClose.MinimumSize = new System.Drawing.Size(1, 1);
  1063. this.btnClose.Name = "btnClose";
  1064. this.btnClose.Size = new System.Drawing.Size(168, 27);
  1065. this.btnClose.TabIndex = 2;
  1066. this.btnClose.Text = "退 出";
  1067. this.btnClose.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1068. this.btnClose.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1069. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  1070. //
  1071. // btnBatchCheck
  1072. //
  1073. this.btnBatchCheck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1074. this.btnBatchCheck.Cursor = System.Windows.Forms.Cursors.Hand;
  1075. this.btnBatchCheck.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1076. this.btnBatchCheck.Location = new System.Drawing.Point(34, 779);
  1077. this.btnBatchCheck.MinimumSize = new System.Drawing.Size(1, 1);
  1078. this.btnBatchCheck.Name = "btnBatchCheck";
  1079. this.btnBatchCheck.Size = new System.Drawing.Size(168, 27);
  1080. this.btnBatchCheck.TabIndex = 1;
  1081. this.btnBatchCheck.Text = "批量对总账";
  1082. this.btnBatchCheck.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1083. this.btnBatchCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1084. this.btnBatchCheck.Click += new System.EventHandler(this.btnBatchCheck_Click);
  1085. //
  1086. // gbDateTime
  1087. //
  1088. this.gbDateTime.Controls.Add(this.btnReduceOndDay);
  1089. this.gbDateTime.Controls.Add(this.btnAddOneDay);
  1090. this.gbDateTime.Controls.Add(this.dpED);
  1091. this.gbDateTime.Controls.Add(this.dpST);
  1092. this.gbDateTime.Dock = System.Windows.Forms.DockStyle.Top;
  1093. this.gbDateTime.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1094. this.gbDateTime.Location = new System.Drawing.Point(0, 0);
  1095. this.gbDateTime.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1096. this.gbDateTime.MinimumSize = new System.Drawing.Size(1, 1);
  1097. this.gbDateTime.Name = "gbDateTime";
  1098. this.gbDateTime.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1099. this.gbDateTime.Size = new System.Drawing.Size(228, 112);
  1100. this.gbDateTime.TabIndex = 21;
  1101. this.gbDateTime.Text = "起止时间";
  1102. this.gbDateTime.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1103. this.gbDateTime.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1104. //
  1105. // btnReduceOndDay
  1106. //
  1107. this.btnReduceOndDay.Cursor = System.Windows.Forms.Cursors.Hand;
  1108. this.btnReduceOndDay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1109. this.btnReduceOndDay.Location = new System.Drawing.Point(160, 3);
  1110. this.btnReduceOndDay.MinimumSize = new System.Drawing.Size(1, 1);
  1111. this.btnReduceOndDay.Name = "btnReduceOndDay";
  1112. this.btnReduceOndDay.Size = new System.Drawing.Size(38, 23);
  1113. this.btnReduceOndDay.Symbol = 61544;
  1114. this.btnReduceOndDay.TabIndex = 3;
  1115. this.btnReduceOndDay.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1116. this.btnReduceOndDay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1117. this.btnReduceOndDay.Click += new System.EventHandler(this.btnReduceOndDay_Click);
  1118. //
  1119. // btnAddOneDay
  1120. //
  1121. this.btnAddOneDay.Cursor = System.Windows.Forms.Cursors.Hand;
  1122. this.btnAddOneDay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1123. this.btnAddOneDay.Location = new System.Drawing.Point(116, 3);
  1124. this.btnAddOneDay.MinimumSize = new System.Drawing.Size(1, 1);
  1125. this.btnAddOneDay.Name = "btnAddOneDay";
  1126. this.btnAddOneDay.Size = new System.Drawing.Size(38, 23);
  1127. this.btnAddOneDay.Symbol = 61543;
  1128. this.btnAddOneDay.TabIndex = 2;
  1129. this.btnAddOneDay.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1130. this.btnAddOneDay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1131. this.btnAddOneDay.Click += new System.EventHandler(this.btnAddOneDay_Click);
  1132. //
  1133. // dpED
  1134. //
  1135. this.dpED.FillColor = System.Drawing.Color.White;
  1136. this.dpED.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1137. this.dpED.Location = new System.Drawing.Point(17, 70);
  1138. this.dpED.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1139. this.dpED.MaxLength = 19;
  1140. this.dpED.MinimumSize = new System.Drawing.Size(63, 0);
  1141. this.dpED.Name = "dpED";
  1142. this.dpED.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1143. this.dpED.Size = new System.Drawing.Size(185, 29);
  1144. this.dpED.SymbolDropDown = 61555;
  1145. this.dpED.SymbolNormal = 61555;
  1146. this.dpED.TabIndex = 1;
  1147. this.dpED.Text = "2022-11-01 23:59:59";
  1148. this.dpED.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1149. this.dpED.Value = new System.DateTime(2022, 11, 1, 23, 59, 59, 0);
  1150. this.dpED.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1151. //
  1152. // dpST
  1153. //
  1154. this.dpST.FillColor = System.Drawing.Color.White;
  1155. this.dpST.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1156. this.dpST.Location = new System.Drawing.Point(17, 31);
  1157. this.dpST.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1158. this.dpST.MaxLength = 19;
  1159. this.dpST.MinimumSize = new System.Drawing.Size(63, 0);
  1160. this.dpST.Name = "dpST";
  1161. this.dpST.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1162. this.dpST.Size = new System.Drawing.Size(185, 29);
  1163. this.dpST.SymbolDropDown = 61555;
  1164. this.dpST.SymbolNormal = 61555;
  1165. this.dpST.TabIndex = 0;
  1166. this.dpST.Text = "2022-06-01 00:00:00";
  1167. this.dpST.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1168. this.dpST.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
  1169. this.dpST.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1170. //
  1171. // tabPage10
  1172. //
  1173. this.tabPage10.Controls.Add(this.uiPanel7);
  1174. this.tabPage10.Controls.Add(this.uiPanel6);
  1175. this.tabPage10.Location = new System.Drawing.Point(0, 30);
  1176. this.tabPage10.Name = "tabPage10";
  1177. this.tabPage10.Size = new System.Drawing.Size(1200, 766);
  1178. this.tabPage10.TabIndex = 3;
  1179. this.tabPage10.Text = "异地对账";
  1180. this.tabPage10.UseVisualStyleBackColor = true;
  1181. //
  1182. // uiPanel7
  1183. //
  1184. this.uiPanel7.Controls.Add(this.uiTabControl6);
  1185. this.uiPanel7.Controls.Add(this.uiTabControl7);
  1186. this.uiPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
  1187. this.uiPanel7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1188. this.uiPanel7.Location = new System.Drawing.Point(217, 0);
  1189. this.uiPanel7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1190. this.uiPanel7.MinimumSize = new System.Drawing.Size(1, 1);
  1191. this.uiPanel7.Name = "uiPanel7";
  1192. this.uiPanel7.Size = new System.Drawing.Size(983, 766);
  1193. this.uiPanel7.TabIndex = 4;
  1194. this.uiPanel7.Text = null;
  1195. this.uiPanel7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1196. this.uiPanel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1197. //
  1198. // uiTabControl6
  1199. //
  1200. this.uiTabControl6.Controls.Add(this.tabPage14);
  1201. this.uiTabControl6.Dock = System.Windows.Forms.DockStyle.Fill;
  1202. this.uiTabControl6.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1203. this.uiTabControl6.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1204. this.uiTabControl6.ItemSize = new System.Drawing.Size(150, 25);
  1205. this.uiTabControl6.Location = new System.Drawing.Point(0, 424);
  1206. this.uiTabControl6.MainPage = "";
  1207. this.uiTabControl6.Name = "uiTabControl6";
  1208. this.uiTabControl6.SelectedIndex = 0;
  1209. this.uiTabControl6.Size = new System.Drawing.Size(983, 342);
  1210. this.uiTabControl6.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  1211. this.uiTabControl6.TabIndex = 1;
  1212. this.uiTabControl6.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1213. this.uiTabControl6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1214. //
  1215. // tabPage14
  1216. //
  1217. this.tabPage14.Controls.Add(this.rtbOthCheckResultRecord);
  1218. this.tabPage14.Location = new System.Drawing.Point(0, 25);
  1219. this.tabPage14.Name = "tabPage14";
  1220. this.tabPage14.Size = new System.Drawing.Size(983, 317);
  1221. this.tabPage14.TabIndex = 2;
  1222. this.tabPage14.Text = "对账结果记录";
  1223. this.tabPage14.UseVisualStyleBackColor = true;
  1224. //
  1225. // rtbOthCheckResultRecord
  1226. //
  1227. this.rtbOthCheckResultRecord.Dock = System.Windows.Forms.DockStyle.Fill;
  1228. this.rtbOthCheckResultRecord.FillColor = System.Drawing.Color.White;
  1229. this.rtbOthCheckResultRecord.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1230. this.rtbOthCheckResultRecord.Location = new System.Drawing.Point(0, 0);
  1231. this.rtbOthCheckResultRecord.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1232. this.rtbOthCheckResultRecord.MinimumSize = new System.Drawing.Size(1, 1);
  1233. this.rtbOthCheckResultRecord.Name = "rtbOthCheckResultRecord";
  1234. this.rtbOthCheckResultRecord.Padding = new System.Windows.Forms.Padding(2);
  1235. this.rtbOthCheckResultRecord.ShowText = false;
  1236. this.rtbOthCheckResultRecord.Size = new System.Drawing.Size(983, 317);
  1237. this.rtbOthCheckResultRecord.Style = Sunny.UI.UIStyle.Custom;
  1238. this.rtbOthCheckResultRecord.TabIndex = 0;
  1239. this.rtbOthCheckResultRecord.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1240. this.rtbOthCheckResultRecord.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1241. //
  1242. // uiTabControl7
  1243. //
  1244. this.uiTabControl7.Controls.Add(this.tabPage15);
  1245. this.uiTabControl7.Dock = System.Windows.Forms.DockStyle.Top;
  1246. this.uiTabControl7.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1247. this.uiTabControl7.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1248. this.uiTabControl7.ItemSize = new System.Drawing.Size(150, 25);
  1249. this.uiTabControl7.Location = new System.Drawing.Point(0, 0);
  1250. this.uiTabControl7.MainPage = "";
  1251. this.uiTabControl7.Name = "uiTabControl7";
  1252. this.uiTabControl7.SelectedIndex = 0;
  1253. this.uiTabControl7.Size = new System.Drawing.Size(983, 424);
  1254. this.uiTabControl7.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  1255. this.uiTabControl7.TabIndex = 0;
  1256. this.uiTabControl7.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1257. this.uiTabControl7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1258. //
  1259. // tabPage15
  1260. //
  1261. this.tabPage15.Controls.Add(this.dgvOthCheck);
  1262. this.tabPage15.Location = new System.Drawing.Point(0, 25);
  1263. this.tabPage15.Name = "tabPage15";
  1264. this.tabPage15.Size = new System.Drawing.Size(983, 399);
  1265. this.tabPage15.TabIndex = 0;
  1266. this.tabPage15.Text = "结算汇总数据";
  1267. this.tabPage15.UseVisualStyleBackColor = true;
  1268. //
  1269. // dgvOthCheck
  1270. //
  1271. this.dgvOthCheck.AllowUserToAddRows = false;
  1272. dataGridViewCellStyle11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1273. this.dgvOthCheck.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle11;
  1274. this.dgvOthCheck.BackgroundColor = System.Drawing.Color.White;
  1275. this.dgvOthCheck.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
  1276. dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1277. dataGridViewCellStyle12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1278. dataGridViewCellStyle12.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1279. dataGridViewCellStyle12.ForeColor = System.Drawing.Color.White;
  1280. dataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1281. dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1282. dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1283. this.dgvOthCheck.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle12;
  1284. this.dgvOthCheck.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1285. this.dgvOthCheck.ContextMenuStrip = this.cmdOthPlcCheck;
  1286. dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1287. dataGridViewCellStyle13.BackColor = System.Drawing.SystemColors.Window;
  1288. dataGridViewCellStyle13.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1289. dataGridViewCellStyle13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1290. dataGridViewCellStyle13.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1291. dataGridViewCellStyle13.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1292. dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1293. this.dgvOthCheck.DefaultCellStyle = dataGridViewCellStyle13;
  1294. this.dgvOthCheck.Dock = System.Windows.Forms.DockStyle.Fill;
  1295. this.dgvOthCheck.EnableHeadersVisualStyles = false;
  1296. this.dgvOthCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1297. this.dgvOthCheck.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1298. this.dgvOthCheck.Location = new System.Drawing.Point(0, 0);
  1299. this.dgvOthCheck.Name = "dgvOthCheck";
  1300. this.dgvOthCheck.ReadOnly = true;
  1301. dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1302. dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1303. dataGridViewCellStyle14.Font = new System.Drawing.Font("微软雅黑", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1304. dataGridViewCellStyle14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1305. dataGridViewCellStyle14.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1306. dataGridViewCellStyle14.SelectionForeColor = System.Drawing.Color.White;
  1307. dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1308. this.dgvOthCheck.RowHeadersDefaultCellStyle = dataGridViewCellStyle14;
  1309. this.dgvOthCheck.RowHeadersWidth = 30;
  1310. this.dgvOthCheck.RowHeight = 30;
  1311. dataGridViewCellStyle15.BackColor = System.Drawing.Color.White;
  1312. dataGridViewCellStyle15.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1313. this.dgvOthCheck.RowsDefaultCellStyle = dataGridViewCellStyle15;
  1314. this.dgvOthCheck.RowTemplate.Height = 30;
  1315. this.dgvOthCheck.SelectedIndex = -1;
  1316. this.dgvOthCheck.Size = new System.Drawing.Size(983, 399);
  1317. this.dgvOthCheck.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1318. this.dgvOthCheck.TabIndex = 0;
  1319. this.dgvOthCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1320. this.dgvOthCheck.RowStateChanged += new System.Windows.Forms.DataGridViewRowStateChangedEventHandler(this.dgvRowStateChanged);
  1321. //
  1322. // cmdOthPlcCheck
  1323. //
  1324. this.cmdOthPlcCheck.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1325. this.cmdOthPlcCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1326. this.cmdOthPlcCheck.ImageScalingSize = new System.Drawing.Size(20, 20);
  1327. this.cmdOthPlcCheck.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  1328. this.tsmOthPlcCheck});
  1329. this.cmdOthPlcCheck.Name = "cmsCheck";
  1330. this.cmdOthPlcCheck.Size = new System.Drawing.Size(187, 30);
  1331. this.cmdOthPlcCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1332. //
  1333. // tsmOthPlcCheck
  1334. //
  1335. this.tsmOthPlcCheck.Name = "tsmOthPlcCheck";
  1336. this.tsmOthPlcCheck.Size = new System.Drawing.Size(186, 26);
  1337. this.tsmOthPlcCheck.Text = "单条对账(异地)";
  1338. this.tsmOthPlcCheck.Click += new System.EventHandler(this.tsmOthPlcCheck_Click);
  1339. //
  1340. // uiPanel6
  1341. //
  1342. this.uiPanel6.Controls.Add(this.uiGroupBox7);
  1343. this.uiPanel6.Controls.Add(this.uiGroupBox8);
  1344. this.uiPanel6.Controls.Add(this.uiGroupBox9);
  1345. this.uiPanel6.Dock = System.Windows.Forms.DockStyle.Left;
  1346. this.uiPanel6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1347. this.uiPanel6.Location = new System.Drawing.Point(0, 0);
  1348. this.uiPanel6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1349. this.uiPanel6.MinimumSize = new System.Drawing.Size(1, 1);
  1350. this.uiPanel6.Name = "uiPanel6";
  1351. this.uiPanel6.Size = new System.Drawing.Size(217, 766);
  1352. this.uiPanel6.TabIndex = 3;
  1353. this.uiPanel6.Text = null;
  1354. this.uiPanel6.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1355. this.uiPanel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1356. //
  1357. // uiGroupBox7
  1358. //
  1359. this.uiGroupBox7.Controls.Add(this.uiTextBox1);
  1360. this.uiGroupBox7.Controls.Add(this.cbxValid_O);
  1361. this.uiGroupBox7.Controls.Add(this.uiLabel12);
  1362. this.uiGroupBox7.Controls.Add(this.uiLabel14);
  1363. this.uiGroupBox7.Controls.Add(this.cbxClrType_O);
  1364. this.uiGroupBox7.Controls.Add(this.uiLabel15);
  1365. this.uiGroupBox7.Controls.Add(this.uiComboBox4);
  1366. this.uiGroupBox7.Controls.Add(this.uiLabel16);
  1367. this.uiGroupBox7.Dock = System.Windows.Forms.DockStyle.Top;
  1368. this.uiGroupBox7.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1369. this.uiGroupBox7.Location = new System.Drawing.Point(0, 112);
  1370. this.uiGroupBox7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1371. this.uiGroupBox7.MinimumSize = new System.Drawing.Size(1, 1);
  1372. this.uiGroupBox7.Name = "uiGroupBox7";
  1373. this.uiGroupBox7.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  1374. this.uiGroupBox7.Size = new System.Drawing.Size(217, 198);
  1375. this.uiGroupBox7.TabIndex = 24;
  1376. this.uiGroupBox7.TabStop = false;
  1377. this.uiGroupBox7.Text = "条件设置";
  1378. this.uiGroupBox7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1379. this.uiGroupBox7.TitleTop = 10;
  1380. this.uiGroupBox7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1381. //
  1382. // uiTextBox1
  1383. //
  1384. this.uiTextBox1.Cursor = System.Windows.Forms.Cursors.IBeam;
  1385. this.uiTextBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1386. this.uiTextBox1.Location = new System.Drawing.Point(79, 124);
  1387. this.uiTextBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1388. this.uiTextBox1.MinimumSize = new System.Drawing.Size(1, 16);
  1389. this.uiTextBox1.Name = "uiTextBox1";
  1390. this.uiTextBox1.ShowText = false;
  1391. this.uiTextBox1.Size = new System.Drawing.Size(130, 25);
  1392. this.uiTextBox1.TabIndex = 10;
  1393. this.uiTextBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1394. this.uiTextBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1395. //
  1396. // cbxValid_O
  1397. //
  1398. this.cbxValid_O.DataSource = null;
  1399. this.cbxValid_O.FillColor = System.Drawing.Color.White;
  1400. this.cbxValid_O.FilterMaxCount = 50;
  1401. this.cbxValid_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1402. this.cbxValid_O.ItemHeight = 20;
  1403. this.cbxValid_O.Items.AddRange(new object[] {
  1404. "全部",
  1405. "有效",
  1406. "无效"});
  1407. this.cbxValid_O.Location = new System.Drawing.Point(79, 157);
  1408. this.cbxValid_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1409. this.cbxValid_O.MinimumSize = new System.Drawing.Size(63, 0);
  1410. this.cbxValid_O.Name = "cbxValid_O";
  1411. this.cbxValid_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1412. this.cbxValid_O.Size = new System.Drawing.Size(130, 25);
  1413. this.cbxValid_O.TabIndex = 9;
  1414. this.cbxValid_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1415. this.cbxValid_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1416. //
  1417. // uiLabel12
  1418. //
  1419. this.uiLabel12.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1420. this.uiLabel12.Location = new System.Drawing.Point(9, 158);
  1421. this.uiLabel12.Name = "uiLabel12";
  1422. this.uiLabel12.Size = new System.Drawing.Size(63, 23);
  1423. this.uiLabel12.TabIndex = 8;
  1424. this.uiLabel12.Text = "有效标志";
  1425. this.uiLabel12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1426. this.uiLabel12.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1427. //
  1428. // uiLabel14
  1429. //
  1430. this.uiLabel14.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1431. this.uiLabel14.Location = new System.Drawing.Point(9, 125);
  1432. this.uiLabel14.Name = "uiLabel14";
  1433. this.uiLabel14.Size = new System.Drawing.Size(63, 23);
  1434. this.uiLabel14.TabIndex = 6;
  1435. this.uiLabel14.Text = "经办机构";
  1436. this.uiLabel14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1437. this.uiLabel14.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1438. //
  1439. // cbxClrType_O
  1440. //
  1441. this.cbxClrType_O.DataSource = null;
  1442. this.cbxClrType_O.FillColor = System.Drawing.Color.White;
  1443. this.cbxClrType_O.FilterMaxCount = 50;
  1444. this.cbxClrType_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1445. this.cbxClrType_O.ItemHeight = 20;
  1446. this.cbxClrType_O.Items.AddRange(new object[] {
  1447. "1",
  1448. "2"});
  1449. this.cbxClrType_O.Location = new System.Drawing.Point(79, 91);
  1450. this.cbxClrType_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1451. this.cbxClrType_O.MinimumSize = new System.Drawing.Size(63, 0);
  1452. this.cbxClrType_O.Name = "cbxClrType_O";
  1453. this.cbxClrType_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1454. this.cbxClrType_O.Size = new System.Drawing.Size(130, 25);
  1455. this.cbxClrType_O.TabIndex = 5;
  1456. this.cbxClrType_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1457. this.cbxClrType_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1458. //
  1459. // uiLabel15
  1460. //
  1461. this.uiLabel15.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1462. this.uiLabel15.Location = new System.Drawing.Point(9, 92);
  1463. this.uiLabel15.Name = "uiLabel15";
  1464. this.uiLabel15.Size = new System.Drawing.Size(63, 23);
  1465. this.uiLabel15.TabIndex = 4;
  1466. this.uiLabel15.Text = "清算类别";
  1467. this.uiLabel15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1468. this.uiLabel15.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1469. //
  1470. // uiComboBox4
  1471. //
  1472. this.uiComboBox4.DataSource = null;
  1473. this.uiComboBox4.FillColor = System.Drawing.Color.White;
  1474. this.uiComboBox4.FilterMaxCount = 50;
  1475. this.uiComboBox4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1476. this.uiComboBox4.ItemHeight = 20;
  1477. this.uiComboBox4.Items.AddRange(new object[] {
  1478. "1",
  1479. "2"});
  1480. this.uiComboBox4.Location = new System.Drawing.Point(79, 58);
  1481. this.uiComboBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1482. this.uiComboBox4.MinimumSize = new System.Drawing.Size(63, 0);
  1483. this.uiComboBox4.Name = "uiComboBox4";
  1484. this.uiComboBox4.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1485. this.uiComboBox4.Size = new System.Drawing.Size(130, 25);
  1486. this.uiComboBox4.TabIndex = 3;
  1487. this.uiComboBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1488. this.uiComboBox4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1489. //
  1490. // uiLabel16
  1491. //
  1492. this.uiLabel16.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1493. this.uiLabel16.Location = new System.Drawing.Point(9, 59);
  1494. this.uiLabel16.Name = "uiLabel16";
  1495. this.uiLabel16.Size = new System.Drawing.Size(63, 23);
  1496. this.uiLabel16.TabIndex = 2;
  1497. this.uiLabel16.Text = "险种类型";
  1498. this.uiLabel16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1499. this.uiLabel16.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1500. //
  1501. // uiGroupBox8
  1502. //
  1503. this.uiGroupBox8.Controls.Add(this.uiButton1);
  1504. this.uiGroupBox8.Controls.Add(this.uiButton2);
  1505. this.uiGroupBox8.Controls.Add(this.uiButton3);
  1506. this.uiGroupBox8.Dock = System.Windows.Forms.DockStyle.Bottom;
  1507. this.uiGroupBox8.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1508. this.uiGroupBox8.Location = new System.Drawing.Point(0, 653);
  1509. this.uiGroupBox8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1510. this.uiGroupBox8.MinimumSize = new System.Drawing.Size(1, 1);
  1511. this.uiGroupBox8.Name = "uiGroupBox8";
  1512. this.uiGroupBox8.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1513. this.uiGroupBox8.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  1514. this.uiGroupBox8.RectSize = 2;
  1515. this.uiGroupBox8.Size = new System.Drawing.Size(217, 113);
  1516. this.uiGroupBox8.TabIndex = 22;
  1517. this.uiGroupBox8.Text = null;
  1518. this.uiGroupBox8.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1519. this.uiGroupBox8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1520. //
  1521. // uiButton1
  1522. //
  1523. this.uiButton1.Cursor = System.Windows.Forms.Cursors.Hand;
  1524. this.uiButton1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1525. this.uiButton1.Location = new System.Drawing.Point(45, 75);
  1526. this.uiButton1.MinimumSize = new System.Drawing.Size(1, 1);
  1527. this.uiButton1.Name = "uiButton1";
  1528. this.uiButton1.Size = new System.Drawing.Size(100, 20);
  1529. this.uiButton1.TabIndex = 2;
  1530. this.uiButton1.Text = "退出";
  1531. this.uiButton1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1532. this.uiButton1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1533. this.uiButton1.Click += new System.EventHandler(this.uiButton1_Click_1);
  1534. //
  1535. // uiButton2
  1536. //
  1537. this.uiButton2.Cursor = System.Windows.Forms.Cursors.Hand;
  1538. this.uiButton2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1539. this.uiButton2.Location = new System.Drawing.Point(45, 44);
  1540. this.uiButton2.MinimumSize = new System.Drawing.Size(1, 1);
  1541. this.uiButton2.Name = "uiButton2";
  1542. this.uiButton2.Size = new System.Drawing.Size(100, 20);
  1543. this.uiButton2.TabIndex = 1;
  1544. this.uiButton2.Text = "批量对账";
  1545. this.uiButton2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1546. this.uiButton2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1547. this.uiButton2.Click += new System.EventHandler(this.uiButton2_Click);
  1548. //
  1549. // uiButton3
  1550. //
  1551. this.uiButton3.Cursor = System.Windows.Forms.Cursors.Hand;
  1552. this.uiButton3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1553. this.uiButton3.Location = new System.Drawing.Point(45, 13);
  1554. this.uiButton3.MinimumSize = new System.Drawing.Size(1, 1);
  1555. this.uiButton3.Name = "uiButton3";
  1556. this.uiButton3.Size = new System.Drawing.Size(100, 20);
  1557. this.uiButton3.TabIndex = 0;
  1558. this.uiButton3.Text = "查询结算数据";
  1559. this.uiButton3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1560. this.uiButton3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1561. this.uiButton3.Click += new System.EventHandler(this.uiButton3_Click);
  1562. //
  1563. // uiGroupBox9
  1564. //
  1565. this.uiGroupBox9.Controls.Add(this.uiSymbolButton1);
  1566. this.uiGroupBox9.Controls.Add(this.uiSymbolButton2);
  1567. this.uiGroupBox9.Controls.Add(this.dpED_O);
  1568. this.uiGroupBox9.Controls.Add(this.dpST_O);
  1569. this.uiGroupBox9.Dock = System.Windows.Forms.DockStyle.Top;
  1570. this.uiGroupBox9.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1571. this.uiGroupBox9.Location = new System.Drawing.Point(0, 0);
  1572. this.uiGroupBox9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1573. this.uiGroupBox9.MinimumSize = new System.Drawing.Size(1, 1);
  1574. this.uiGroupBox9.Name = "uiGroupBox9";
  1575. this.uiGroupBox9.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1576. this.uiGroupBox9.Size = new System.Drawing.Size(217, 112);
  1577. this.uiGroupBox9.TabIndex = 21;
  1578. this.uiGroupBox9.Text = "起止时间";
  1579. this.uiGroupBox9.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1580. this.uiGroupBox9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1581. //
  1582. // uiSymbolButton1
  1583. //
  1584. this.uiSymbolButton1.Cursor = System.Windows.Forms.Cursors.Hand;
  1585. this.uiSymbolButton1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1586. this.uiSymbolButton1.Location = new System.Drawing.Point(160, 3);
  1587. this.uiSymbolButton1.MinimumSize = new System.Drawing.Size(1, 1);
  1588. this.uiSymbolButton1.Name = "uiSymbolButton1";
  1589. this.uiSymbolButton1.Size = new System.Drawing.Size(38, 23);
  1590. this.uiSymbolButton1.Symbol = 61544;
  1591. this.uiSymbolButton1.TabIndex = 3;
  1592. this.uiSymbolButton1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1593. this.uiSymbolButton1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1594. //
  1595. // uiSymbolButton2
  1596. //
  1597. this.uiSymbolButton2.Cursor = System.Windows.Forms.Cursors.Hand;
  1598. this.uiSymbolButton2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1599. this.uiSymbolButton2.Location = new System.Drawing.Point(116, 3);
  1600. this.uiSymbolButton2.MinimumSize = new System.Drawing.Size(1, 1);
  1601. this.uiSymbolButton2.Name = "uiSymbolButton2";
  1602. this.uiSymbolButton2.Size = new System.Drawing.Size(38, 23);
  1603. this.uiSymbolButton2.Symbol = 61543;
  1604. this.uiSymbolButton2.TabIndex = 2;
  1605. this.uiSymbolButton2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1606. this.uiSymbolButton2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1607. this.uiSymbolButton2.Click += new System.EventHandler(this.uiSymbolButton2_Click);
  1608. //
  1609. // dpED_O
  1610. //
  1611. this.dpED_O.FillColor = System.Drawing.Color.White;
  1612. this.dpED_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1613. this.dpED_O.Location = new System.Drawing.Point(13, 70);
  1614. this.dpED_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1615. this.dpED_O.MaxLength = 19;
  1616. this.dpED_O.MinimumSize = new System.Drawing.Size(63, 0);
  1617. this.dpED_O.Name = "dpED_O";
  1618. this.dpED_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1619. this.dpED_O.Size = new System.Drawing.Size(200, 29);
  1620. this.dpED_O.SymbolDropDown = 61555;
  1621. this.dpED_O.SymbolNormal = 61555;
  1622. this.dpED_O.TabIndex = 1;
  1623. this.dpED_O.Text = "2022-06-01 23:59:59";
  1624. this.dpED_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1625. this.dpED_O.Value = new System.DateTime(2022, 6, 1, 23, 59, 59, 0);
  1626. this.dpED_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1627. //
  1628. // dpST_O
  1629. //
  1630. this.dpST_O.FillColor = System.Drawing.Color.White;
  1631. this.dpST_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1632. this.dpST_O.Location = new System.Drawing.Point(13, 31);
  1633. this.dpST_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1634. this.dpST_O.MaxLength = 19;
  1635. this.dpST_O.MinimumSize = new System.Drawing.Size(63, 0);
  1636. this.dpST_O.Name = "dpST_O";
  1637. this.dpST_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1638. this.dpST_O.Size = new System.Drawing.Size(200, 29);
  1639. this.dpST_O.SymbolDropDown = 61555;
  1640. this.dpST_O.SymbolNormal = 61555;
  1641. this.dpST_O.TabIndex = 0;
  1642. this.dpST_O.Text = "2022-06-01 00:00:00";
  1643. this.dpST_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1644. this.dpST_O.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
  1645. this.dpST_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1646. //
  1647. // tabPage2
  1648. //
  1649. this.tabPage2.Controls.Add(this.uiPanel4);
  1650. this.tabPage2.Controls.Add(this.uiPanel3);
  1651. this.tabPage2.Location = new System.Drawing.Point(0, 30);
  1652. this.tabPage2.Name = "tabPage2";
  1653. this.tabPage2.Size = new System.Drawing.Size(1200, 766);
  1654. this.tabPage2.TabIndex = 1;
  1655. this.tabPage2.Text = "清算汇总";
  1656. this.tabPage2.UseVisualStyleBackColor = true;
  1657. //
  1658. // uiPanel4
  1659. //
  1660. this.uiPanel4.Controls.Add(this.uiTabControl4);
  1661. this.uiPanel4.Controls.Add(this.uiTabControl5);
  1662. this.uiPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
  1663. this.uiPanel4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1664. this.uiPanel4.Location = new System.Drawing.Point(217, 0);
  1665. this.uiPanel4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1666. this.uiPanel4.MinimumSize = new System.Drawing.Size(1, 1);
  1667. this.uiPanel4.Name = "uiPanel4";
  1668. this.uiPanel4.Size = new System.Drawing.Size(983, 766);
  1669. this.uiPanel4.TabIndex = 4;
  1670. this.uiPanel4.Text = null;
  1671. this.uiPanel4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1672. this.uiPanel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1673. //
  1674. // uiTabControl4
  1675. //
  1676. this.uiTabControl4.Controls.Add(this.tabPage9);
  1677. this.uiTabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
  1678. this.uiTabControl4.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1679. this.uiTabControl4.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1680. this.uiTabControl4.ItemSize = new System.Drawing.Size(150, 25);
  1681. this.uiTabControl4.Location = new System.Drawing.Point(0, 424);
  1682. this.uiTabControl4.MainPage = "";
  1683. this.uiTabControl4.Name = "uiTabControl4";
  1684. this.uiTabControl4.SelectedIndex = 0;
  1685. this.uiTabControl4.Size = new System.Drawing.Size(983, 342);
  1686. this.uiTabControl4.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  1687. this.uiTabControl4.TabIndex = 1;
  1688. this.uiTabControl4.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1689. this.uiTabControl4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1690. //
  1691. // tabPage9
  1692. //
  1693. this.tabPage9.Controls.Add(this.dgvHisSettlRec_2);
  1694. this.tabPage9.Location = new System.Drawing.Point(0, 25);
  1695. this.tabPage9.Name = "tabPage9";
  1696. this.tabPage9.Size = new System.Drawing.Size(983, 317);
  1697. this.tabPage9.TabIndex = 0;
  1698. this.tabPage9.Text = "HIS结算记录";
  1699. this.tabPage9.UseVisualStyleBackColor = true;
  1700. //
  1701. // dgvHisSettlRec_2
  1702. //
  1703. this.dgvHisSettlRec_2.AllowUserToAddRows = false;
  1704. dataGridViewCellStyle16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1705. this.dgvHisSettlRec_2.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle16;
  1706. this.dgvHisSettlRec_2.BackgroundColor = System.Drawing.Color.White;
  1707. this.dgvHisSettlRec_2.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1708. dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1709. dataGridViewCellStyle17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1710. dataGridViewCellStyle17.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1711. dataGridViewCellStyle17.ForeColor = System.Drawing.Color.White;
  1712. dataGridViewCellStyle17.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1713. dataGridViewCellStyle17.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1714. dataGridViewCellStyle17.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1715. this.dgvHisSettlRec_2.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle17;
  1716. this.dgvHisSettlRec_2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1717. dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1718. dataGridViewCellStyle18.BackColor = System.Drawing.SystemColors.Window;
  1719. dataGridViewCellStyle18.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1720. dataGridViewCellStyle18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1721. dataGridViewCellStyle18.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1722. dataGridViewCellStyle18.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1723. dataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1724. this.dgvHisSettlRec_2.DefaultCellStyle = dataGridViewCellStyle18;
  1725. this.dgvHisSettlRec_2.Dock = System.Windows.Forms.DockStyle.Fill;
  1726. this.dgvHisSettlRec_2.EnableHeadersVisualStyles = false;
  1727. this.dgvHisSettlRec_2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1728. this.dgvHisSettlRec_2.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1729. this.dgvHisSettlRec_2.Location = new System.Drawing.Point(0, 0);
  1730. this.dgvHisSettlRec_2.Name = "dgvHisSettlRec_2";
  1731. this.dgvHisSettlRec_2.ReadOnly = true;
  1732. dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1733. dataGridViewCellStyle19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1734. dataGridViewCellStyle19.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1735. dataGridViewCellStyle19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1736. dataGridViewCellStyle19.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1737. dataGridViewCellStyle19.SelectionForeColor = System.Drawing.Color.White;
  1738. dataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1739. this.dgvHisSettlRec_2.RowHeadersDefaultCellStyle = dataGridViewCellStyle19;
  1740. this.dgvHisSettlRec_2.RowHeadersWidth = 51;
  1741. dataGridViewCellStyle20.BackColor = System.Drawing.Color.White;
  1742. dataGridViewCellStyle20.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1743. this.dgvHisSettlRec_2.RowsDefaultCellStyle = dataGridViewCellStyle20;
  1744. this.dgvHisSettlRec_2.RowTemplate.Height = 23;
  1745. this.dgvHisSettlRec_2.SelectedIndex = -1;
  1746. this.dgvHisSettlRec_2.Size = new System.Drawing.Size(983, 317);
  1747. this.dgvHisSettlRec_2.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1748. this.dgvHisSettlRec_2.TabIndex = 1;
  1749. this.dgvHisSettlRec_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1750. //
  1751. // uiTabControl5
  1752. //
  1753. this.uiTabControl5.Controls.Add(this.tabPage12);
  1754. this.uiTabControl5.Dock = System.Windows.Forms.DockStyle.Top;
  1755. this.uiTabControl5.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1756. this.uiTabControl5.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1757. this.uiTabControl5.ItemSize = new System.Drawing.Size(150, 25);
  1758. this.uiTabControl5.Location = new System.Drawing.Point(0, 0);
  1759. this.uiTabControl5.MainPage = "";
  1760. this.uiTabControl5.Name = "uiTabControl5";
  1761. this.uiTabControl5.SelectedIndex = 0;
  1762. this.uiTabControl5.Size = new System.Drawing.Size(983, 424);
  1763. this.uiTabControl5.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  1764. this.uiTabControl5.TabIndex = 0;
  1765. this.uiTabControl5.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1766. this.uiTabControl5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1767. //
  1768. // tabPage12
  1769. //
  1770. this.tabPage12.Controls.Add(this.dgvClearingSum);
  1771. this.tabPage12.Location = new System.Drawing.Point(0, 25);
  1772. this.tabPage12.Name = "tabPage12";
  1773. this.tabPage12.Size = new System.Drawing.Size(983, 399);
  1774. this.tabPage12.TabIndex = 0;
  1775. this.tabPage12.Text = "结算汇总数据";
  1776. this.tabPage12.UseVisualStyleBackColor = true;
  1777. //
  1778. // dgvClearingSum
  1779. //
  1780. this.dgvClearingSum.AllowUserToAddRows = false;
  1781. dataGridViewCellStyle51.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1782. this.dgvClearingSum.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle51;
  1783. this.dgvClearingSum.BackgroundColor = System.Drawing.Color.White;
  1784. this.dgvClearingSum.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
  1785. dataGridViewCellStyle52.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1786. dataGridViewCellStyle52.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1787. dataGridViewCellStyle52.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1788. dataGridViewCellStyle52.ForeColor = System.Drawing.Color.White;
  1789. dataGridViewCellStyle52.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1790. dataGridViewCellStyle52.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1791. dataGridViewCellStyle52.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1792. this.dgvClearingSum.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle52;
  1793. this.dgvClearingSum.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1794. this.dgvClearingSum.ContextMenuStrip = this.cmsClearing;
  1795. dataGridViewCellStyle53.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1796. dataGridViewCellStyle53.BackColor = System.Drawing.SystemColors.Window;
  1797. dataGridViewCellStyle53.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1798. dataGridViewCellStyle53.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1799. dataGridViewCellStyle53.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1800. dataGridViewCellStyle53.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1801. dataGridViewCellStyle53.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1802. this.dgvClearingSum.DefaultCellStyle = dataGridViewCellStyle53;
  1803. this.dgvClearingSum.Dock = System.Windows.Forms.DockStyle.Fill;
  1804. this.dgvClearingSum.EnableHeadersVisualStyles = false;
  1805. this.dgvClearingSum.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1806. this.dgvClearingSum.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1807. this.dgvClearingSum.Location = new System.Drawing.Point(0, 0);
  1808. this.dgvClearingSum.Name = "dgvClearingSum";
  1809. this.dgvClearingSum.ReadOnly = true;
  1810. dataGridViewCellStyle54.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1811. dataGridViewCellStyle54.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1812. dataGridViewCellStyle54.Font = new System.Drawing.Font("微软雅黑", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1813. dataGridViewCellStyle54.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1814. dataGridViewCellStyle54.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1815. dataGridViewCellStyle54.SelectionForeColor = System.Drawing.Color.White;
  1816. dataGridViewCellStyle54.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1817. this.dgvClearingSum.RowHeadersDefaultCellStyle = dataGridViewCellStyle54;
  1818. this.dgvClearingSum.RowHeadersWidth = 30;
  1819. this.dgvClearingSum.RowHeight = 30;
  1820. dataGridViewCellStyle55.BackColor = System.Drawing.Color.White;
  1821. dataGridViewCellStyle55.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1822. this.dgvClearingSum.RowsDefaultCellStyle = dataGridViewCellStyle55;
  1823. this.dgvClearingSum.RowTemplate.Height = 30;
  1824. this.dgvClearingSum.SelectedIndex = -1;
  1825. this.dgvClearingSum.Size = new System.Drawing.Size(983, 399);
  1826. this.dgvClearingSum.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1827. this.dgvClearingSum.TabIndex = 0;
  1828. this.dgvClearingSum.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1829. //
  1830. // cmsClearing
  1831. //
  1832. this.cmsClearing.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1833. this.cmsClearing.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1834. this.cmsClearing.ImageScalingSize = new System.Drawing.Size(20, 20);
  1835. this.cmsClearing.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  1836. this.tmsClearing_2,
  1837. this.tmsHisSettlRecord_2});
  1838. this.cmsClearing.Name = "cmsClearing";
  1839. this.cmsClearing.Size = new System.Drawing.Size(203, 56);
  1840. this.cmsClearing.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1841. this.cmsClearing.Opening += new System.ComponentModel.CancelEventHandler(this.cmsClearing_Opening);
  1842. //
  1843. // tmsClearing_2
  1844. //
  1845. this.tmsClearing_2.Name = "tmsClearing_2";
  1846. this.tmsClearing_2.Size = new System.Drawing.Size(202, 26);
  1847. this.tmsClearing_2.Text = "单条清算";
  1848. this.tmsClearing_2.Click += new System.EventHandler(this.tmsClearing_2_Click);
  1849. //
  1850. // tmsHisSettlRecord_2
  1851. //
  1852. this.tmsHisSettlRecord_2.Name = "tmsHisSettlRecord_2";
  1853. this.tmsHisSettlRecord_2.Size = new System.Drawing.Size(202, 26);
  1854. this.tmsHisSettlRecord_2.Text = "查看HIS结算记录";
  1855. //
  1856. // uiPanel3
  1857. //
  1858. this.uiPanel3.Controls.Add(this.uiGroupBox3);
  1859. this.uiPanel3.Controls.Add(this.uiGroupBox2);
  1860. this.uiPanel3.Controls.Add(this.uiGroupBox4);
  1861. this.uiPanel3.Dock = System.Windows.Forms.DockStyle.Left;
  1862. this.uiPanel3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1863. this.uiPanel3.Location = new System.Drawing.Point(0, 0);
  1864. this.uiPanel3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1865. this.uiPanel3.MinimumSize = new System.Drawing.Size(1, 1);
  1866. this.uiPanel3.Name = "uiPanel3";
  1867. this.uiPanel3.Size = new System.Drawing.Size(217, 766);
  1868. this.uiPanel3.TabIndex = 3;
  1869. this.uiPanel3.Text = null;
  1870. this.uiPanel3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1871. this.uiPanel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1872. //
  1873. // uiGroupBox3
  1874. //
  1875. this.uiGroupBox3.Controls.Add(this.btnClose_2);
  1876. this.uiGroupBox3.Controls.Add(this.btnPatchClr);
  1877. this.uiGroupBox3.Controls.Add(this.btnQueryClrSum);
  1878. this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
  1879. this.uiGroupBox3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1880. this.uiGroupBox3.Location = new System.Drawing.Point(0, 657);
  1881. this.uiGroupBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1882. this.uiGroupBox3.MinimumSize = new System.Drawing.Size(1, 1);
  1883. this.uiGroupBox3.Name = "uiGroupBox3";
  1884. this.uiGroupBox3.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1885. this.uiGroupBox3.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  1886. this.uiGroupBox3.RectSize = 2;
  1887. this.uiGroupBox3.Size = new System.Drawing.Size(217, 109);
  1888. this.uiGroupBox3.TabIndex = 25;
  1889. this.uiGroupBox3.Text = null;
  1890. this.uiGroupBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1891. this.uiGroupBox3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1892. //
  1893. // btnClose_2
  1894. //
  1895. this.btnClose_2.Cursor = System.Windows.Forms.Cursors.Hand;
  1896. this.btnClose_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1897. this.btnClose_2.Location = new System.Drawing.Point(45, 75);
  1898. this.btnClose_2.MinimumSize = new System.Drawing.Size(1, 1);
  1899. this.btnClose_2.Name = "btnClose_2";
  1900. this.btnClose_2.Size = new System.Drawing.Size(100, 20);
  1901. this.btnClose_2.TabIndex = 2;
  1902. this.btnClose_2.Text = "退出";
  1903. this.btnClose_2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1904. this.btnClose_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1905. //
  1906. // btnPatchClr
  1907. //
  1908. this.btnPatchClr.Cursor = System.Windows.Forms.Cursors.Hand;
  1909. this.btnPatchClr.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1910. this.btnPatchClr.Location = new System.Drawing.Point(45, 44);
  1911. this.btnPatchClr.MinimumSize = new System.Drawing.Size(1, 1);
  1912. this.btnPatchClr.Name = "btnPatchClr";
  1913. this.btnPatchClr.Size = new System.Drawing.Size(100, 20);
  1914. this.btnPatchClr.TabIndex = 1;
  1915. this.btnPatchClr.Text = "批量清算";
  1916. this.btnPatchClr.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1917. this.btnPatchClr.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1918. //
  1919. // btnQueryClrSum
  1920. //
  1921. this.btnQueryClrSum.Cursor = System.Windows.Forms.Cursors.Hand;
  1922. this.btnQueryClrSum.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1923. this.btnQueryClrSum.Location = new System.Drawing.Point(45, 13);
  1924. this.btnQueryClrSum.MinimumSize = new System.Drawing.Size(1, 1);
  1925. this.btnQueryClrSum.Name = "btnQueryClrSum";
  1926. this.btnQueryClrSum.Size = new System.Drawing.Size(100, 20);
  1927. this.btnQueryClrSum.TabIndex = 0;
  1928. this.btnQueryClrSum.Text = "查询汇总数据";
  1929. this.btnQueryClrSum.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1930. this.btnQueryClrSum.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1931. //
  1932. // uiGroupBox2
  1933. //
  1934. this.uiGroupBox2.Controls.Add(this.tbInsuPlc);
  1935. this.uiGroupBox2.Controls.Add(this.uiLabel18);
  1936. this.uiGroupBox2.Controls.Add(this.cbOtherPlaceFlag);
  1937. this.uiGroupBox2.Controls.Add(this.uiLabel19);
  1938. this.uiGroupBox2.Controls.Add(this.cbClrWay_2);
  1939. this.uiGroupBox2.Controls.Add(this.uiLabel11);
  1940. this.uiGroupBox2.Controls.Add(this.cbInterface_2);
  1941. this.uiGroupBox2.Controls.Add(this.tbSettlOption_2);
  1942. this.uiGroupBox2.Controls.Add(this.cbValid_2);
  1943. this.uiGroupBox2.Controls.Add(this.uiLabel6);
  1944. this.uiGroupBox2.Controls.Add(this.uiLabel7);
  1945. this.uiGroupBox2.Controls.Add(this.cbClrType_2);
  1946. this.uiGroupBox2.Controls.Add(this.uiLabel8);
  1947. this.uiGroupBox2.Controls.Add(this.cbInsutype_2);
  1948. this.uiGroupBox2.Controls.Add(this.uiLabel9);
  1949. this.uiGroupBox2.Controls.Add(this.uiLabel10);
  1950. this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
  1951. this.uiGroupBox2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1952. this.uiGroupBox2.Location = new System.Drawing.Point(0, 112);
  1953. this.uiGroupBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1954. this.uiGroupBox2.MinimumSize = new System.Drawing.Size(1, 1);
  1955. this.uiGroupBox2.Name = "uiGroupBox2";
  1956. this.uiGroupBox2.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  1957. this.uiGroupBox2.Size = new System.Drawing.Size(217, 284);
  1958. this.uiGroupBox2.TabIndex = 24;
  1959. this.uiGroupBox2.TabStop = false;
  1960. this.uiGroupBox2.Text = "条件设置";
  1961. this.uiGroupBox2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1962. this.uiGroupBox2.TitleTop = 10;
  1963. this.uiGroupBox2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1964. //
  1965. // tbInsuPlc
  1966. //
  1967. this.tbInsuPlc.Cursor = System.Windows.Forms.Cursors.IBeam;
  1968. this.tbInsuPlc.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1969. this.tbInsuPlc.Location = new System.Drawing.Point(80, 257);
  1970. this.tbInsuPlc.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1971. this.tbInsuPlc.MinimumSize = new System.Drawing.Size(1, 16);
  1972. this.tbInsuPlc.Name = "tbInsuPlc";
  1973. this.tbInsuPlc.ShowText = false;
  1974. this.tbInsuPlc.Size = new System.Drawing.Size(130, 25);
  1975. this.tbInsuPlc.TabIndex = 17;
  1976. this.tbInsuPlc.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1977. this.tbInsuPlc.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1978. //
  1979. // uiLabel18
  1980. //
  1981. this.uiLabel18.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1982. this.uiLabel18.Location = new System.Drawing.Point(10, 255);
  1983. this.uiLabel18.Name = "uiLabel18";
  1984. this.uiLabel18.Size = new System.Drawing.Size(63, 23);
  1985. this.uiLabel18.TabIndex = 16;
  1986. this.uiLabel18.Text = "参保地";
  1987. this.uiLabel18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1988. this.uiLabel18.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1989. //
  1990. // cbOtherPlaceFlag
  1991. //
  1992. this.cbOtherPlaceFlag.DataSource = null;
  1993. this.cbOtherPlaceFlag.FillColor = System.Drawing.Color.White;
  1994. this.cbOtherPlaceFlag.FilterMaxCount = 50;
  1995. this.cbOtherPlaceFlag.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1996. this.cbOtherPlaceFlag.ItemHeight = 20;
  1997. this.cbOtherPlaceFlag.Items.AddRange(new object[] {
  1998. "全部",
  1999. "是",
  2000. "否"});
  2001. this.cbOtherPlaceFlag.Location = new System.Drawing.Point(79, 227);
  2002. this.cbOtherPlaceFlag.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2003. this.cbOtherPlaceFlag.MinimumSize = new System.Drawing.Size(63, 0);
  2004. this.cbOtherPlaceFlag.Name = "cbOtherPlaceFlag";
  2005. this.cbOtherPlaceFlag.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2006. this.cbOtherPlaceFlag.Size = new System.Drawing.Size(130, 25);
  2007. this.cbOtherPlaceFlag.TabIndex = 15;
  2008. this.cbOtherPlaceFlag.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2009. this.cbOtherPlaceFlag.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2010. //
  2011. // uiLabel19
  2012. //
  2013. this.uiLabel19.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2014. this.uiLabel19.Location = new System.Drawing.Point(9, 228);
  2015. this.uiLabel19.Name = "uiLabel19";
  2016. this.uiLabel19.Size = new System.Drawing.Size(63, 23);
  2017. this.uiLabel19.TabIndex = 14;
  2018. this.uiLabel19.Text = "异地标志";
  2019. this.uiLabel19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2020. this.uiLabel19.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2021. //
  2022. // cbClrWay_2
  2023. //
  2024. this.cbClrWay_2.DataSource = null;
  2025. this.cbClrWay_2.FillColor = System.Drawing.Color.White;
  2026. this.cbClrWay_2.FilterMaxCount = 50;
  2027. this.cbClrWay_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2028. this.cbClrWay_2.ItemHeight = 20;
  2029. this.cbClrWay_2.Items.AddRange(new object[] {
  2030. "1",
  2031. "2"});
  2032. this.cbClrWay_2.Location = new System.Drawing.Point(79, 192);
  2033. this.cbClrWay_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2034. this.cbClrWay_2.MinimumSize = new System.Drawing.Size(63, 0);
  2035. this.cbClrWay_2.Name = "cbClrWay_2";
  2036. this.cbClrWay_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2037. this.cbClrWay_2.Size = new System.Drawing.Size(130, 25);
  2038. this.cbClrWay_2.TabIndex = 13;
  2039. this.cbClrWay_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2040. this.cbClrWay_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2041. //
  2042. // uiLabel11
  2043. //
  2044. this.uiLabel11.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2045. this.uiLabel11.Location = new System.Drawing.Point(9, 193);
  2046. this.uiLabel11.Name = "uiLabel11";
  2047. this.uiLabel11.Size = new System.Drawing.Size(63, 23);
  2048. this.uiLabel11.TabIndex = 12;
  2049. this.uiLabel11.Text = "清算方式";
  2050. this.uiLabel11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2051. this.uiLabel11.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2052. //
  2053. // cbInterface_2
  2054. //
  2055. this.cbInterface_2.DataSource = null;
  2056. this.cbInterface_2.FillColor = System.Drawing.Color.White;
  2057. this.cbInterface_2.FilterMaxCount = 50;
  2058. this.cbInterface_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2059. this.cbInterface_2.ItemHeight = 20;
  2060. this.cbInterface_2.Items.AddRange(new object[] {
  2061. "1",
  2062. "2"});
  2063. this.cbInterface_2.Location = new System.Drawing.Point(80, 23);
  2064. this.cbInterface_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2065. this.cbInterface_2.MinimumSize = new System.Drawing.Size(63, 0);
  2066. this.cbInterface_2.Name = "cbInterface_2";
  2067. this.cbInterface_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2068. this.cbInterface_2.Size = new System.Drawing.Size(130, 25);
  2069. this.cbInterface_2.TabIndex = 11;
  2070. this.cbInterface_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2071. this.cbInterface_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2072. //
  2073. // tbSettlOption_2
  2074. //
  2075. this.tbSettlOption_2.Cursor = System.Windows.Forms.Cursors.IBeam;
  2076. this.tbSettlOption_2.Enabled = false;
  2077. this.tbSettlOption_2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2078. this.tbSettlOption_2.Location = new System.Drawing.Point(79, 124);
  2079. this.tbSettlOption_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2080. this.tbSettlOption_2.MinimumSize = new System.Drawing.Size(1, 16);
  2081. this.tbSettlOption_2.Name = "tbSettlOption_2";
  2082. this.tbSettlOption_2.ShowText = false;
  2083. this.tbSettlOption_2.Size = new System.Drawing.Size(130, 25);
  2084. this.tbSettlOption_2.TabIndex = 10;
  2085. this.tbSettlOption_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2086. this.tbSettlOption_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2087. //
  2088. // cbValid_2
  2089. //
  2090. this.cbValid_2.DataSource = null;
  2091. this.cbValid_2.FillColor = System.Drawing.Color.White;
  2092. this.cbValid_2.FilterMaxCount = 50;
  2093. this.cbValid_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2094. this.cbValid_2.ItemHeight = 20;
  2095. this.cbValid_2.Items.AddRange(new object[] {
  2096. "全部",
  2097. "有效",
  2098. "无效"});
  2099. this.cbValid_2.Location = new System.Drawing.Point(79, 157);
  2100. this.cbValid_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2101. this.cbValid_2.MinimumSize = new System.Drawing.Size(63, 0);
  2102. this.cbValid_2.Name = "cbValid_2";
  2103. this.cbValid_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2104. this.cbValid_2.Size = new System.Drawing.Size(130, 25);
  2105. this.cbValid_2.TabIndex = 9;
  2106. this.cbValid_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2107. this.cbValid_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2108. //
  2109. // uiLabel6
  2110. //
  2111. this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2112. this.uiLabel6.Location = new System.Drawing.Point(9, 158);
  2113. this.uiLabel6.Name = "uiLabel6";
  2114. this.uiLabel6.Size = new System.Drawing.Size(63, 23);
  2115. this.uiLabel6.TabIndex = 8;
  2116. this.uiLabel6.Text = "有效标志";
  2117. this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2118. this.uiLabel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2119. //
  2120. // uiLabel7
  2121. //
  2122. this.uiLabel7.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2123. this.uiLabel7.Location = new System.Drawing.Point(9, 125);
  2124. this.uiLabel7.Name = "uiLabel7";
  2125. this.uiLabel7.Size = new System.Drawing.Size(63, 23);
  2126. this.uiLabel7.TabIndex = 6;
  2127. this.uiLabel7.Text = "经办机构";
  2128. this.uiLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2129. this.uiLabel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2130. //
  2131. // cbClrType_2
  2132. //
  2133. this.cbClrType_2.DataSource = null;
  2134. this.cbClrType_2.FillColor = System.Drawing.Color.White;
  2135. this.cbClrType_2.FilterMaxCount = 50;
  2136. this.cbClrType_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2137. this.cbClrType_2.ItemHeight = 20;
  2138. this.cbClrType_2.Items.AddRange(new object[] {
  2139. "1",
  2140. "2"});
  2141. this.cbClrType_2.Location = new System.Drawing.Point(79, 91);
  2142. this.cbClrType_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2143. this.cbClrType_2.MinimumSize = new System.Drawing.Size(63, 0);
  2144. this.cbClrType_2.Name = "cbClrType_2";
  2145. this.cbClrType_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2146. this.cbClrType_2.Size = new System.Drawing.Size(130, 25);
  2147. this.cbClrType_2.TabIndex = 5;
  2148. this.cbClrType_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2149. this.cbClrType_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2150. //
  2151. // uiLabel8
  2152. //
  2153. this.uiLabel8.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2154. this.uiLabel8.Location = new System.Drawing.Point(9, 92);
  2155. this.uiLabel8.Name = "uiLabel8";
  2156. this.uiLabel8.Size = new System.Drawing.Size(63, 23);
  2157. this.uiLabel8.TabIndex = 4;
  2158. this.uiLabel8.Text = "清算类别";
  2159. this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2160. this.uiLabel8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2161. //
  2162. // cbInsutype_2
  2163. //
  2164. this.cbInsutype_2.DataSource = null;
  2165. this.cbInsutype_2.Enabled = false;
  2166. this.cbInsutype_2.FillColor = System.Drawing.Color.White;
  2167. this.cbInsutype_2.FilterMaxCount = 50;
  2168. this.cbInsutype_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2169. this.cbInsutype_2.ItemHeight = 20;
  2170. this.cbInsutype_2.Items.AddRange(new object[] {
  2171. "1",
  2172. "2"});
  2173. this.cbInsutype_2.Location = new System.Drawing.Point(79, 58);
  2174. this.cbInsutype_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2175. this.cbInsutype_2.MinimumSize = new System.Drawing.Size(63, 0);
  2176. this.cbInsutype_2.Name = "cbInsutype_2";
  2177. this.cbInsutype_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2178. this.cbInsutype_2.Size = new System.Drawing.Size(130, 25);
  2179. this.cbInsutype_2.TabIndex = 3;
  2180. this.cbInsutype_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2181. this.cbInsutype_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2182. //
  2183. // uiLabel9
  2184. //
  2185. this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2186. this.uiLabel9.Location = new System.Drawing.Point(9, 59);
  2187. this.uiLabel9.Name = "uiLabel9";
  2188. this.uiLabel9.Size = new System.Drawing.Size(63, 23);
  2189. this.uiLabel9.TabIndex = 2;
  2190. this.uiLabel9.Text = "险种类型";
  2191. this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2192. this.uiLabel9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2193. //
  2194. // uiLabel10
  2195. //
  2196. this.uiLabel10.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2197. this.uiLabel10.Location = new System.Drawing.Point(9, 26);
  2198. this.uiLabel10.Name = "uiLabel10";
  2199. this.uiLabel10.Size = new System.Drawing.Size(63, 23);
  2200. this.uiLabel10.TabIndex = 0;
  2201. this.uiLabel10.Text = "接口目录";
  2202. this.uiLabel10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2203. this.uiLabel10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2204. //
  2205. // uiGroupBox4
  2206. //
  2207. this.uiGroupBox4.Controls.Add(this.btnReduceMonth);
  2208. this.uiGroupBox4.Controls.Add(this.btnAddMonth);
  2209. this.uiGroupBox4.Controls.Add(this.dpED_2);
  2210. this.uiGroupBox4.Controls.Add(this.dpST_2);
  2211. this.uiGroupBox4.Dock = System.Windows.Forms.DockStyle.Top;
  2212. this.uiGroupBox4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2213. this.uiGroupBox4.Location = new System.Drawing.Point(0, 0);
  2214. this.uiGroupBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2215. this.uiGroupBox4.MinimumSize = new System.Drawing.Size(1, 1);
  2216. this.uiGroupBox4.Name = "uiGroupBox4";
  2217. this.uiGroupBox4.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  2218. this.uiGroupBox4.Size = new System.Drawing.Size(217, 112);
  2219. this.uiGroupBox4.TabIndex = 21;
  2220. this.uiGroupBox4.Text = "起止时间";
  2221. this.uiGroupBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2222. this.uiGroupBox4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2223. //
  2224. // btnReduceMonth
  2225. //
  2226. this.btnReduceMonth.Cursor = System.Windows.Forms.Cursors.Hand;
  2227. this.btnReduceMonth.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2228. this.btnReduceMonth.Location = new System.Drawing.Point(160, 3);
  2229. this.btnReduceMonth.MinimumSize = new System.Drawing.Size(1, 1);
  2230. this.btnReduceMonth.Name = "btnReduceMonth";
  2231. this.btnReduceMonth.Size = new System.Drawing.Size(38, 23);
  2232. this.btnReduceMonth.Symbol = 61544;
  2233. this.btnReduceMonth.TabIndex = 3;
  2234. this.btnReduceMonth.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2235. this.btnReduceMonth.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2236. this.btnReduceMonth.Click += new System.EventHandler(this.btnReduceMonth_Click);
  2237. //
  2238. // btnAddMonth
  2239. //
  2240. this.btnAddMonth.Cursor = System.Windows.Forms.Cursors.Hand;
  2241. this.btnAddMonth.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2242. this.btnAddMonth.Location = new System.Drawing.Point(116, 3);
  2243. this.btnAddMonth.MinimumSize = new System.Drawing.Size(1, 1);
  2244. this.btnAddMonth.Name = "btnAddMonth";
  2245. this.btnAddMonth.Size = new System.Drawing.Size(38, 23);
  2246. this.btnAddMonth.Symbol = 61543;
  2247. this.btnAddMonth.TabIndex = 2;
  2248. this.btnAddMonth.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2249. this.btnAddMonth.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2250. this.btnAddMonth.Click += new System.EventHandler(this.btnAddMonth_Click);
  2251. //
  2252. // dpED_2
  2253. //
  2254. this.dpED_2.FillColor = System.Drawing.Color.White;
  2255. this.dpED_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2256. this.dpED_2.Location = new System.Drawing.Point(13, 70);
  2257. this.dpED_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2258. this.dpED_2.MaxLength = 19;
  2259. this.dpED_2.MinimumSize = new System.Drawing.Size(63, 0);
  2260. this.dpED_2.Name = "dpED_2";
  2261. this.dpED_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2262. this.dpED_2.Size = new System.Drawing.Size(200, 29);
  2263. this.dpED_2.SymbolDropDown = 61555;
  2264. this.dpED_2.SymbolNormal = 61555;
  2265. this.dpED_2.TabIndex = 1;
  2266. this.dpED_2.Text = "2022-06-01 23:59:59";
  2267. this.dpED_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2268. this.dpED_2.Value = new System.DateTime(2022, 6, 1, 23, 59, 59, 0);
  2269. this.dpED_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2270. //
  2271. // dpST_2
  2272. //
  2273. this.dpST_2.FillColor = System.Drawing.Color.White;
  2274. this.dpST_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2275. this.dpST_2.Location = new System.Drawing.Point(13, 31);
  2276. this.dpST_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2277. this.dpST_2.MaxLength = 19;
  2278. this.dpST_2.MinimumSize = new System.Drawing.Size(63, 0);
  2279. this.dpST_2.Name = "dpST_2";
  2280. this.dpST_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2281. this.dpST_2.Size = new System.Drawing.Size(200, 29);
  2282. this.dpST_2.SymbolDropDown = 61555;
  2283. this.dpST_2.SymbolNormal = 61555;
  2284. this.dpST_2.TabIndex = 0;
  2285. this.dpST_2.Text = "2022-06-01 00:00:00";
  2286. this.dpST_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2287. this.dpST_2.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
  2288. this.dpST_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2289. //
  2290. // tabPage3
  2291. //
  2292. this.tabPage3.Controls.Add(this.dgvClearingData);
  2293. this.tabPage3.Controls.Add(this.uiPanel5);
  2294. this.tabPage3.Location = new System.Drawing.Point(0, 30);
  2295. this.tabPage3.Name = "tabPage3";
  2296. this.tabPage3.Size = new System.Drawing.Size(1200, 766);
  2297. this.tabPage3.TabIndex = 2;
  2298. this.tabPage3.Text = "清算撤销";
  2299. this.tabPage3.UseVisualStyleBackColor = true;
  2300. //
  2301. // dgvClearingData
  2302. //
  2303. this.dgvClearingData.AllowUserToAddRows = false;
  2304. dataGridViewCellStyle26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2305. this.dgvClearingData.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle26;
  2306. this.dgvClearingData.BackgroundColor = System.Drawing.Color.White;
  2307. this.dgvClearingData.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  2308. dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2309. dataGridViewCellStyle27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2310. dataGridViewCellStyle27.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2311. dataGridViewCellStyle27.ForeColor = System.Drawing.Color.White;
  2312. dataGridViewCellStyle27.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2313. dataGridViewCellStyle27.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2314. dataGridViewCellStyle27.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2315. this.dgvClearingData.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle27;
  2316. this.dgvClearingData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  2317. dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2318. dataGridViewCellStyle28.BackColor = System.Drawing.SystemColors.Window;
  2319. dataGridViewCellStyle28.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2320. dataGridViewCellStyle28.ForeColor = System.Drawing.SystemColors.ControlText;
  2321. dataGridViewCellStyle28.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2322. dataGridViewCellStyle28.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2323. dataGridViewCellStyle28.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  2324. this.dgvClearingData.DefaultCellStyle = dataGridViewCellStyle28;
  2325. this.dgvClearingData.Dock = System.Windows.Forms.DockStyle.Fill;
  2326. this.dgvClearingData.EnableHeadersVisualStyles = false;
  2327. this.dgvClearingData.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2328. this.dgvClearingData.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2329. this.dgvClearingData.Location = new System.Drawing.Point(0, 0);
  2330. this.dgvClearingData.Name = "dgvClearingData";
  2331. dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2332. dataGridViewCellStyle29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2333. dataGridViewCellStyle29.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2334. dataGridViewCellStyle29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2335. dataGridViewCellStyle29.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2336. dataGridViewCellStyle29.SelectionForeColor = System.Drawing.Color.White;
  2337. dataGridViewCellStyle29.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2338. this.dgvClearingData.RowHeadersDefaultCellStyle = dataGridViewCellStyle29;
  2339. this.dgvClearingData.RowHeadersWidth = 51;
  2340. dataGridViewCellStyle30.BackColor = System.Drawing.Color.White;
  2341. dataGridViewCellStyle30.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2342. this.dgvClearingData.RowsDefaultCellStyle = dataGridViewCellStyle30;
  2343. this.dgvClearingData.RowTemplate.Height = 23;
  2344. this.dgvClearingData.SelectedIndex = -1;
  2345. this.dgvClearingData.Size = new System.Drawing.Size(1200, 659);
  2346. this.dgvClearingData.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2347. this.dgvClearingData.TabIndex = 1;
  2348. this.dgvClearingData.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2349. //
  2350. // uiPanel5
  2351. //
  2352. this.uiPanel5.Controls.Add(this.btnCancleClearing);
  2353. this.uiPanel5.Controls.Add(this.uiGroupBox6);
  2354. this.uiPanel5.Controls.Add(this.rbgTimeWay);
  2355. this.uiPanel5.Controls.Add(this.btnClose_3);
  2356. this.uiPanel5.Controls.Add(this.btnQueryClearing);
  2357. this.uiPanel5.Controls.Add(this.uiGroupBox5);
  2358. this.uiPanel5.Dock = System.Windows.Forms.DockStyle.Bottom;
  2359. this.uiPanel5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2360. this.uiPanel5.Location = new System.Drawing.Point(0, 659);
  2361. this.uiPanel5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2362. this.uiPanel5.MinimumSize = new System.Drawing.Size(1, 1);
  2363. this.uiPanel5.Name = "uiPanel5";
  2364. this.uiPanel5.Size = new System.Drawing.Size(1200, 107);
  2365. this.uiPanel5.TabIndex = 0;
  2366. this.uiPanel5.Text = null;
  2367. this.uiPanel5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2368. this.uiPanel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2369. //
  2370. // btnCancleClearing
  2371. //
  2372. this.btnCancleClearing.Cursor = System.Windows.Forms.Cursors.Hand;
  2373. this.btnCancleClearing.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2374. this.btnCancleClearing.Location = new System.Drawing.Point(846, 14);
  2375. this.btnCancleClearing.MinimumSize = new System.Drawing.Size(1, 1);
  2376. this.btnCancleClearing.Name = "btnCancleClearing";
  2377. this.btnCancleClearing.Size = new System.Drawing.Size(100, 30);
  2378. this.btnCancleClearing.TabIndex = 27;
  2379. this.btnCancleClearing.Text = "撤销清算数据";
  2380. this.btnCancleClearing.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2381. this.btnCancleClearing.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2382. this.btnCancleClearing.Click += new System.EventHandler(this.btnCancleClearing_Click);
  2383. //
  2384. // uiGroupBox6
  2385. //
  2386. this.uiGroupBox6.Controls.Add(this.cbInterface_3);
  2387. this.uiGroupBox6.Controls.Add(this.cbValid_3);
  2388. this.uiGroupBox6.Controls.Add(this.uiLabel13);
  2389. this.uiGroupBox6.Controls.Add(this.uiLabel17);
  2390. this.uiGroupBox6.Dock = System.Windows.Forms.DockStyle.Left;
  2391. this.uiGroupBox6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2392. this.uiGroupBox6.Location = new System.Drawing.Point(311, 0);
  2393. this.uiGroupBox6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2394. this.uiGroupBox6.MinimumSize = new System.Drawing.Size(1, 1);
  2395. this.uiGroupBox6.Name = "uiGroupBox6";
  2396. this.uiGroupBox6.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  2397. this.uiGroupBox6.Size = new System.Drawing.Size(217, 107);
  2398. this.uiGroupBox6.TabIndex = 26;
  2399. this.uiGroupBox6.TabStop = false;
  2400. this.uiGroupBox6.Text = null;
  2401. this.uiGroupBox6.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2402. this.uiGroupBox6.TitleTop = 10;
  2403. this.uiGroupBox6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2404. //
  2405. // cbInterface_3
  2406. //
  2407. this.cbInterface_3.DataSource = null;
  2408. this.cbInterface_3.FillColor = System.Drawing.Color.White;
  2409. this.cbInterface_3.FilterMaxCount = 50;
  2410. this.cbInterface_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2411. this.cbInterface_3.ItemHeight = 20;
  2412. this.cbInterface_3.Items.AddRange(new object[] {
  2413. "1",
  2414. "2"});
  2415. this.cbInterface_3.Location = new System.Drawing.Point(80, 31);
  2416. this.cbInterface_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2417. this.cbInterface_3.MinimumSize = new System.Drawing.Size(63, 0);
  2418. this.cbInterface_3.Name = "cbInterface_3";
  2419. this.cbInterface_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2420. this.cbInterface_3.Size = new System.Drawing.Size(130, 25);
  2421. this.cbInterface_3.TabIndex = 11;
  2422. this.cbInterface_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2423. this.cbInterface_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2424. //
  2425. // cbValid_3
  2426. //
  2427. this.cbValid_3.DataSource = null;
  2428. this.cbValid_3.FillColor = System.Drawing.Color.White;
  2429. this.cbValid_3.FilterMaxCount = 50;
  2430. this.cbValid_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2431. this.cbValid_3.ItemHeight = 20;
  2432. this.cbValid_3.Items.AddRange(new object[] {
  2433. "全部",
  2434. "有效",
  2435. "无效"});
  2436. this.cbValid_3.Location = new System.Drawing.Point(80, 67);
  2437. this.cbValid_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2438. this.cbValid_3.MinimumSize = new System.Drawing.Size(63, 0);
  2439. this.cbValid_3.Name = "cbValid_3";
  2440. this.cbValid_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2441. this.cbValid_3.Size = new System.Drawing.Size(130, 25);
  2442. this.cbValid_3.TabIndex = 9;
  2443. this.cbValid_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2444. this.cbValid_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2445. //
  2446. // uiLabel13
  2447. //
  2448. this.uiLabel13.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2449. this.uiLabel13.Location = new System.Drawing.Point(7, 64);
  2450. this.uiLabel13.Name = "uiLabel13";
  2451. this.uiLabel13.Size = new System.Drawing.Size(63, 23);
  2452. this.uiLabel13.TabIndex = 8;
  2453. this.uiLabel13.Text = "有效标志";
  2454. this.uiLabel13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2455. this.uiLabel13.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2456. //
  2457. // uiLabel17
  2458. //
  2459. this.uiLabel17.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2460. this.uiLabel17.Location = new System.Drawing.Point(9, 36);
  2461. this.uiLabel17.Name = "uiLabel17";
  2462. this.uiLabel17.Size = new System.Drawing.Size(63, 23);
  2463. this.uiLabel17.TabIndex = 0;
  2464. this.uiLabel17.Text = "接口目录";
  2465. this.uiLabel17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2466. this.uiLabel17.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2467. //
  2468. // rbgTimeWay
  2469. //
  2470. this.rbgTimeWay.Dock = System.Windows.Forms.DockStyle.Left;
  2471. this.rbgTimeWay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2472. this.rbgTimeWay.Items.AddRange(new object[] {
  2473. "按清算时间统计",
  2474. "按起止时间统计"});
  2475. this.rbgTimeWay.Location = new System.Drawing.Point(140, 0);
  2476. this.rbgTimeWay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2477. this.rbgTimeWay.MinimumSize = new System.Drawing.Size(1, 1);
  2478. this.rbgTimeWay.Name = "rbgTimeWay";
  2479. this.rbgTimeWay.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  2480. this.rbgTimeWay.Size = new System.Drawing.Size(171, 107);
  2481. this.rbgTimeWay.TabIndex = 25;
  2482. this.rbgTimeWay.Text = null;
  2483. this.rbgTimeWay.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2484. this.rbgTimeWay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2485. //
  2486. // btnClose_3
  2487. //
  2488. this.btnClose_3.Cursor = System.Windows.Forms.Cursors.Hand;
  2489. this.btnClose_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2490. this.btnClose_3.Location = new System.Drawing.Point(711, 76);
  2491. this.btnClose_3.MinimumSize = new System.Drawing.Size(1, 1);
  2492. this.btnClose_3.Name = "btnClose_3";
  2493. this.btnClose_3.Size = new System.Drawing.Size(100, 28);
  2494. this.btnClose_3.TabIndex = 24;
  2495. this.btnClose_3.Text = "退出";
  2496. this.btnClose_3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2497. this.btnClose_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2498. this.btnClose_3.Click += new System.EventHandler(this.btnClose_3_Click);
  2499. //
  2500. // btnQueryClearing
  2501. //
  2502. this.btnQueryClearing.Cursor = System.Windows.Forms.Cursors.Hand;
  2503. this.btnQueryClearing.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2504. this.btnQueryClearing.Location = new System.Drawing.Point(711, 14);
  2505. this.btnQueryClearing.MinimumSize = new System.Drawing.Size(1, 1);
  2506. this.btnQueryClearing.Name = "btnQueryClearing";
  2507. this.btnQueryClearing.Size = new System.Drawing.Size(100, 30);
  2508. this.btnQueryClearing.TabIndex = 23;
  2509. this.btnQueryClearing.Text = "查询清算数据";
  2510. this.btnQueryClearing.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2511. this.btnQueryClearing.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2512. this.btnQueryClearing.Click += new System.EventHandler(this.btnQueryClearing_Click);
  2513. //
  2514. // uiGroupBox5
  2515. //
  2516. this.uiGroupBox5.Controls.Add(this.dpED_3);
  2517. this.uiGroupBox5.Controls.Add(this.dpST_3);
  2518. this.uiGroupBox5.Dock = System.Windows.Forms.DockStyle.Left;
  2519. this.uiGroupBox5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2520. this.uiGroupBox5.Location = new System.Drawing.Point(0, 0);
  2521. this.uiGroupBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2522. this.uiGroupBox5.MinimumSize = new System.Drawing.Size(1, 1);
  2523. this.uiGroupBox5.Name = "uiGroupBox5";
  2524. this.uiGroupBox5.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  2525. this.uiGroupBox5.Size = new System.Drawing.Size(140, 107);
  2526. this.uiGroupBox5.TabIndex = 22;
  2527. this.uiGroupBox5.Text = null;
  2528. this.uiGroupBox5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2529. this.uiGroupBox5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2530. //
  2531. // dpED_3
  2532. //
  2533. this.dpED_3.DateFormat = "yyyy-MM-dd";
  2534. this.dpED_3.FillColor = System.Drawing.Color.White;
  2535. this.dpED_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2536. this.dpED_3.Location = new System.Drawing.Point(13, 76);
  2537. this.dpED_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2538. this.dpED_3.MaxLength = 10;
  2539. this.dpED_3.MinimumSize = new System.Drawing.Size(63, 0);
  2540. this.dpED_3.Name = "dpED_3";
  2541. this.dpED_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2542. this.dpED_3.Size = new System.Drawing.Size(121, 29);
  2543. this.dpED_3.SymbolDropDown = 61555;
  2544. this.dpED_3.SymbolNormal = 61555;
  2545. this.dpED_3.TabIndex = 1;
  2546. this.dpED_3.Text = "2022-06-01";
  2547. this.dpED_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2548. this.dpED_3.Value = new System.DateTime(2022, 6, 1, 23, 59, 59, 0);
  2549. this.dpED_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2550. //
  2551. // dpST_3
  2552. //
  2553. this.dpST_3.DateFormat = "yyyy-MM-dd";
  2554. this.dpST_3.FillColor = System.Drawing.Color.White;
  2555. this.dpST_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2556. this.dpST_3.Location = new System.Drawing.Point(13, 37);
  2557. this.dpST_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2558. this.dpST_3.MaxLength = 10;
  2559. this.dpST_3.MinimumSize = new System.Drawing.Size(63, 0);
  2560. this.dpST_3.Name = "dpST_3";
  2561. this.dpST_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2562. this.dpST_3.Size = new System.Drawing.Size(121, 29);
  2563. this.dpST_3.SymbolDropDown = 61555;
  2564. this.dpST_3.SymbolNormal = 61555;
  2565. this.dpST_3.TabIndex = 0;
  2566. this.dpST_3.Text = "2022-06-01";
  2567. this.dpST_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2568. this.dpST_3.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
  2569. this.dpST_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2570. //
  2571. // Clearing
  2572. //
  2573. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  2574. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2575. this.ClientSize = new System.Drawing.Size(1200, 796);
  2576. this.Controls.Add(this.uiTabControl1);
  2577. this.Name = "Clearing";
  2578. this.Text = "对账与清算";
  2579. this.Load += new System.EventHandler(this.Clearing_Load);
  2580. this.uiTabControl1.ResumeLayout(false);
  2581. this.tabPage1.ResumeLayout(false);
  2582. this.uiPanel2.ResumeLayout(false);
  2583. this.uiTabControl3.ResumeLayout(false);
  2584. this.tabPage6.ResumeLayout(false);
  2585. ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec)).EndInit();
  2586. this.tabPage7.ResumeLayout(false);
  2587. ((System.ComponentModel.ISupportInitialize)(this.dgvCenterSettlRec)).EndInit();
  2588. this.tabPage8.ResumeLayout(false);
  2589. this.uiTabControl2.ResumeLayout(false);
  2590. this.tabPage4.ResumeLayout(false);
  2591. ((System.ComponentModel.ISupportInitialize)(this.dgvSettlSummary)).EndInit();
  2592. this.cmsCheck.ResumeLayout(false);
  2593. this.tabPage5.ResumeLayout(false);
  2594. this.uiPanel1.ResumeLayout(false);
  2595. this.gbConditionSet.ResumeLayout(false);
  2596. this.uiGroupBox1.ResumeLayout(false);
  2597. this.uiGroupBox10.ResumeLayout(false);
  2598. this.gbDateTime.ResumeLayout(false);
  2599. this.tabPage10.ResumeLayout(false);
  2600. this.uiPanel7.ResumeLayout(false);
  2601. this.uiTabControl6.ResumeLayout(false);
  2602. this.tabPage14.ResumeLayout(false);
  2603. this.uiTabControl7.ResumeLayout(false);
  2604. this.tabPage15.ResumeLayout(false);
  2605. ((System.ComponentModel.ISupportInitialize)(this.dgvOthCheck)).EndInit();
  2606. this.cmdOthPlcCheck.ResumeLayout(false);
  2607. this.uiPanel6.ResumeLayout(false);
  2608. this.uiGroupBox7.ResumeLayout(false);
  2609. this.uiGroupBox8.ResumeLayout(false);
  2610. this.uiGroupBox9.ResumeLayout(false);
  2611. this.tabPage2.ResumeLayout(false);
  2612. this.uiPanel4.ResumeLayout(false);
  2613. this.uiTabControl4.ResumeLayout(false);
  2614. this.tabPage9.ResumeLayout(false);
  2615. ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec_2)).EndInit();
  2616. this.uiTabControl5.ResumeLayout(false);
  2617. this.tabPage12.ResumeLayout(false);
  2618. ((System.ComponentModel.ISupportInitialize)(this.dgvClearingSum)).EndInit();
  2619. this.cmsClearing.ResumeLayout(false);
  2620. this.uiPanel3.ResumeLayout(false);
  2621. this.uiGroupBox3.ResumeLayout(false);
  2622. this.uiGroupBox2.ResumeLayout(false);
  2623. this.uiGroupBox4.ResumeLayout(false);
  2624. this.tabPage3.ResumeLayout(false);
  2625. ((System.ComponentModel.ISupportInitialize)(this.dgvClearingData)).EndInit();
  2626. this.uiPanel5.ResumeLayout(false);
  2627. this.uiGroupBox6.ResumeLayout(false);
  2628. this.uiGroupBox5.ResumeLayout(false);
  2629. this.ResumeLayout(false);
  2630. }
  2631. #endregion
  2632. private Sunny.UI.UITabControl uiTabControl1;
  2633. private System.Windows.Forms.TabPage tabPage1;
  2634. private Sunny.UI.UIPanel uiPanel2;
  2635. private Sunny.UI.UIPanel uiPanel1;
  2636. private System.Windows.Forms.TabPage tabPage3;
  2637. private Sunny.UI.UITabControl uiTabControl3;
  2638. private System.Windows.Forms.TabPage tabPage6;
  2639. private System.Windows.Forms.TabPage tabPage7;
  2640. private System.Windows.Forms.TabPage tabPage8;
  2641. private Sunny.UI.UITabControl uiTabControl2;
  2642. private System.Windows.Forms.TabPage tabPage4;
  2643. private System.Windows.Forms.TabPage tabPage5;
  2644. private Sunny.UI.UIGroupBox uiGroupBox1;
  2645. private Sunny.UI.UIButton btnClose;
  2646. private Sunny.UI.UIButton btnBatchCheck;
  2647. private Sunny.UI.UIGroupBox gbDateTime;
  2648. private Sunny.UI.UIDatetimePicker dpED;
  2649. private Sunny.UI.UIDatetimePicker dpST;
  2650. private Sunny.UI.UIGroupBox gbConditionSet;
  2651. private Sunny.UI.UICheckBoxGroup cbgGroupSet;
  2652. private Sunny.UI.UILabel uiLabel1;
  2653. private Sunny.UI.UIComboBox cbxValid;
  2654. private Sunny.UI.UILabel uiLabel5;
  2655. private Sunny.UI.UILabel uiLabel4;
  2656. private Sunny.UI.UIComboBox cbxClrType;
  2657. private Sunny.UI.UILabel uiLabel3;
  2658. private Sunny.UI.UIComboBox cbxInsuType;
  2659. private Sunny.UI.UILabel uiLabel2;
  2660. private Sunny.UI.UIDataGridView dgvHisSettlRec;
  2661. private Sunny.UI.UIDataGridView dgvCenterSettlRec;
  2662. private Sunny.UI.UIDataGridView dgvSettlSummary;
  2663. private Sunny.UI.UIRichTextBox rtbCheckDetailLog;
  2664. private Sunny.UI.UIRichTextBox rtbCheckLog;
  2665. private Sunny.UI.UITextBox tbSettlOption;
  2666. private Sunny.UI.UIContextMenuStrip cmsCheck;
  2667. private System.Windows.Forms.ToolStripMenuItem tsmCheck_Single;
  2668. private System.Windows.Forms.ToolStripMenuItem tsmCheckDetail_Single;
  2669. private System.Windows.Forms.ToolStripMenuItem tsmCheck_Batch;
  2670. private System.Windows.Forms.ToolStripMenuItem tsmCheckDetail_Batch;
  2671. private System.Windows.Forms.ToolStripMenuItem tsmHisRecord;
  2672. private System.Windows.Forms.ToolStripMenuItem tsmAICheck;
  2673. private Sunny.UI.UIComboBox cbxInterface;
  2674. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
  2675. private System.Windows.Forms.ToolStripMenuItem 导出TXTToolStripMenuItem;
  2676. private System.Windows.Forms.ToolStripMenuItem tsmExport;
  2677. private System.Windows.Forms.ToolStripMenuItem tsmCompress;
  2678. private System.Windows.Forms.ToolStripMenuItem tsmUploadZIP;
  2679. private System.Windows.Forms.ToolStripMenuItem tsm3202;
  2680. private System.Windows.Forms.ToolStripMenuItem tsmDownload;
  2681. private System.Windows.Forms.ToolStripMenuItem tsmUnCompress;
  2682. private System.Windows.Forms.ToolStripMenuItem tsmImport;
  2683. private System.Windows.Forms.ToolStripMenuItem tsmZIPToSDec;
  2684. private Sunny.UI.UISymbolButton btnReduceOndDay;
  2685. private Sunny.UI.UISymbolButton btnAddOneDay;
  2686. private System.Windows.Forms.TabPage tabPage2;
  2687. private Sunny.UI.UIPanel uiPanel4;
  2688. private Sunny.UI.UITabControl uiTabControl4;
  2689. private System.Windows.Forms.TabPage tabPage9;
  2690. private Sunny.UI.UIDataGridView dgvHisSettlRec_2;
  2691. private Sunny.UI.UITabControl uiTabControl5;
  2692. private System.Windows.Forms.TabPage tabPage12;
  2693. private Sunny.UI.UIDataGridView dgvClearingSum;
  2694. private Sunny.UI.UIPanel uiPanel3;
  2695. private Sunny.UI.UIGroupBox uiGroupBox2;
  2696. private Sunny.UI.UIComboBox cbInterface_2;
  2697. private Sunny.UI.UITextBox tbSettlOption_2;
  2698. private Sunny.UI.UIComboBox cbValid_2;
  2699. private Sunny.UI.UILabel uiLabel6;
  2700. private Sunny.UI.UILabel uiLabel7;
  2701. private Sunny.UI.UIComboBox cbClrType_2;
  2702. private Sunny.UI.UILabel uiLabel8;
  2703. private Sunny.UI.UIComboBox cbInsutype_2;
  2704. private Sunny.UI.UILabel uiLabel9;
  2705. private Sunny.UI.UILabel uiLabel10;
  2706. private Sunny.UI.UIGroupBox uiGroupBox4;
  2707. private Sunny.UI.UISymbolButton btnReduceMonth;
  2708. private Sunny.UI.UISymbolButton btnAddMonth;
  2709. private Sunny.UI.UIDatetimePicker dpED_2;
  2710. private Sunny.UI.UIDatetimePicker dpST_2;
  2711. private Sunny.UI.UIContextMenuStrip cmsClearing;
  2712. private System.Windows.Forms.ToolStripMenuItem tmsClearing_2;
  2713. private System.Windows.Forms.ToolStripMenuItem tmsHisSettlRecord_2;
  2714. private Sunny.UI.UIComboBox cbClrWay_2;
  2715. private Sunny.UI.UILabel uiLabel11;
  2716. private Sunny.UI.UIDataGridView dgvClearingData;
  2717. private Sunny.UI.UIPanel uiPanel5;
  2718. private Sunny.UI.UIButton btnClose_3;
  2719. private Sunny.UI.UIButton btnQueryClearing;
  2720. private Sunny.UI.UIGroupBox uiGroupBox5;
  2721. private Sunny.UI.UIDatetimePicker dpED_3;
  2722. private Sunny.UI.UIDatetimePicker dpST_3;
  2723. private Sunny.UI.UIRadioButtonGroup rbgTimeWay;
  2724. private Sunny.UI.UIGroupBox uiGroupBox6;
  2725. private Sunny.UI.UIComboBox cbInterface_3;
  2726. private Sunny.UI.UIComboBox cbValid_3;
  2727. private Sunny.UI.UILabel uiLabel13;
  2728. private Sunny.UI.UILabel uiLabel17;
  2729. private Sunny.UI.UIButton btnCancleClearing;
  2730. private System.Windows.Forms.TabPage tabPage10;
  2731. private Sunny.UI.UIPanel uiPanel7;
  2732. private Sunny.UI.UITabControl uiTabControl6;
  2733. private System.Windows.Forms.TabPage tabPage14;
  2734. private Sunny.UI.UIRichTextBox rtbOthCheckResultRecord;
  2735. private Sunny.UI.UITabControl uiTabControl7;
  2736. private System.Windows.Forms.TabPage tabPage15;
  2737. private Sunny.UI.UIDataGridView dgvOthCheck;
  2738. private Sunny.UI.UIPanel uiPanel6;
  2739. private Sunny.UI.UIGroupBox uiGroupBox7;
  2740. private Sunny.UI.UITextBox uiTextBox1;
  2741. private Sunny.UI.UIComboBox cbxValid_O;
  2742. private Sunny.UI.UILabel uiLabel12;
  2743. private Sunny.UI.UILabel uiLabel14;
  2744. private Sunny.UI.UIComboBox cbxClrType_O;
  2745. private Sunny.UI.UILabel uiLabel15;
  2746. private Sunny.UI.UIComboBox uiComboBox4;
  2747. private Sunny.UI.UILabel uiLabel16;
  2748. private Sunny.UI.UIGroupBox uiGroupBox8;
  2749. private Sunny.UI.UIButton uiButton1;
  2750. private Sunny.UI.UIButton uiButton2;
  2751. private Sunny.UI.UIButton uiButton3;
  2752. private Sunny.UI.UIGroupBox uiGroupBox9;
  2753. private Sunny.UI.UISymbolButton uiSymbolButton1;
  2754. private Sunny.UI.UISymbolButton uiSymbolButton2;
  2755. private Sunny.UI.UIDatetimePicker dpED_O;
  2756. private Sunny.UI.UIDatetimePicker dpST_O;
  2757. private Sunny.UI.UIComboBox cbOtherPlaceFlag;
  2758. private Sunny.UI.UILabel uiLabel19;
  2759. private Sunny.UI.UIContextMenuStrip cmdOthPlcCheck;
  2760. private System.Windows.Forms.ToolStripMenuItem tsmOthPlcCheck;
  2761. private Sunny.UI.UITextBox tbInsuPlc;
  2762. private Sunny.UI.UILabel uiLabel18;
  2763. private System.Windows.Forms.ToolStripMenuItem tsmHandCheck;
  2764. private System.Windows.Forms.RichTextBox tbTmp;
  2765. private Sunny.UI.UIButton btnQuerySettlSummary;
  2766. private Sunny.UI.UIGroupBox uiGroupBox3;
  2767. private Sunny.UI.UIButton btnClose_2;
  2768. private Sunny.UI.UIButton btnPatchClr;
  2769. private Sunny.UI.UIButton btnQueryClrSum;
  2770. private Sunny.UI.UIGroupBox uiGroupBox10;
  2771. private Sunny.UI.UIButton uiButton4;
  2772. private Sunny.UI.UIButton uiButton5;
  2773. private Sunny.UI.UIButton Btn_Query;
  2774. }
  2775. }