Clearing.Designer.cs 184 KB

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