Clearing.Designer.cs 229 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486
  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 dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
  35. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
  36. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
  37. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
  38. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
  39. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
  40. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
  41. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
  42. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
  43. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Clearing));
  44. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
  45. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
  46. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
  47. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
  48. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
  49. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
  50. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
  51. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
  52. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
  53. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
  54. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
  55. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
  56. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
  57. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
  58. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
  59. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
  60. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
  61. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
  62. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
  63. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
  64. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
  65. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
  66. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
  67. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
  68. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
  69. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
  70. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
  71. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
  72. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
  73. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
  74. this.tc_Main = new Sunny.UI.UITabControl();
  75. this.tabPage1 = new System.Windows.Forms.TabPage();
  76. this.uiPanel2 = new Sunny.UI.UIPanel();
  77. this.uiTabControl3 = new Sunny.UI.UITabControl();
  78. this.tabPage6 = new System.Windows.Forms.TabPage();
  79. this.dgvHisSettlRec = new Sunny.UI.UIDataGridView();
  80. this.tabPage7 = new System.Windows.Forms.TabPage();
  81. this.dgvCenterSettlRec = new Sunny.UI.UIDataGridView();
  82. this.tabPage8 = new System.Windows.Forms.TabPage();
  83. this.rtbCheckDetailLog = new Sunny.UI.UIRichTextBox();
  84. this.uiTabControl2 = new Sunny.UI.UITabControl();
  85. this.tabPage4 = new System.Windows.Forms.TabPage();
  86. this.dgvSettlSummary = new Sunny.UI.UIDataGridView();
  87. this.cmsCheck = new Sunny.UI.UIContextMenuStrip();
  88. this.tsmCheck_Single = new System.Windows.Forms.ToolStripMenuItem();
  89. this.tsmCheckDetail_Single = new System.Windows.Forms.ToolStripMenuItem();
  90. this.tsmCheck_Batch = new System.Windows.Forms.ToolStripMenuItem();
  91. this.tsmCheckDetail_Batch = new System.Windows.Forms.ToolStripMenuItem();
  92. this.tsmHisRecord = new System.Windows.Forms.ToolStripMenuItem();
  93. this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
  94. this.tsmAICheck = new System.Windows.Forms.ToolStripMenuItem();
  95. this.导出TXTToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  96. this.tsmExport = new System.Windows.Forms.ToolStripMenuItem();
  97. this.tsmCompress = new System.Windows.Forms.ToolStripMenuItem();
  98. this.tsmZIPToSDec = new System.Windows.Forms.ToolStripMenuItem();
  99. this.tsmUploadZIP = new System.Windows.Forms.ToolStripMenuItem();
  100. this.tsm3202 = new System.Windows.Forms.ToolStripMenuItem();
  101. this.tsmDownload = new System.Windows.Forms.ToolStripMenuItem();
  102. this.tsmUnCompress = new System.Windows.Forms.ToolStripMenuItem();
  103. this.tsmImport = new System.Windows.Forms.ToolStripMenuItem();
  104. this.tsmHandCheck = new System.Windows.Forms.ToolStripMenuItem();
  105. this.tabPage5 = new System.Windows.Forms.TabPage();
  106. this.rtbCheckLog = new Sunny.UI.UIRichTextBox();
  107. this.uiPanel1 = new Sunny.UI.UIPanel();
  108. this.tbTmp = new System.Windows.Forms.RichTextBox();
  109. this.gbConditionSet = new Sunny.UI.UIGroupBox();
  110. this.cbxInterface = new Sunny.UI.UIComboBox();
  111. this.tbSettlOption = new Sunny.UI.UITextBox();
  112. this.cbxValid = new Sunny.UI.UIComboBox();
  113. this.uiLabel5 = new Sunny.UI.UILabel();
  114. this.uiLabel4 = new Sunny.UI.UILabel();
  115. this.cbxClrType = new Sunny.UI.UIComboBox();
  116. this.uiLabel3 = new Sunny.UI.UILabel();
  117. this.cbxInsuType = new Sunny.UI.UIComboBox();
  118. this.uiLabel2 = new Sunny.UI.UILabel();
  119. this.uiLabel1 = new Sunny.UI.UILabel();
  120. this.cbgGroupSet = new Sunny.UI.UICheckBoxGroup();
  121. this.uiGroupBox1 = new Sunny.UI.UIGroupBox();
  122. this.uiGroupBox10 = new Sunny.UI.UIGroupBox();
  123. this.uiButton4 = new Sunny.UI.UIButton();
  124. this.uiButton5 = new Sunny.UI.UIButton();
  125. this.Btn_Query = new Sunny.UI.UIButton();
  126. this.btnQuerySettlSummary = new Sunny.UI.UIButton();
  127. this.btnClose = new Sunny.UI.UIButton();
  128. this.btnBatchCheck = new Sunny.UI.UIButton();
  129. this.gbDateTime = new Sunny.UI.UIGroupBox();
  130. this.btnReduceOndDay = new Sunny.UI.UISymbolButton();
  131. this.btnAddOneDay = new Sunny.UI.UISymbolButton();
  132. this.dpED = new Sunny.UI.UIDatetimePicker();
  133. this.dpST = new Sunny.UI.UIDatetimePicker();
  134. this.tabPage10 = new System.Windows.Forms.TabPage();
  135. this.uiPanel7 = new Sunny.UI.UIPanel();
  136. this.uiTabControl6 = new Sunny.UI.UITabControl();
  137. this.tabPage14 = new System.Windows.Forms.TabPage();
  138. this.rtbOthCheckResultRecord = new Sunny.UI.UIRichTextBox();
  139. this.uiTabControl7 = new Sunny.UI.UITabControl();
  140. this.tabPage15 = new System.Windows.Forms.TabPage();
  141. this.dgvOthCheck = new Sunny.UI.UIDataGridView();
  142. this.cmdOthPlcCheck = new Sunny.UI.UIContextMenuStrip();
  143. this.tsmOthPlcCheck = new System.Windows.Forms.ToolStripMenuItem();
  144. this.uiPanel6 = new Sunny.UI.UIPanel();
  145. this.uiGroupBox7 = new Sunny.UI.UIGroupBox();
  146. this.uiTextBox1 = new Sunny.UI.UITextBox();
  147. this.cbxValid_O = new Sunny.UI.UIComboBox();
  148. this.uiLabel12 = new Sunny.UI.UILabel();
  149. this.uiLabel14 = new Sunny.UI.UILabel();
  150. this.cbxClrType_O = new Sunny.UI.UIComboBox();
  151. this.uiLabel15 = new Sunny.UI.UILabel();
  152. this.uiComboBox4 = new Sunny.UI.UIComboBox();
  153. this.uiLabel16 = new Sunny.UI.UILabel();
  154. this.uiGroupBox8 = new Sunny.UI.UIGroupBox();
  155. this.uiButton1 = new Sunny.UI.UIButton();
  156. this.uiButton2 = new Sunny.UI.UIButton();
  157. this.uiButton3 = new Sunny.UI.UIButton();
  158. this.uiGroupBox9 = new Sunny.UI.UIGroupBox();
  159. this.uiSymbolButton1 = new Sunny.UI.UISymbolButton();
  160. this.uiSymbolButton2 = new Sunny.UI.UISymbolButton();
  161. this.dpED_O = new Sunny.UI.UIDatetimePicker();
  162. this.dpST_O = new Sunny.UI.UIDatetimePicker();
  163. this.tp_Clear = new System.Windows.Forms.TabPage();
  164. this.uiPanel4 = new Sunny.UI.UIPanel();
  165. this.uiTabControl4 = new Sunny.UI.UITabControl();
  166. this.tabPage9 = new System.Windows.Forms.TabPage();
  167. this.dgvHisSettlRec_2 = new Sunny.UI.UIDataGridView();
  168. this.uiTabControl5 = new Sunny.UI.UITabControl();
  169. this.tabPage12 = new System.Windows.Forms.TabPage();
  170. this.dgvClearingSum = new Sunny.UI.UIDataGridView();
  171. this.cmsClearing = new Sunny.UI.UIContextMenuStrip();
  172. this.tmsClearing_2 = new System.Windows.Forms.ToolStripMenuItem();
  173. this.tmsClearingBack2 = new System.Windows.Forms.ToolStripMenuItem();
  174. this.tmsHisSettlRecord_2 = new System.Windows.Forms.ToolStripMenuItem();
  175. this.uiPanel3 = new Sunny.UI.UIPanel();
  176. this.uiButton9 = new Sunny.UI.UIButton();
  177. this.rg_ClearType = new Sunny.UI.UIRadioButtonGroup();
  178. this.uiGroupBox3 = new Sunny.UI.UIGroupBox();
  179. this.btnClose_2 = new Sunny.UI.UIButton();
  180. this.btnPatchClr = new Sunny.UI.UIButton();
  181. this.btnQueryClrSum = new Sunny.UI.UIButton();
  182. this.uiGroupBox2 = new Sunny.UI.UIGroupBox();
  183. this.tbInsuPlc = new Sunny.UI.UITextBox();
  184. this.uiLabel18 = new Sunny.UI.UILabel();
  185. this.cbOtherPlaceFlag = new Sunny.UI.UIComboBox();
  186. this.uiLabel19 = new Sunny.UI.UILabel();
  187. this.cbClrWay_2 = new Sunny.UI.UIComboBox();
  188. this.uiLabel11 = new Sunny.UI.UILabel();
  189. this.cbInterface_2 = new Sunny.UI.UIComboBox();
  190. this.tbSettlOption_2 = new Sunny.UI.UITextBox();
  191. this.cbValid_2 = new Sunny.UI.UIComboBox();
  192. this.uiLabel6 = new Sunny.UI.UILabel();
  193. this.uiLabel7 = new Sunny.UI.UILabel();
  194. this.cbClrType_2 = new Sunny.UI.UIComboBox();
  195. this.uiLabel8 = new Sunny.UI.UILabel();
  196. this.cbInsutype_2 = new Sunny.UI.UIComboBox();
  197. this.uiLabel9 = new Sunny.UI.UILabel();
  198. this.uiLabel10 = new Sunny.UI.UILabel();
  199. this.uiGroupBox4 = new Sunny.UI.UIGroupBox();
  200. this.btnReduceMonth = new Sunny.UI.UISymbolButton();
  201. this.btnAddMonth = new Sunny.UI.UISymbolButton();
  202. this.dpED_2 = new Sunny.UI.UIDatetimePicker();
  203. this.dpST_2 = new Sunny.UI.UIDatetimePicker();
  204. this.tb_ClearQueryAndCancel = new System.Windows.Forms.TabPage();
  205. this.dgvClearingData = new Sunny.UI.UIDataGridView();
  206. this.uiPanel5 = new Sunny.UI.UIPanel();
  207. this.uiGroupBox6 = new Sunny.UI.UIGroupBox();
  208. this.cbInterface_3 = new Sunny.UI.UIComboBox();
  209. this.cbValid_3 = new Sunny.UI.UIComboBox();
  210. this.uiLabel13 = new Sunny.UI.UILabel();
  211. this.uiLabel17 = new Sunny.UI.UILabel();
  212. this.rg_querType = new Sunny.UI.UIRadioButtonGroup();
  213. this.btnCancleClearing = new Sunny.UI.UIButton();
  214. this.rbgTimeWay = new Sunny.UI.UIRadioButtonGroup();
  215. this.btnClose_3 = new Sunny.UI.UIButton();
  216. this.btnQueryClearing = new Sunny.UI.UIButton();
  217. this.uiGroupBox5 = new Sunny.UI.UIGroupBox();
  218. this.dpED_3 = new Sunny.UI.UIDatetimePicker();
  219. this.dpST_3 = new Sunny.UI.UIDatetimePicker();
  220. this.tb_SetlQueryLocal = new System.Windows.Forms.TabPage();
  221. this.dgv_Query = new Sunny.UI.UIDataGridView();
  222. this.dgv_Query_Page = new Sunny.UI.UIDataGridView();
  223. this.cmsWznbd = new Sunny.UI.UIContextMenuStrip();
  224. this.Bdhisyb = new System.Windows.Forms.ToolStripMenuItem();
  225. this.uiGroupBox11 = new Sunny.UI.UIGroupBox();
  226. this.uiButton10 = new Sunny.UI.UIButton();
  227. this.uiButton8 = new Sunny.UI.UIButton();
  228. this.chbg_BusinessType = new Sunny.UI.UICheckBoxGroup();
  229. this.uiButton7 = new Sunny.UI.UIButton();
  230. this.uiButton6 = new Sunny.UI.UIButton();
  231. this.uiGroupBox13 = new Sunny.UI.UIGroupBox();
  232. this.cbxYllb = new Sunny.UI.UIComboBox();
  233. this.uiLabel26 = new Sunny.UI.UILabel();
  234. this.tb_PsnNo = new Sunny.UI.UITextBox();
  235. this.tb_Certno = new Sunny.UI.UITextBox();
  236. this.tb_PageSize = new Sunny.UI.UITextBox();
  237. this.tb_PageNum = new Sunny.UI.UITextBox();
  238. this.uiLabel23 = new Sunny.UI.UILabel();
  239. this.uiLabel22 = new Sunny.UI.UILabel();
  240. this.uiLabel21 = new Sunny.UI.UILabel();
  241. this.uiLabel20 = new Sunny.UI.UILabel();
  242. this.Chk_RefdSetlFlag = new Sunny.UI.UICheckBox();
  243. this.uiGroupBox12 = new Sunny.UI.UIGroupBox();
  244. this.uiLabel25 = new Sunny.UI.UILabel();
  245. this.uiLabel24 = new Sunny.UI.UILabel();
  246. this.uiSymbolButton3 = new Sunny.UI.UISymbolButton();
  247. this.uiSymbolButton4 = new Sunny.UI.UISymbolButton();
  248. this.dt_ET = new Sunny.UI.UIDatetimePicker();
  249. this.dt_ST = new Sunny.UI.UIDatetimePicker();
  250. this.tb_HisAndInsuSetlDataCheck = new System.Windows.Forms.TabPage();
  251. this.tc_Main.SuspendLayout();
  252. this.tabPage1.SuspendLayout();
  253. this.uiPanel2.SuspendLayout();
  254. this.uiTabControl3.SuspendLayout();
  255. this.tabPage6.SuspendLayout();
  256. ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec)).BeginInit();
  257. this.tabPage7.SuspendLayout();
  258. ((System.ComponentModel.ISupportInitialize)(this.dgvCenterSettlRec)).BeginInit();
  259. this.tabPage8.SuspendLayout();
  260. this.uiTabControl2.SuspendLayout();
  261. this.tabPage4.SuspendLayout();
  262. ((System.ComponentModel.ISupportInitialize)(this.dgvSettlSummary)).BeginInit();
  263. this.cmsCheck.SuspendLayout();
  264. this.tabPage5.SuspendLayout();
  265. this.uiPanel1.SuspendLayout();
  266. this.gbConditionSet.SuspendLayout();
  267. this.uiGroupBox1.SuspendLayout();
  268. this.uiGroupBox10.SuspendLayout();
  269. this.gbDateTime.SuspendLayout();
  270. this.tabPage10.SuspendLayout();
  271. this.uiPanel7.SuspendLayout();
  272. this.uiTabControl6.SuspendLayout();
  273. this.tabPage14.SuspendLayout();
  274. this.uiTabControl7.SuspendLayout();
  275. this.tabPage15.SuspendLayout();
  276. ((System.ComponentModel.ISupportInitialize)(this.dgvOthCheck)).BeginInit();
  277. this.cmdOthPlcCheck.SuspendLayout();
  278. this.uiPanel6.SuspendLayout();
  279. this.uiGroupBox7.SuspendLayout();
  280. this.uiGroupBox8.SuspendLayout();
  281. this.uiGroupBox9.SuspendLayout();
  282. this.tp_Clear.SuspendLayout();
  283. this.uiPanel4.SuspendLayout();
  284. this.uiTabControl4.SuspendLayout();
  285. this.tabPage9.SuspendLayout();
  286. ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec_2)).BeginInit();
  287. this.uiTabControl5.SuspendLayout();
  288. this.tabPage12.SuspendLayout();
  289. ((System.ComponentModel.ISupportInitialize)(this.dgvClearingSum)).BeginInit();
  290. this.cmsClearing.SuspendLayout();
  291. this.uiPanel3.SuspendLayout();
  292. this.uiGroupBox3.SuspendLayout();
  293. this.uiGroupBox2.SuspendLayout();
  294. this.uiGroupBox4.SuspendLayout();
  295. this.tb_ClearQueryAndCancel.SuspendLayout();
  296. ((System.ComponentModel.ISupportInitialize)(this.dgvClearingData)).BeginInit();
  297. this.uiPanel5.SuspendLayout();
  298. this.uiGroupBox6.SuspendLayout();
  299. this.uiGroupBox5.SuspendLayout();
  300. this.tb_SetlQueryLocal.SuspendLayout();
  301. ((System.ComponentModel.ISupportInitialize)(this.dgv_Query)).BeginInit();
  302. ((System.ComponentModel.ISupportInitialize)(this.dgv_Query_Page)).BeginInit();
  303. this.cmsWznbd.SuspendLayout();
  304. this.uiGroupBox11.SuspendLayout();
  305. this.uiGroupBox13.SuspendLayout();
  306. this.uiGroupBox12.SuspendLayout();
  307. this.SuspendLayout();
  308. //
  309. // tc_Main
  310. //
  311. this.tc_Main.Controls.Add(this.tabPage1);
  312. this.tc_Main.Controls.Add(this.tabPage10);
  313. this.tc_Main.Controls.Add(this.tp_Clear);
  314. this.tc_Main.Controls.Add(this.tb_ClearQueryAndCancel);
  315. this.tc_Main.Controls.Add(this.tb_SetlQueryLocal);
  316. this.tc_Main.Controls.Add(this.tb_HisAndInsuSetlDataCheck);
  317. this.tc_Main.Dock = System.Windows.Forms.DockStyle.Fill;
  318. this.tc_Main.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  319. this.tc_Main.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  320. this.tc_Main.ItemSize = new System.Drawing.Size(200, 30);
  321. this.tc_Main.Location = new System.Drawing.Point(0, 0);
  322. this.tc_Main.MainPage = "";
  323. this.tc_Main.Name = "tc_Main";
  324. this.tc_Main.SelectedIndex = 0;
  325. this.tc_Main.Size = new System.Drawing.Size(1201, 796);
  326. this.tc_Main.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  327. this.tc_Main.TabIndex = 0;
  328. this.tc_Main.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  329. this.tc_Main.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  330. //
  331. // tabPage1
  332. //
  333. this.tabPage1.Controls.Add(this.uiPanel2);
  334. this.tabPage1.Controls.Add(this.uiPanel1);
  335. this.tabPage1.Location = new System.Drawing.Point(0, 30);
  336. this.tabPage1.Name = "tabPage1";
  337. this.tabPage1.Size = new System.Drawing.Size(1201, 766);
  338. this.tabPage1.TabIndex = 0;
  339. this.tabPage1.Text = "本地对账";
  340. this.tabPage1.UseVisualStyleBackColor = true;
  341. //
  342. // uiPanel2
  343. //
  344. this.uiPanel2.Controls.Add(this.uiTabControl3);
  345. this.uiPanel2.Controls.Add(this.uiTabControl2);
  346. this.uiPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  347. this.uiPanel2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  348. this.uiPanel2.Location = new System.Drawing.Point(228, 0);
  349. this.uiPanel2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  350. this.uiPanel2.MinimumSize = new System.Drawing.Size(1, 1);
  351. this.uiPanel2.Name = "uiPanel2";
  352. this.uiPanel2.Size = new System.Drawing.Size(973, 766);
  353. this.uiPanel2.TabIndex = 3;
  354. this.uiPanel2.Text = null;
  355. this.uiPanel2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  356. this.uiPanel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  357. //
  358. // uiTabControl3
  359. //
  360. this.uiTabControl3.Controls.Add(this.tabPage6);
  361. this.uiTabControl3.Controls.Add(this.tabPage7);
  362. this.uiTabControl3.Controls.Add(this.tabPage8);
  363. this.uiTabControl3.Dock = System.Windows.Forms.DockStyle.Fill;
  364. this.uiTabControl3.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  365. this.uiTabControl3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  366. this.uiTabControl3.ItemSize = new System.Drawing.Size(150, 25);
  367. this.uiTabControl3.Location = new System.Drawing.Point(0, 424);
  368. this.uiTabControl3.MainPage = "";
  369. this.uiTabControl3.Name = "uiTabControl3";
  370. this.uiTabControl3.SelectedIndex = 0;
  371. this.uiTabControl3.Size = new System.Drawing.Size(973, 342);
  372. this.uiTabControl3.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  373. this.uiTabControl3.TabIndex = 1;
  374. this.uiTabControl3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  375. this.uiTabControl3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  376. //
  377. // tabPage6
  378. //
  379. this.tabPage6.Controls.Add(this.dgvHisSettlRec);
  380. this.tabPage6.Location = new System.Drawing.Point(0, 25);
  381. this.tabPage6.Name = "tabPage6";
  382. this.tabPage6.Size = new System.Drawing.Size(973, 317);
  383. this.tabPage6.TabIndex = 0;
  384. this.tabPage6.Text = "HIS结算记录";
  385. this.tabPage6.UseVisualStyleBackColor = true;
  386. //
  387. // dgvHisSettlRec
  388. //
  389. this.dgvHisSettlRec.AllowUserToAddRows = false;
  390. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  391. this.dgvHisSettlRec.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  392. this.dgvHisSettlRec.BackgroundColor = System.Drawing.Color.White;
  393. this.dgvHisSettlRec.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  394. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  395. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  396. dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  397. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
  398. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  399. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  400. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  401. this.dgvHisSettlRec.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  402. this.dgvHisSettlRec.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  403. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  404. dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
  405. dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  406. dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  407. dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  408. dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  409. dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  410. this.dgvHisSettlRec.DefaultCellStyle = dataGridViewCellStyle3;
  411. this.dgvHisSettlRec.Dock = System.Windows.Forms.DockStyle.Fill;
  412. this.dgvHisSettlRec.EnableHeadersVisualStyles = false;
  413. this.dgvHisSettlRec.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  414. this.dgvHisSettlRec.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  415. this.dgvHisSettlRec.Location = new System.Drawing.Point(0, 0);
  416. this.dgvHisSettlRec.Name = "dgvHisSettlRec";
  417. this.dgvHisSettlRec.ReadOnly = true;
  418. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  419. dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  420. dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  421. dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  422. dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  423. dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White;
  424. dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  425. this.dgvHisSettlRec.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
  426. this.dgvHisSettlRec.RowHeadersWidth = 51;
  427. dataGridViewCellStyle5.BackColor = System.Drawing.Color.White;
  428. dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  429. this.dgvHisSettlRec.RowsDefaultCellStyle = dataGridViewCellStyle5;
  430. this.dgvHisSettlRec.RowTemplate.Height = 23;
  431. this.dgvHisSettlRec.SelectedIndex = -1;
  432. this.dgvHisSettlRec.Size = new System.Drawing.Size(973, 317);
  433. this.dgvHisSettlRec.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  434. this.dgvHisSettlRec.TabIndex = 1;
  435. this.dgvHisSettlRec.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  436. this.dgvHisSettlRec.RowStateChanged += new System.Windows.Forms.DataGridViewRowStateChangedEventHandler(this.dgvHisSettlRec_RowStateChanged);
  437. //
  438. // tabPage7
  439. //
  440. this.tabPage7.Controls.Add(this.dgvCenterSettlRec);
  441. this.tabPage7.Location = new System.Drawing.Point(0, 25);
  442. this.tabPage7.Name = "tabPage7";
  443. this.tabPage7.Size = new System.Drawing.Size(973, 317);
  444. this.tabPage7.TabIndex = 1;
  445. this.tabPage7.Text = "中心结算记录";
  446. this.tabPage7.UseVisualStyleBackColor = true;
  447. //
  448. // dgvCenterSettlRec
  449. //
  450. this.dgvCenterSettlRec.AllowUserToAddRows = false;
  451. dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  452. this.dgvCenterSettlRec.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle6;
  453. this.dgvCenterSettlRec.BackgroundColor = System.Drawing.Color.White;
  454. this.dgvCenterSettlRec.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  455. dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  456. dataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  457. dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  458. dataGridViewCellStyle7.ForeColor = System.Drawing.Color.White;
  459. dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  460. dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  461. dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  462. this.dgvCenterSettlRec.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
  463. this.dgvCenterSettlRec.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  464. dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  465. dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
  466. dataGridViewCellStyle8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  467. dataGridViewCellStyle8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  468. dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  469. dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  470. dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  471. this.dgvCenterSettlRec.DefaultCellStyle = dataGridViewCellStyle8;
  472. this.dgvCenterSettlRec.Dock = System.Windows.Forms.DockStyle.Fill;
  473. this.dgvCenterSettlRec.EnableHeadersVisualStyles = false;
  474. this.dgvCenterSettlRec.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  475. this.dgvCenterSettlRec.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  476. this.dgvCenterSettlRec.Location = new System.Drawing.Point(0, 0);
  477. this.dgvCenterSettlRec.Name = "dgvCenterSettlRec";
  478. dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  479. dataGridViewCellStyle9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  480. dataGridViewCellStyle9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  481. dataGridViewCellStyle9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  482. dataGridViewCellStyle9.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  483. dataGridViewCellStyle9.SelectionForeColor = System.Drawing.Color.White;
  484. dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  485. this.dgvCenterSettlRec.RowHeadersDefaultCellStyle = dataGridViewCellStyle9;
  486. this.dgvCenterSettlRec.RowHeadersWidth = 51;
  487. dataGridViewCellStyle10.BackColor = System.Drawing.Color.White;
  488. dataGridViewCellStyle10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  489. this.dgvCenterSettlRec.RowsDefaultCellStyle = dataGridViewCellStyle10;
  490. this.dgvCenterSettlRec.RowTemplate.Height = 23;
  491. this.dgvCenterSettlRec.SelectedIndex = -1;
  492. this.dgvCenterSettlRec.Size = new System.Drawing.Size(973, 317);
  493. this.dgvCenterSettlRec.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  494. this.dgvCenterSettlRec.TabIndex = 1;
  495. this.dgvCenterSettlRec.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  496. //
  497. // tabPage8
  498. //
  499. this.tabPage8.Controls.Add(this.rtbCheckDetailLog);
  500. this.tabPage8.Location = new System.Drawing.Point(0, 25);
  501. this.tabPage8.Name = "tabPage8";
  502. this.tabPage8.Size = new System.Drawing.Size(973, 317);
  503. this.tabPage8.TabIndex = 2;
  504. this.tabPage8.Text = "对明细账结果记录";
  505. this.tabPage8.UseVisualStyleBackColor = true;
  506. //
  507. // rtbCheckDetailLog
  508. //
  509. this.rtbCheckDetailLog.Dock = System.Windows.Forms.DockStyle.Fill;
  510. this.rtbCheckDetailLog.FillColor = System.Drawing.Color.White;
  511. this.rtbCheckDetailLog.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  512. this.rtbCheckDetailLog.Location = new System.Drawing.Point(0, 0);
  513. this.rtbCheckDetailLog.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  514. this.rtbCheckDetailLog.MinimumSize = new System.Drawing.Size(1, 1);
  515. this.rtbCheckDetailLog.Name = "rtbCheckDetailLog";
  516. this.rtbCheckDetailLog.Padding = new System.Windows.Forms.Padding(2);
  517. this.rtbCheckDetailLog.ShowText = false;
  518. this.rtbCheckDetailLog.Size = new System.Drawing.Size(973, 317);
  519. this.rtbCheckDetailLog.Style = Sunny.UI.UIStyle.Custom;
  520. this.rtbCheckDetailLog.TabIndex = 0;
  521. this.rtbCheckDetailLog.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  522. this.rtbCheckDetailLog.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  523. //
  524. // uiTabControl2
  525. //
  526. this.uiTabControl2.Controls.Add(this.tabPage4);
  527. this.uiTabControl2.Controls.Add(this.tabPage5);
  528. this.uiTabControl2.Dock = System.Windows.Forms.DockStyle.Top;
  529. this.uiTabControl2.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  530. this.uiTabControl2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  531. this.uiTabControl2.ItemSize = new System.Drawing.Size(150, 25);
  532. this.uiTabControl2.Location = new System.Drawing.Point(0, 0);
  533. this.uiTabControl2.MainPage = "";
  534. this.uiTabControl2.Name = "uiTabControl2";
  535. this.uiTabControl2.SelectedIndex = 0;
  536. this.uiTabControl2.Size = new System.Drawing.Size(973, 424);
  537. this.uiTabControl2.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  538. this.uiTabControl2.TabIndex = 0;
  539. this.uiTabControl2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  540. this.uiTabControl2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  541. //
  542. // tabPage4
  543. //
  544. this.tabPage4.Controls.Add(this.dgvSettlSummary);
  545. this.tabPage4.Location = new System.Drawing.Point(0, 25);
  546. this.tabPage4.Name = "tabPage4";
  547. this.tabPage4.Size = new System.Drawing.Size(973, 399);
  548. this.tabPage4.TabIndex = 0;
  549. this.tabPage4.Text = "结算汇总数据";
  550. this.tabPage4.UseVisualStyleBackColor = true;
  551. //
  552. // dgvSettlSummary
  553. //
  554. this.dgvSettlSummary.AllowUserToAddRows = false;
  555. dataGridViewCellStyle11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  556. this.dgvSettlSummary.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle11;
  557. this.dgvSettlSummary.BackgroundColor = System.Drawing.Color.White;
  558. this.dgvSettlSummary.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
  559. dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  560. dataGridViewCellStyle12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  561. dataGridViewCellStyle12.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  562. dataGridViewCellStyle12.ForeColor = System.Drawing.Color.White;
  563. dataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  564. dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  565. dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  566. this.dgvSettlSummary.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle12;
  567. this.dgvSettlSummary.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  568. this.dgvSettlSummary.ContextMenuStrip = this.cmsCheck;
  569. dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  570. dataGridViewCellStyle13.BackColor = System.Drawing.SystemColors.Window;
  571. dataGridViewCellStyle13.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  572. dataGridViewCellStyle13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  573. dataGridViewCellStyle13.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  574. dataGridViewCellStyle13.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  575. dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  576. this.dgvSettlSummary.DefaultCellStyle = dataGridViewCellStyle13;
  577. this.dgvSettlSummary.Dock = System.Windows.Forms.DockStyle.Fill;
  578. this.dgvSettlSummary.EnableHeadersVisualStyles = false;
  579. this.dgvSettlSummary.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  580. this.dgvSettlSummary.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  581. this.dgvSettlSummary.Location = new System.Drawing.Point(0, 0);
  582. this.dgvSettlSummary.Name = "dgvSettlSummary";
  583. this.dgvSettlSummary.ReadOnly = true;
  584. dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  585. dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  586. dataGridViewCellStyle14.Font = new System.Drawing.Font("微软雅黑", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  587. dataGridViewCellStyle14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  588. dataGridViewCellStyle14.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  589. dataGridViewCellStyle14.SelectionForeColor = System.Drawing.Color.White;
  590. dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  591. this.dgvSettlSummary.RowHeadersDefaultCellStyle = dataGridViewCellStyle14;
  592. this.dgvSettlSummary.RowHeadersWidth = 30;
  593. this.dgvSettlSummary.RowHeight = 30;
  594. dataGridViewCellStyle15.BackColor = System.Drawing.Color.White;
  595. dataGridViewCellStyle15.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  596. this.dgvSettlSummary.RowsDefaultCellStyle = dataGridViewCellStyle15;
  597. this.dgvSettlSummary.RowTemplate.Height = 30;
  598. this.dgvSettlSummary.SelectedIndex = -1;
  599. this.dgvSettlSummary.Size = new System.Drawing.Size(973, 399);
  600. this.dgvSettlSummary.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  601. this.dgvSettlSummary.TabIndex = 0;
  602. this.dgvSettlSummary.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  603. this.dgvSettlSummary.RowStateChanged += new System.Windows.Forms.DataGridViewRowStateChangedEventHandler(this.dgvSettlSummary_RowStateChanged);
  604. //
  605. // cmsCheck
  606. //
  607. this.cmsCheck.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  608. this.cmsCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  609. this.cmsCheck.ImageScalingSize = new System.Drawing.Size(20, 20);
  610. this.cmsCheck.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  611. this.tsmCheck_Single,
  612. this.tsmCheckDetail_Single,
  613. this.tsmCheck_Batch,
  614. this.tsmCheckDetail_Batch,
  615. this.tsmHisRecord,
  616. this.toolStripMenuItem1,
  617. this.tsmAICheck,
  618. this.导出TXTToolStripMenuItem});
  619. this.cmsCheck.Name = "cmsCheck";
  620. this.cmsCheck.Size = new System.Drawing.Size(235, 212);
  621. this.cmsCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  622. this.cmsCheck.Opening += new System.ComponentModel.CancelEventHandler(this.cmsCheck_Opening);
  623. //
  624. // tsmCheck_Single
  625. //
  626. this.tsmCheck_Single.Name = "tsmCheck_Single";
  627. this.tsmCheck_Single.Size = new System.Drawing.Size(234, 26);
  628. this.tsmCheck_Single.Text = "单条对总账";
  629. this.tsmCheck_Single.Click += new System.EventHandler(this.tsmCheck_Single_Click);
  630. //
  631. // tsmCheckDetail_Single
  632. //
  633. this.tsmCheckDetail_Single.Name = "tsmCheckDetail_Single";
  634. this.tsmCheckDetail_Single.Size = new System.Drawing.Size(234, 26);
  635. this.tsmCheckDetail_Single.Text = "单条对明细账";
  636. this.tsmCheckDetail_Single.Click += new System.EventHandler(this.tsmCheckDetail_Single_Click);
  637. //
  638. // tsmCheck_Batch
  639. //
  640. this.tsmCheck_Batch.Name = "tsmCheck_Batch";
  641. this.tsmCheck_Batch.Size = new System.Drawing.Size(234, 26);
  642. this.tsmCheck_Batch.Text = "批量对总账";
  643. //
  644. // tsmCheckDetail_Batch
  645. //
  646. this.tsmCheckDetail_Batch.Name = "tsmCheckDetail_Batch";
  647. this.tsmCheckDetail_Batch.Size = new System.Drawing.Size(234, 26);
  648. this.tsmCheckDetail_Batch.Text = "批量对明细账";
  649. this.tsmCheckDetail_Batch.Click += new System.EventHandler(this.tsmCheckDetail_Batch_Click);
  650. //
  651. // tsmHisRecord
  652. //
  653. this.tsmHisRecord.Name = "tsmHisRecord";
  654. this.tsmHisRecord.Size = new System.Drawing.Size(234, 26);
  655. this.tsmHisRecord.Text = "查看HIS记录明细 ";
  656. this.tsmHisRecord.Click += new System.EventHandler(this.tsmHisRecord_Click);
  657. //
  658. // toolStripMenuItem1
  659. //
  660. this.toolStripMenuItem1.Name = "toolStripMenuItem1";
  661. this.toolStripMenuItem1.Size = new System.Drawing.Size(234, 26);
  662. this.toolStripMenuItem1.Text = "toolStripMenuItem1";
  663. this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
  664. //
  665. // tsmAICheck
  666. //
  667. this.tsmAICheck.Name = "tsmAICheck";
  668. this.tsmAICheck.Size = new System.Drawing.Size(234, 26);
  669. this.tsmAICheck.Text = "智能比对";
  670. this.tsmAICheck.Click += new System.EventHandler(this.tsmAICheck_Click);
  671. //
  672. // 导出TXTToolStripMenuItem
  673. //
  674. this.导出TXTToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  675. this.tsmExport,
  676. this.tsmCompress,
  677. this.tsmZIPToSDec,
  678. this.tsmUploadZIP,
  679. this.tsm3202,
  680. this.tsmDownload,
  681. this.tsmUnCompress,
  682. this.tsmImport,
  683. this.tsmHandCheck});
  684. this.导出TXTToolStripMenuItem.Name = "导出TXTToolStripMenuItem";
  685. this.导出TXTToolStripMenuItem.Size = new System.Drawing.Size(234, 26);
  686. this.导出TXTToolStripMenuItem.Text = "附属功能";
  687. //
  688. // tsmExport
  689. //
  690. this.tsmExport.Name = "tsmExport";
  691. this.tsmExport.Size = new System.Drawing.Size(217, 26);
  692. this.tsmExport.Text = "导出TXT";
  693. this.tsmExport.Click += new System.EventHandler(this.tsmExport_Click);
  694. //
  695. // tsmCompress
  696. //
  697. this.tsmCompress.Name = "tsmCompress";
  698. this.tsmCompress.Size = new System.Drawing.Size(217, 26);
  699. this.tsmCompress.Text = "TXT压缩为ZIP";
  700. this.tsmCompress.Click += new System.EventHandler(this.tsmCompress_Click);
  701. //
  702. // tsmZIPToSDec
  703. //
  704. this.tsmZIPToSDec.Name = "tsmZIPToSDec";
  705. this.tsmZIPToSDec.Size = new System.Drawing.Size(217, 26);
  706. this.tsmZIPToSDec.Text = "ZIP转为有符号整数";
  707. this.tsmZIPToSDec.Click += new System.EventHandler(this.tsmZIPToSDec_Click);
  708. //
  709. // tsmUploadZIP
  710. //
  711. this.tsmUploadZIP.Name = "tsmUploadZIP";
  712. this.tsmUploadZIP.Size = new System.Drawing.Size(217, 26);
  713. this.tsmUploadZIP.Text = "上传ZIP";
  714. this.tsmUploadZIP.Click += new System.EventHandler(this.tsmUploadZIP_Click);
  715. //
  716. // tsm3202
  717. //
  718. this.tsm3202.Name = "tsm3202";
  719. this.tsm3202.Size = new System.Drawing.Size(217, 26);
  720. this.tsm3202.Text = "明细对账(3202)";
  721. this.tsm3202.Click += new System.EventHandler(this.tsm3202_Click);
  722. //
  723. // tsmDownload
  724. //
  725. this.tsmDownload.Name = "tsmDownload";
  726. this.tsmDownload.Size = new System.Drawing.Size(217, 26);
  727. this.tsmDownload.Text = "下载文件";
  728. this.tsmDownload.Click += new System.EventHandler(this.tsmDownload_Click);
  729. //
  730. // tsmUnCompress
  731. //
  732. this.tsmUnCompress.Name = "tsmUnCompress";
  733. this.tsmUnCompress.Size = new System.Drawing.Size(217, 26);
  734. this.tsmUnCompress.Text = "解压文件";
  735. this.tsmUnCompress.Click += new System.EventHandler(this.tsmUnCompress_Click);
  736. //
  737. // tsmImport
  738. //
  739. this.tsmImport.Name = "tsmImport";
  740. this.tsmImport.Size = new System.Drawing.Size(217, 26);
  741. this.tsmImport.Text = "导入文件";
  742. this.tsmImport.Click += new System.EventHandler(this.tsmImport_Click);
  743. //
  744. // tsmHandCheck
  745. //
  746. this.tsmHandCheck.Name = "tsmHandCheck";
  747. this.tsmHandCheck.Size = new System.Drawing.Size(217, 26);
  748. this.tsmHandCheck.Text = "手工对账";
  749. this.tsmHandCheck.Click += new System.EventHandler(this.tsmHandCheck_Click);
  750. //
  751. // tabPage5
  752. //
  753. this.tabPage5.Controls.Add(this.rtbCheckLog);
  754. this.tabPage5.Location = new System.Drawing.Point(0, 25);
  755. this.tabPage5.Name = "tabPage5";
  756. this.tabPage5.Size = new System.Drawing.Size(973, 399);
  757. this.tabPage5.TabIndex = 1;
  758. this.tabPage5.Text = "对总账结果记录";
  759. this.tabPage5.UseVisualStyleBackColor = true;
  760. //
  761. // rtbCheckLog
  762. //
  763. this.rtbCheckLog.Dock = System.Windows.Forms.DockStyle.Fill;
  764. this.rtbCheckLog.FillColor = System.Drawing.Color.White;
  765. this.rtbCheckLog.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  766. this.rtbCheckLog.Location = new System.Drawing.Point(0, 0);
  767. this.rtbCheckLog.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  768. this.rtbCheckLog.MinimumSize = new System.Drawing.Size(1, 1);
  769. this.rtbCheckLog.Name = "rtbCheckLog";
  770. this.rtbCheckLog.Padding = new System.Windows.Forms.Padding(2);
  771. this.rtbCheckLog.ShowText = false;
  772. this.rtbCheckLog.Size = new System.Drawing.Size(973, 399);
  773. this.rtbCheckLog.Style = Sunny.UI.UIStyle.Custom;
  774. this.rtbCheckLog.TabIndex = 1;
  775. this.rtbCheckLog.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  776. this.rtbCheckLog.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  777. //
  778. // uiPanel1
  779. //
  780. this.uiPanel1.Controls.Add(this.tbTmp);
  781. this.uiPanel1.Controls.Add(this.gbConditionSet);
  782. this.uiPanel1.Controls.Add(this.cbgGroupSet);
  783. this.uiPanel1.Controls.Add(this.uiGroupBox1);
  784. this.uiPanel1.Controls.Add(this.gbDateTime);
  785. this.uiPanel1.Dock = System.Windows.Forms.DockStyle.Left;
  786. this.uiPanel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  787. this.uiPanel1.Location = new System.Drawing.Point(0, 0);
  788. this.uiPanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  789. this.uiPanel1.MinimumSize = new System.Drawing.Size(1, 1);
  790. this.uiPanel1.Name = "uiPanel1";
  791. this.uiPanel1.Size = new System.Drawing.Size(228, 766);
  792. this.uiPanel1.TabIndex = 2;
  793. this.uiPanel1.Text = null;
  794. this.uiPanel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  795. this.uiPanel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  796. //
  797. // tbTmp
  798. //
  799. this.tbTmp.Dock = System.Windows.Forms.DockStyle.Top;
  800. this.tbTmp.Location = new System.Drawing.Point(0, 493);
  801. this.tbTmp.Name = "tbTmp";
  802. this.tbTmp.Size = new System.Drawing.Size(228, 146);
  803. this.tbTmp.TabIndex = 31;
  804. this.tbTmp.Text = "E:\\GHSF\\SCYBDownLoad\\result.txt";
  805. //
  806. // gbConditionSet
  807. //
  808. this.gbConditionSet.Controls.Add(this.cbxInterface);
  809. this.gbConditionSet.Controls.Add(this.tbSettlOption);
  810. this.gbConditionSet.Controls.Add(this.cbxValid);
  811. this.gbConditionSet.Controls.Add(this.uiLabel5);
  812. this.gbConditionSet.Controls.Add(this.uiLabel4);
  813. this.gbConditionSet.Controls.Add(this.cbxClrType);
  814. this.gbConditionSet.Controls.Add(this.uiLabel3);
  815. this.gbConditionSet.Controls.Add(this.cbxInsuType);
  816. this.gbConditionSet.Controls.Add(this.uiLabel2);
  817. this.gbConditionSet.Controls.Add(this.uiLabel1);
  818. this.gbConditionSet.Dock = System.Windows.Forms.DockStyle.Top;
  819. this.gbConditionSet.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  820. this.gbConditionSet.Location = new System.Drawing.Point(0, 267);
  821. this.gbConditionSet.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  822. this.gbConditionSet.MinimumSize = new System.Drawing.Size(1, 1);
  823. this.gbConditionSet.Name = "gbConditionSet";
  824. this.gbConditionSet.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  825. this.gbConditionSet.Size = new System.Drawing.Size(228, 226);
  826. this.gbConditionSet.TabIndex = 24;
  827. this.gbConditionSet.TabStop = false;
  828. this.gbConditionSet.Text = "条件设置";
  829. this.gbConditionSet.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  830. this.gbConditionSet.TitleTop = 10;
  831. this.gbConditionSet.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  832. this.gbConditionSet.Click += new System.EventHandler(this.gbConditionSet_Click);
  833. //
  834. // cbxInterface
  835. //
  836. this.cbxInterface.DataSource = null;
  837. this.cbxInterface.FillColor = System.Drawing.Color.White;
  838. this.cbxInterface.FilterMaxCount = 50;
  839. this.cbxInterface.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  840. this.cbxInterface.ItemHeight = 20;
  841. this.cbxInterface.Items.AddRange(new object[] {
  842. "1",
  843. "2"});
  844. this.cbxInterface.Location = new System.Drawing.Point(67, 30);
  845. this.cbxInterface.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  846. this.cbxInterface.MinimumSize = new System.Drawing.Size(63, 0);
  847. this.cbxInterface.Name = "cbxInterface";
  848. this.cbxInterface.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  849. this.cbxInterface.Size = new System.Drawing.Size(153, 25);
  850. this.cbxInterface.TabIndex = 11;
  851. this.cbxInterface.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  852. this.cbxInterface.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  853. //
  854. // tbSettlOption
  855. //
  856. this.tbSettlOption.Cursor = System.Windows.Forms.Cursors.IBeam;
  857. this.tbSettlOption.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  858. this.tbSettlOption.Location = new System.Drawing.Point(67, 144);
  859. this.tbSettlOption.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  860. this.tbSettlOption.MinimumSize = new System.Drawing.Size(1, 16);
  861. this.tbSettlOption.Name = "tbSettlOption";
  862. this.tbSettlOption.ShowText = false;
  863. this.tbSettlOption.Size = new System.Drawing.Size(153, 25);
  864. this.tbSettlOption.TabIndex = 10;
  865. this.tbSettlOption.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  866. this.tbSettlOption.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  867. //
  868. // cbxValid
  869. //
  870. this.cbxValid.DataSource = null;
  871. this.cbxValid.FillColor = System.Drawing.Color.White;
  872. this.cbxValid.FilterMaxCount = 50;
  873. this.cbxValid.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  874. this.cbxValid.ItemHeight = 20;
  875. this.cbxValid.Items.AddRange(new object[] {
  876. "全部",
  877. "有效",
  878. "无效"});
  879. this.cbxValid.Location = new System.Drawing.Point(67, 182);
  880. this.cbxValid.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  881. this.cbxValid.MinimumSize = new System.Drawing.Size(63, 0);
  882. this.cbxValid.Name = "cbxValid";
  883. this.cbxValid.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  884. this.cbxValid.Size = new System.Drawing.Size(153, 25);
  885. this.cbxValid.TabIndex = 9;
  886. this.cbxValid.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  887. this.cbxValid.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  888. //
  889. // uiLabel5
  890. //
  891. this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  892. this.uiLabel5.Location = new System.Drawing.Point(4, 185);
  893. this.uiLabel5.Name = "uiLabel5";
  894. this.uiLabel5.Size = new System.Drawing.Size(78, 23);
  895. this.uiLabel5.TabIndex = 8;
  896. this.uiLabel5.Text = "有效标志";
  897. this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  898. this.uiLabel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  899. //
  900. // uiLabel4
  901. //
  902. this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  903. this.uiLabel4.Location = new System.Drawing.Point(4, 147);
  904. this.uiLabel4.Name = "uiLabel4";
  905. this.uiLabel4.Size = new System.Drawing.Size(78, 23);
  906. this.uiLabel4.TabIndex = 6;
  907. this.uiLabel4.Text = "经办机构";
  908. this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  909. this.uiLabel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  910. //
  911. // cbxClrType
  912. //
  913. this.cbxClrType.DataSource = null;
  914. this.cbxClrType.FillColor = System.Drawing.Color.White;
  915. this.cbxClrType.FilterMaxCount = 50;
  916. this.cbxClrType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  917. this.cbxClrType.ItemHeight = 20;
  918. this.cbxClrType.Items.AddRange(new object[] {
  919. "1",
  920. "2"});
  921. this.cbxClrType.Location = new System.Drawing.Point(67, 106);
  922. this.cbxClrType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  923. this.cbxClrType.MinimumSize = new System.Drawing.Size(63, 0);
  924. this.cbxClrType.Name = "cbxClrType";
  925. this.cbxClrType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  926. this.cbxClrType.Size = new System.Drawing.Size(153, 25);
  927. this.cbxClrType.TabIndex = 5;
  928. this.cbxClrType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  929. this.cbxClrType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  930. //
  931. // uiLabel3
  932. //
  933. this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  934. this.uiLabel3.Location = new System.Drawing.Point(4, 109);
  935. this.uiLabel3.Name = "uiLabel3";
  936. this.uiLabel3.Size = new System.Drawing.Size(78, 23);
  937. this.uiLabel3.TabIndex = 4;
  938. this.uiLabel3.Text = "清算类别";
  939. this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  940. this.uiLabel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  941. //
  942. // cbxInsuType
  943. //
  944. this.cbxInsuType.DataSource = null;
  945. this.cbxInsuType.FillColor = System.Drawing.Color.White;
  946. this.cbxInsuType.FilterMaxCount = 50;
  947. this.cbxInsuType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  948. this.cbxInsuType.ItemHeight = 20;
  949. this.cbxInsuType.Items.AddRange(new object[] {
  950. "1",
  951. "2"});
  952. this.cbxInsuType.Location = new System.Drawing.Point(67, 68);
  953. this.cbxInsuType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  954. this.cbxInsuType.MinimumSize = new System.Drawing.Size(63, 0);
  955. this.cbxInsuType.Name = "cbxInsuType";
  956. this.cbxInsuType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  957. this.cbxInsuType.Size = new System.Drawing.Size(153, 25);
  958. this.cbxInsuType.TabIndex = 3;
  959. this.cbxInsuType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  960. this.cbxInsuType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  961. this.cbxInsuType.SelectedIndexChanged += new System.EventHandler(this.cbxInsuType_SelectedIndexChanged);
  962. //
  963. // uiLabel2
  964. //
  965. this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  966. this.uiLabel2.Location = new System.Drawing.Point(4, 71);
  967. this.uiLabel2.Name = "uiLabel2";
  968. this.uiLabel2.Size = new System.Drawing.Size(78, 23);
  969. this.uiLabel2.TabIndex = 2;
  970. this.uiLabel2.Text = "险种类型";
  971. this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  972. this.uiLabel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  973. //
  974. // uiLabel1
  975. //
  976. this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  977. this.uiLabel1.Location = new System.Drawing.Point(4, 33);
  978. this.uiLabel1.Name = "uiLabel1";
  979. this.uiLabel1.Size = new System.Drawing.Size(78, 23);
  980. this.uiLabel1.TabIndex = 0;
  981. this.uiLabel1.Text = "接口目录";
  982. this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  983. this.uiLabel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  984. //
  985. // cbgGroupSet
  986. //
  987. this.cbgGroupSet.Dock = System.Windows.Forms.DockStyle.Top;
  988. this.cbgGroupSet.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  989. this.cbgGroupSet.Items.AddRange(new object[] {
  990. "接 口",
  991. "险 种 类 型",
  992. "清 算 类 别",
  993. "经 办 机 构",
  994. "单 据 类 型"});
  995. this.cbgGroupSet.ItemSize = new System.Drawing.Size(150, 25);
  996. this.cbgGroupSet.Location = new System.Drawing.Point(0, 112);
  997. this.cbgGroupSet.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  998. this.cbgGroupSet.MinimumSize = new System.Drawing.Size(1, 1);
  999. this.cbgGroupSet.Name = "cbgGroupSet";
  1000. this.cbgGroupSet.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  1001. this.cbgGroupSet.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Top;
  1002. this.cbgGroupSet.SelectedIndexes = ((System.Collections.Generic.List<int>)(resources.GetObject("cbgGroupSet.SelectedIndexes")));
  1003. this.cbgGroupSet.Size = new System.Drawing.Size(228, 155);
  1004. this.cbgGroupSet.TabIndex = 25;
  1005. this.cbgGroupSet.Text = "分组设置";
  1006. this.cbgGroupSet.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1007. this.cbgGroupSet.TitleTop = 10;
  1008. this.cbgGroupSet.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1009. //
  1010. // uiGroupBox1
  1011. //
  1012. this.uiGroupBox1.Controls.Add(this.uiGroupBox10);
  1013. this.uiGroupBox1.Controls.Add(this.btnQuerySettlSummary);
  1014. this.uiGroupBox1.Controls.Add(this.btnClose);
  1015. this.uiGroupBox1.Controls.Add(this.btnBatchCheck);
  1016. this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  1017. this.uiGroupBox1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1018. this.uiGroupBox1.Location = new System.Drawing.Point(0, 112);
  1019. this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1020. this.uiGroupBox1.MinimumSize = new System.Drawing.Size(1, 1);
  1021. this.uiGroupBox1.Name = "uiGroupBox1";
  1022. this.uiGroupBox1.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1023. this.uiGroupBox1.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  1024. this.uiGroupBox1.RectSize = 2;
  1025. this.uiGroupBox1.Size = new System.Drawing.Size(228, 654);
  1026. this.uiGroupBox1.TabIndex = 22;
  1027. this.uiGroupBox1.Text = null;
  1028. this.uiGroupBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1029. this.uiGroupBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1030. //
  1031. // uiGroupBox10
  1032. //
  1033. this.uiGroupBox10.Controls.Add(this.uiButton4);
  1034. this.uiGroupBox10.Controls.Add(this.uiButton5);
  1035. this.uiGroupBox10.Controls.Add(this.Btn_Query);
  1036. this.uiGroupBox10.Dock = System.Windows.Forms.DockStyle.Bottom;
  1037. this.uiGroupBox10.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1038. this.uiGroupBox10.Location = new System.Drawing.Point(0, 541);
  1039. this.uiGroupBox10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1040. this.uiGroupBox10.MinimumSize = new System.Drawing.Size(1, 1);
  1041. this.uiGroupBox10.Name = "uiGroupBox10";
  1042. this.uiGroupBox10.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1043. this.uiGroupBox10.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  1044. this.uiGroupBox10.RectSize = 2;
  1045. this.uiGroupBox10.Size = new System.Drawing.Size(228, 113);
  1046. this.uiGroupBox10.TabIndex = 34;
  1047. this.uiGroupBox10.Text = null;
  1048. this.uiGroupBox10.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1049. this.uiGroupBox10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1050. //
  1051. // uiButton4
  1052. //
  1053. this.uiButton4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  1054. | System.Windows.Forms.AnchorStyles.Right)));
  1055. this.uiButton4.Cursor = System.Windows.Forms.Cursors.Hand;
  1056. this.uiButton4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1057. this.uiButton4.Location = new System.Drawing.Point(39, 75);
  1058. this.uiButton4.MinimumSize = new System.Drawing.Size(1, 1);
  1059. this.uiButton4.Name = "uiButton4";
  1060. this.uiButton4.Size = new System.Drawing.Size(144, 27);
  1061. this.uiButton4.TabIndex = 2;
  1062. this.uiButton4.Text = "退出";
  1063. this.uiButton4.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1064. this.uiButton4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1065. this.uiButton4.Click += new System.EventHandler(this.btnClose_Click);
  1066. //
  1067. // uiButton5
  1068. //
  1069. this.uiButton5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  1070. | System.Windows.Forms.AnchorStyles.Right)));
  1071. this.uiButton5.Cursor = System.Windows.Forms.Cursors.Hand;
  1072. this.uiButton5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1073. this.uiButton5.Location = new System.Drawing.Point(39, 39);
  1074. this.uiButton5.MinimumSize = new System.Drawing.Size(1, 1);
  1075. this.uiButton5.Name = "uiButton5";
  1076. this.uiButton5.Size = new System.Drawing.Size(144, 27);
  1077. this.uiButton5.TabIndex = 1;
  1078. this.uiButton5.Text = "批量对总账";
  1079. this.uiButton5.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1080. this.uiButton5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1081. this.uiButton5.Click += new System.EventHandler(this.uiButton5_Click);
  1082. //
  1083. // Btn_Query
  1084. //
  1085. this.Btn_Query.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  1086. | System.Windows.Forms.AnchorStyles.Right)));
  1087. this.Btn_Query.Cursor = System.Windows.Forms.Cursors.Hand;
  1088. this.Btn_Query.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1089. this.Btn_Query.Location = new System.Drawing.Point(39, 3);
  1090. this.Btn_Query.MinimumSize = new System.Drawing.Size(1, 1);
  1091. this.Btn_Query.Name = "Btn_Query";
  1092. this.Btn_Query.Size = new System.Drawing.Size(144, 27);
  1093. this.Btn_Query.TabIndex = 0;
  1094. this.Btn_Query.Text = "查询汇总数据";
  1095. this.Btn_Query.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1096. this.Btn_Query.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1097. this.Btn_Query.Click += new System.EventHandler(this.Btn_Query_Click);
  1098. //
  1099. // btnQuerySettlSummary
  1100. //
  1101. this.btnQuerySettlSummary.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1102. this.btnQuerySettlSummary.Cursor = System.Windows.Forms.Cursors.Hand;
  1103. this.btnQuerySettlSummary.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1104. this.btnQuerySettlSummary.Location = new System.Drawing.Point(34, 719);
  1105. this.btnQuerySettlSummary.MinimumSize = new System.Drawing.Size(1, 1);
  1106. this.btnQuerySettlSummary.Name = "btnQuerySettlSummary";
  1107. this.btnQuerySettlSummary.Size = new System.Drawing.Size(168, 27);
  1108. this.btnQuerySettlSummary.TabIndex = 33;
  1109. this.btnQuerySettlSummary.Text = "查询汇总数据";
  1110. this.btnQuerySettlSummary.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1111. this.btnQuerySettlSummary.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1112. //
  1113. // btnClose
  1114. //
  1115. this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1116. this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand;
  1117. this.btnClose.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1118. this.btnClose.Location = new System.Drawing.Point(34, 828);
  1119. this.btnClose.MinimumSize = new System.Drawing.Size(1, 1);
  1120. this.btnClose.Name = "btnClose";
  1121. this.btnClose.Size = new System.Drawing.Size(168, 27);
  1122. this.btnClose.TabIndex = 2;
  1123. this.btnClose.Text = "退 出";
  1124. this.btnClose.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1125. this.btnClose.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1126. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  1127. //
  1128. // btnBatchCheck
  1129. //
  1130. this.btnBatchCheck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1131. this.btnBatchCheck.Cursor = System.Windows.Forms.Cursors.Hand;
  1132. this.btnBatchCheck.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1133. this.btnBatchCheck.Location = new System.Drawing.Point(34, 779);
  1134. this.btnBatchCheck.MinimumSize = new System.Drawing.Size(1, 1);
  1135. this.btnBatchCheck.Name = "btnBatchCheck";
  1136. this.btnBatchCheck.Size = new System.Drawing.Size(168, 27);
  1137. this.btnBatchCheck.TabIndex = 1;
  1138. this.btnBatchCheck.Text = "批量对总账";
  1139. this.btnBatchCheck.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1140. this.btnBatchCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1141. this.btnBatchCheck.Click += new System.EventHandler(this.btnBatchCheck_Click);
  1142. //
  1143. // gbDateTime
  1144. //
  1145. this.gbDateTime.Controls.Add(this.btnReduceOndDay);
  1146. this.gbDateTime.Controls.Add(this.btnAddOneDay);
  1147. this.gbDateTime.Controls.Add(this.dpED);
  1148. this.gbDateTime.Controls.Add(this.dpST);
  1149. this.gbDateTime.Dock = System.Windows.Forms.DockStyle.Top;
  1150. this.gbDateTime.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1151. this.gbDateTime.Location = new System.Drawing.Point(0, 0);
  1152. this.gbDateTime.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1153. this.gbDateTime.MinimumSize = new System.Drawing.Size(1, 1);
  1154. this.gbDateTime.Name = "gbDateTime";
  1155. this.gbDateTime.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1156. this.gbDateTime.Size = new System.Drawing.Size(228, 112);
  1157. this.gbDateTime.TabIndex = 21;
  1158. this.gbDateTime.Text = "起止时间";
  1159. this.gbDateTime.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1160. this.gbDateTime.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1161. //
  1162. // btnReduceOndDay
  1163. //
  1164. this.btnReduceOndDay.Cursor = System.Windows.Forms.Cursors.Hand;
  1165. this.btnReduceOndDay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1166. this.btnReduceOndDay.Location = new System.Drawing.Point(160, 3);
  1167. this.btnReduceOndDay.MinimumSize = new System.Drawing.Size(1, 1);
  1168. this.btnReduceOndDay.Name = "btnReduceOndDay";
  1169. this.btnReduceOndDay.Size = new System.Drawing.Size(38, 23);
  1170. this.btnReduceOndDay.Symbol = 61544;
  1171. this.btnReduceOndDay.TabIndex = 3;
  1172. this.btnReduceOndDay.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1173. this.btnReduceOndDay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1174. this.btnReduceOndDay.Click += new System.EventHandler(this.btnReduceOndDay_Click);
  1175. //
  1176. // btnAddOneDay
  1177. //
  1178. this.btnAddOneDay.Cursor = System.Windows.Forms.Cursors.Hand;
  1179. this.btnAddOneDay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1180. this.btnAddOneDay.Location = new System.Drawing.Point(116, 3);
  1181. this.btnAddOneDay.MinimumSize = new System.Drawing.Size(1, 1);
  1182. this.btnAddOneDay.Name = "btnAddOneDay";
  1183. this.btnAddOneDay.Size = new System.Drawing.Size(38, 23);
  1184. this.btnAddOneDay.Symbol = 61543;
  1185. this.btnAddOneDay.TabIndex = 2;
  1186. this.btnAddOneDay.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1187. this.btnAddOneDay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1188. this.btnAddOneDay.Click += new System.EventHandler(this.btnAddOneDay_Click);
  1189. //
  1190. // dpED
  1191. //
  1192. this.dpED.FillColor = System.Drawing.Color.White;
  1193. this.dpED.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1194. this.dpED.Location = new System.Drawing.Point(17, 70);
  1195. this.dpED.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1196. this.dpED.MaxLength = 19;
  1197. this.dpED.MinimumSize = new System.Drawing.Size(63, 0);
  1198. this.dpED.Name = "dpED";
  1199. this.dpED.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1200. this.dpED.Size = new System.Drawing.Size(185, 29);
  1201. this.dpED.SymbolDropDown = 61555;
  1202. this.dpED.SymbolNormal = 61555;
  1203. this.dpED.TabIndex = 1;
  1204. this.dpED.Text = "2022-11-01 23:59:59";
  1205. this.dpED.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1206. this.dpED.Value = new System.DateTime(2022, 11, 1, 23, 59, 59, 0);
  1207. this.dpED.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1208. //
  1209. // dpST
  1210. //
  1211. this.dpST.FillColor = System.Drawing.Color.White;
  1212. this.dpST.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1213. this.dpST.Location = new System.Drawing.Point(17, 31);
  1214. this.dpST.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1215. this.dpST.MaxLength = 19;
  1216. this.dpST.MinimumSize = new System.Drawing.Size(63, 0);
  1217. this.dpST.Name = "dpST";
  1218. this.dpST.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1219. this.dpST.Size = new System.Drawing.Size(185, 29);
  1220. this.dpST.SymbolDropDown = 61555;
  1221. this.dpST.SymbolNormal = 61555;
  1222. this.dpST.TabIndex = 0;
  1223. this.dpST.Text = "2022-06-01 00:00:00";
  1224. this.dpST.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1225. this.dpST.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
  1226. this.dpST.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1227. //
  1228. // tabPage10
  1229. //
  1230. this.tabPage10.Controls.Add(this.uiPanel7);
  1231. this.tabPage10.Controls.Add(this.uiPanel6);
  1232. this.tabPage10.Location = new System.Drawing.Point(0, 30);
  1233. this.tabPage10.Name = "tabPage10";
  1234. this.tabPage10.Size = new System.Drawing.Size(1201, 766);
  1235. this.tabPage10.TabIndex = 3;
  1236. this.tabPage10.Text = "异地对账";
  1237. this.tabPage10.UseVisualStyleBackColor = true;
  1238. //
  1239. // uiPanel7
  1240. //
  1241. this.uiPanel7.Controls.Add(this.uiTabControl6);
  1242. this.uiPanel7.Controls.Add(this.uiTabControl7);
  1243. this.uiPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
  1244. this.uiPanel7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1245. this.uiPanel7.Location = new System.Drawing.Point(217, 0);
  1246. this.uiPanel7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1247. this.uiPanel7.MinimumSize = new System.Drawing.Size(1, 1);
  1248. this.uiPanel7.Name = "uiPanel7";
  1249. this.uiPanel7.Size = new System.Drawing.Size(984, 766);
  1250. this.uiPanel7.TabIndex = 4;
  1251. this.uiPanel7.Text = null;
  1252. this.uiPanel7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1253. this.uiPanel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1254. //
  1255. // uiTabControl6
  1256. //
  1257. this.uiTabControl6.Controls.Add(this.tabPage14);
  1258. this.uiTabControl6.Dock = System.Windows.Forms.DockStyle.Fill;
  1259. this.uiTabControl6.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1260. this.uiTabControl6.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1261. this.uiTabControl6.ItemSize = new System.Drawing.Size(150, 25);
  1262. this.uiTabControl6.Location = new System.Drawing.Point(0, 424);
  1263. this.uiTabControl6.MainPage = "";
  1264. this.uiTabControl6.Name = "uiTabControl6";
  1265. this.uiTabControl6.SelectedIndex = 0;
  1266. this.uiTabControl6.Size = new System.Drawing.Size(984, 342);
  1267. this.uiTabControl6.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  1268. this.uiTabControl6.TabIndex = 1;
  1269. this.uiTabControl6.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1270. this.uiTabControl6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1271. //
  1272. // tabPage14
  1273. //
  1274. this.tabPage14.Controls.Add(this.rtbOthCheckResultRecord);
  1275. this.tabPage14.Location = new System.Drawing.Point(0, 25);
  1276. this.tabPage14.Name = "tabPage14";
  1277. this.tabPage14.Size = new System.Drawing.Size(984, 317);
  1278. this.tabPage14.TabIndex = 2;
  1279. this.tabPage14.Text = "对账结果记录";
  1280. this.tabPage14.UseVisualStyleBackColor = true;
  1281. //
  1282. // rtbOthCheckResultRecord
  1283. //
  1284. this.rtbOthCheckResultRecord.Dock = System.Windows.Forms.DockStyle.Fill;
  1285. this.rtbOthCheckResultRecord.FillColor = System.Drawing.Color.White;
  1286. this.rtbOthCheckResultRecord.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1287. this.rtbOthCheckResultRecord.Location = new System.Drawing.Point(0, 0);
  1288. this.rtbOthCheckResultRecord.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1289. this.rtbOthCheckResultRecord.MinimumSize = new System.Drawing.Size(1, 1);
  1290. this.rtbOthCheckResultRecord.Name = "rtbOthCheckResultRecord";
  1291. this.rtbOthCheckResultRecord.Padding = new System.Windows.Forms.Padding(2);
  1292. this.rtbOthCheckResultRecord.ShowText = false;
  1293. this.rtbOthCheckResultRecord.Size = new System.Drawing.Size(984, 317);
  1294. this.rtbOthCheckResultRecord.Style = Sunny.UI.UIStyle.Custom;
  1295. this.rtbOthCheckResultRecord.TabIndex = 0;
  1296. this.rtbOthCheckResultRecord.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1297. this.rtbOthCheckResultRecord.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1298. //
  1299. // uiTabControl7
  1300. //
  1301. this.uiTabControl7.Controls.Add(this.tabPage15);
  1302. this.uiTabControl7.Dock = System.Windows.Forms.DockStyle.Top;
  1303. this.uiTabControl7.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1304. this.uiTabControl7.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1305. this.uiTabControl7.ItemSize = new System.Drawing.Size(150, 25);
  1306. this.uiTabControl7.Location = new System.Drawing.Point(0, 0);
  1307. this.uiTabControl7.MainPage = "";
  1308. this.uiTabControl7.Name = "uiTabControl7";
  1309. this.uiTabControl7.SelectedIndex = 0;
  1310. this.uiTabControl7.Size = new System.Drawing.Size(984, 424);
  1311. this.uiTabControl7.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  1312. this.uiTabControl7.TabIndex = 0;
  1313. this.uiTabControl7.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1314. this.uiTabControl7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1315. //
  1316. // tabPage15
  1317. //
  1318. this.tabPage15.Controls.Add(this.dgvOthCheck);
  1319. this.tabPage15.Location = new System.Drawing.Point(0, 25);
  1320. this.tabPage15.Name = "tabPage15";
  1321. this.tabPage15.Size = new System.Drawing.Size(984, 399);
  1322. this.tabPage15.TabIndex = 0;
  1323. this.tabPage15.Text = "结算汇总数据";
  1324. this.tabPage15.UseVisualStyleBackColor = true;
  1325. //
  1326. // dgvOthCheck
  1327. //
  1328. this.dgvOthCheck.AllowUserToAddRows = false;
  1329. dataGridViewCellStyle16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1330. this.dgvOthCheck.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle16;
  1331. this.dgvOthCheck.BackgroundColor = System.Drawing.Color.White;
  1332. this.dgvOthCheck.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
  1333. dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1334. dataGridViewCellStyle17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1335. dataGridViewCellStyle17.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1336. dataGridViewCellStyle17.ForeColor = System.Drawing.Color.White;
  1337. dataGridViewCellStyle17.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1338. dataGridViewCellStyle17.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1339. dataGridViewCellStyle17.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1340. this.dgvOthCheck.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle17;
  1341. this.dgvOthCheck.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1342. this.dgvOthCheck.ContextMenuStrip = this.cmdOthPlcCheck;
  1343. dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1344. dataGridViewCellStyle18.BackColor = System.Drawing.SystemColors.Window;
  1345. dataGridViewCellStyle18.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1346. dataGridViewCellStyle18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1347. dataGridViewCellStyle18.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1348. dataGridViewCellStyle18.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1349. dataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1350. this.dgvOthCheck.DefaultCellStyle = dataGridViewCellStyle18;
  1351. this.dgvOthCheck.Dock = System.Windows.Forms.DockStyle.Fill;
  1352. this.dgvOthCheck.EnableHeadersVisualStyles = false;
  1353. this.dgvOthCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1354. this.dgvOthCheck.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1355. this.dgvOthCheck.Location = new System.Drawing.Point(0, 0);
  1356. this.dgvOthCheck.Name = "dgvOthCheck";
  1357. this.dgvOthCheck.ReadOnly = true;
  1358. dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1359. dataGridViewCellStyle19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1360. dataGridViewCellStyle19.Font = new System.Drawing.Font("微软雅黑", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1361. dataGridViewCellStyle19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1362. dataGridViewCellStyle19.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1363. dataGridViewCellStyle19.SelectionForeColor = System.Drawing.Color.White;
  1364. dataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1365. this.dgvOthCheck.RowHeadersDefaultCellStyle = dataGridViewCellStyle19;
  1366. this.dgvOthCheck.RowHeadersWidth = 30;
  1367. this.dgvOthCheck.RowHeight = 30;
  1368. dataGridViewCellStyle20.BackColor = System.Drawing.Color.White;
  1369. dataGridViewCellStyle20.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1370. this.dgvOthCheck.RowsDefaultCellStyle = dataGridViewCellStyle20;
  1371. this.dgvOthCheck.RowTemplate.Height = 30;
  1372. this.dgvOthCheck.SelectedIndex = -1;
  1373. this.dgvOthCheck.Size = new System.Drawing.Size(984, 399);
  1374. this.dgvOthCheck.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1375. this.dgvOthCheck.TabIndex = 0;
  1376. this.dgvOthCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1377. this.dgvOthCheck.RowStateChanged += new System.Windows.Forms.DataGridViewRowStateChangedEventHandler(this.dgvRowStateChanged);
  1378. //
  1379. // cmdOthPlcCheck
  1380. //
  1381. this.cmdOthPlcCheck.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1382. this.cmdOthPlcCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1383. this.cmdOthPlcCheck.ImageScalingSize = new System.Drawing.Size(20, 20);
  1384. this.cmdOthPlcCheck.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  1385. this.tsmOthPlcCheck});
  1386. this.cmdOthPlcCheck.Name = "cmsCheck";
  1387. this.cmdOthPlcCheck.Size = new System.Drawing.Size(187, 30);
  1388. this.cmdOthPlcCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1389. //
  1390. // tsmOthPlcCheck
  1391. //
  1392. this.tsmOthPlcCheck.Name = "tsmOthPlcCheck";
  1393. this.tsmOthPlcCheck.Size = new System.Drawing.Size(186, 26);
  1394. this.tsmOthPlcCheck.Text = "单条对账(异地)";
  1395. this.tsmOthPlcCheck.Click += new System.EventHandler(this.tsmOthPlcCheck_Click);
  1396. //
  1397. // uiPanel6
  1398. //
  1399. this.uiPanel6.Controls.Add(this.uiGroupBox7);
  1400. this.uiPanel6.Controls.Add(this.uiGroupBox8);
  1401. this.uiPanel6.Controls.Add(this.uiGroupBox9);
  1402. this.uiPanel6.Dock = System.Windows.Forms.DockStyle.Left;
  1403. this.uiPanel6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1404. this.uiPanel6.Location = new System.Drawing.Point(0, 0);
  1405. this.uiPanel6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1406. this.uiPanel6.MinimumSize = new System.Drawing.Size(1, 1);
  1407. this.uiPanel6.Name = "uiPanel6";
  1408. this.uiPanel6.Size = new System.Drawing.Size(217, 766);
  1409. this.uiPanel6.TabIndex = 3;
  1410. this.uiPanel6.Text = null;
  1411. this.uiPanel6.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1412. this.uiPanel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1413. //
  1414. // uiGroupBox7
  1415. //
  1416. this.uiGroupBox7.Controls.Add(this.uiTextBox1);
  1417. this.uiGroupBox7.Controls.Add(this.cbxValid_O);
  1418. this.uiGroupBox7.Controls.Add(this.uiLabel12);
  1419. this.uiGroupBox7.Controls.Add(this.uiLabel14);
  1420. this.uiGroupBox7.Controls.Add(this.cbxClrType_O);
  1421. this.uiGroupBox7.Controls.Add(this.uiLabel15);
  1422. this.uiGroupBox7.Controls.Add(this.uiComboBox4);
  1423. this.uiGroupBox7.Controls.Add(this.uiLabel16);
  1424. this.uiGroupBox7.Dock = System.Windows.Forms.DockStyle.Top;
  1425. this.uiGroupBox7.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1426. this.uiGroupBox7.Location = new System.Drawing.Point(0, 112);
  1427. this.uiGroupBox7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1428. this.uiGroupBox7.MinimumSize = new System.Drawing.Size(1, 1);
  1429. this.uiGroupBox7.Name = "uiGroupBox7";
  1430. this.uiGroupBox7.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  1431. this.uiGroupBox7.Size = new System.Drawing.Size(217, 198);
  1432. this.uiGroupBox7.TabIndex = 24;
  1433. this.uiGroupBox7.TabStop = false;
  1434. this.uiGroupBox7.Text = "条件设置";
  1435. this.uiGroupBox7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1436. this.uiGroupBox7.TitleTop = 10;
  1437. this.uiGroupBox7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1438. //
  1439. // uiTextBox1
  1440. //
  1441. this.uiTextBox1.Cursor = System.Windows.Forms.Cursors.IBeam;
  1442. this.uiTextBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1443. this.uiTextBox1.Location = new System.Drawing.Point(79, 124);
  1444. this.uiTextBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1445. this.uiTextBox1.MinimumSize = new System.Drawing.Size(1, 16);
  1446. this.uiTextBox1.Name = "uiTextBox1";
  1447. this.uiTextBox1.ShowText = false;
  1448. this.uiTextBox1.Size = new System.Drawing.Size(130, 25);
  1449. this.uiTextBox1.TabIndex = 10;
  1450. this.uiTextBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1451. this.uiTextBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1452. //
  1453. // cbxValid_O
  1454. //
  1455. this.cbxValid_O.DataSource = null;
  1456. this.cbxValid_O.FillColor = System.Drawing.Color.White;
  1457. this.cbxValid_O.FilterMaxCount = 50;
  1458. this.cbxValid_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1459. this.cbxValid_O.ItemHeight = 20;
  1460. this.cbxValid_O.Items.AddRange(new object[] {
  1461. "全部",
  1462. "有效",
  1463. "无效"});
  1464. this.cbxValid_O.Location = new System.Drawing.Point(79, 157);
  1465. this.cbxValid_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1466. this.cbxValid_O.MinimumSize = new System.Drawing.Size(63, 0);
  1467. this.cbxValid_O.Name = "cbxValid_O";
  1468. this.cbxValid_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1469. this.cbxValid_O.Size = new System.Drawing.Size(130, 25);
  1470. this.cbxValid_O.TabIndex = 9;
  1471. this.cbxValid_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1472. this.cbxValid_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1473. //
  1474. // uiLabel12
  1475. //
  1476. this.uiLabel12.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1477. this.uiLabel12.Location = new System.Drawing.Point(9, 158);
  1478. this.uiLabel12.Name = "uiLabel12";
  1479. this.uiLabel12.Size = new System.Drawing.Size(63, 23);
  1480. this.uiLabel12.TabIndex = 8;
  1481. this.uiLabel12.Text = "有效标志";
  1482. this.uiLabel12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1483. this.uiLabel12.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1484. //
  1485. // uiLabel14
  1486. //
  1487. this.uiLabel14.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1488. this.uiLabel14.Location = new System.Drawing.Point(9, 125);
  1489. this.uiLabel14.Name = "uiLabel14";
  1490. this.uiLabel14.Size = new System.Drawing.Size(63, 23);
  1491. this.uiLabel14.TabIndex = 6;
  1492. this.uiLabel14.Text = "经办机构";
  1493. this.uiLabel14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1494. this.uiLabel14.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1495. //
  1496. // cbxClrType_O
  1497. //
  1498. this.cbxClrType_O.DataSource = null;
  1499. this.cbxClrType_O.FillColor = System.Drawing.Color.White;
  1500. this.cbxClrType_O.FilterMaxCount = 50;
  1501. this.cbxClrType_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1502. this.cbxClrType_O.ItemHeight = 20;
  1503. this.cbxClrType_O.Items.AddRange(new object[] {
  1504. "1",
  1505. "2"});
  1506. this.cbxClrType_O.Location = new System.Drawing.Point(79, 91);
  1507. this.cbxClrType_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1508. this.cbxClrType_O.MinimumSize = new System.Drawing.Size(63, 0);
  1509. this.cbxClrType_O.Name = "cbxClrType_O";
  1510. this.cbxClrType_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1511. this.cbxClrType_O.Size = new System.Drawing.Size(130, 25);
  1512. this.cbxClrType_O.TabIndex = 5;
  1513. this.cbxClrType_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1514. this.cbxClrType_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1515. //
  1516. // uiLabel15
  1517. //
  1518. this.uiLabel15.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1519. this.uiLabel15.Location = new System.Drawing.Point(9, 92);
  1520. this.uiLabel15.Name = "uiLabel15";
  1521. this.uiLabel15.Size = new System.Drawing.Size(63, 23);
  1522. this.uiLabel15.TabIndex = 4;
  1523. this.uiLabel15.Text = "清算类别";
  1524. this.uiLabel15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1525. this.uiLabel15.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1526. //
  1527. // uiComboBox4
  1528. //
  1529. this.uiComboBox4.DataSource = null;
  1530. this.uiComboBox4.FillColor = System.Drawing.Color.White;
  1531. this.uiComboBox4.FilterMaxCount = 50;
  1532. this.uiComboBox4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1533. this.uiComboBox4.ItemHeight = 20;
  1534. this.uiComboBox4.Items.AddRange(new object[] {
  1535. "1",
  1536. "2"});
  1537. this.uiComboBox4.Location = new System.Drawing.Point(79, 58);
  1538. this.uiComboBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1539. this.uiComboBox4.MinimumSize = new System.Drawing.Size(63, 0);
  1540. this.uiComboBox4.Name = "uiComboBox4";
  1541. this.uiComboBox4.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1542. this.uiComboBox4.Size = new System.Drawing.Size(130, 25);
  1543. this.uiComboBox4.TabIndex = 3;
  1544. this.uiComboBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1545. this.uiComboBox4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1546. //
  1547. // uiLabel16
  1548. //
  1549. this.uiLabel16.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1550. this.uiLabel16.Location = new System.Drawing.Point(9, 59);
  1551. this.uiLabel16.Name = "uiLabel16";
  1552. this.uiLabel16.Size = new System.Drawing.Size(63, 23);
  1553. this.uiLabel16.TabIndex = 2;
  1554. this.uiLabel16.Text = "险种类型";
  1555. this.uiLabel16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1556. this.uiLabel16.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1557. //
  1558. // uiGroupBox8
  1559. //
  1560. this.uiGroupBox8.Controls.Add(this.uiButton1);
  1561. this.uiGroupBox8.Controls.Add(this.uiButton2);
  1562. this.uiGroupBox8.Controls.Add(this.uiButton3);
  1563. this.uiGroupBox8.Dock = System.Windows.Forms.DockStyle.Bottom;
  1564. this.uiGroupBox8.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1565. this.uiGroupBox8.Location = new System.Drawing.Point(0, 653);
  1566. this.uiGroupBox8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1567. this.uiGroupBox8.MinimumSize = new System.Drawing.Size(1, 1);
  1568. this.uiGroupBox8.Name = "uiGroupBox8";
  1569. this.uiGroupBox8.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1570. this.uiGroupBox8.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  1571. this.uiGroupBox8.RectSize = 2;
  1572. this.uiGroupBox8.Size = new System.Drawing.Size(217, 113);
  1573. this.uiGroupBox8.TabIndex = 22;
  1574. this.uiGroupBox8.Text = null;
  1575. this.uiGroupBox8.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1576. this.uiGroupBox8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1577. //
  1578. // uiButton1
  1579. //
  1580. this.uiButton1.Cursor = System.Windows.Forms.Cursors.Hand;
  1581. this.uiButton1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1582. this.uiButton1.Location = new System.Drawing.Point(45, 75);
  1583. this.uiButton1.MinimumSize = new System.Drawing.Size(1, 1);
  1584. this.uiButton1.Name = "uiButton1";
  1585. this.uiButton1.Size = new System.Drawing.Size(100, 20);
  1586. this.uiButton1.TabIndex = 2;
  1587. this.uiButton1.Text = "退出";
  1588. this.uiButton1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1589. this.uiButton1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1590. this.uiButton1.Click += new System.EventHandler(this.btnClose_Click);
  1591. //
  1592. // uiButton2
  1593. //
  1594. this.uiButton2.Cursor = System.Windows.Forms.Cursors.Hand;
  1595. this.uiButton2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1596. this.uiButton2.Location = new System.Drawing.Point(45, 44);
  1597. this.uiButton2.MinimumSize = new System.Drawing.Size(1, 1);
  1598. this.uiButton2.Name = "uiButton2";
  1599. this.uiButton2.Size = new System.Drawing.Size(100, 20);
  1600. this.uiButton2.TabIndex = 1;
  1601. this.uiButton2.Text = "批量对账";
  1602. this.uiButton2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1603. this.uiButton2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1604. this.uiButton2.Click += new System.EventHandler(this.uiButton2_Click);
  1605. //
  1606. // uiButton3
  1607. //
  1608. this.uiButton3.Cursor = System.Windows.Forms.Cursors.Hand;
  1609. this.uiButton3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1610. this.uiButton3.Location = new System.Drawing.Point(45, 13);
  1611. this.uiButton3.MinimumSize = new System.Drawing.Size(1, 1);
  1612. this.uiButton3.Name = "uiButton3";
  1613. this.uiButton3.Size = new System.Drawing.Size(100, 20);
  1614. this.uiButton3.TabIndex = 0;
  1615. this.uiButton3.Text = "查询结算数据";
  1616. this.uiButton3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1617. this.uiButton3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1618. this.uiButton3.Click += new System.EventHandler(this.uiButton3_Click);
  1619. //
  1620. // uiGroupBox9
  1621. //
  1622. this.uiGroupBox9.Controls.Add(this.uiSymbolButton1);
  1623. this.uiGroupBox9.Controls.Add(this.uiSymbolButton2);
  1624. this.uiGroupBox9.Controls.Add(this.dpED_O);
  1625. this.uiGroupBox9.Controls.Add(this.dpST_O);
  1626. this.uiGroupBox9.Dock = System.Windows.Forms.DockStyle.Top;
  1627. this.uiGroupBox9.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1628. this.uiGroupBox9.Location = new System.Drawing.Point(0, 0);
  1629. this.uiGroupBox9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1630. this.uiGroupBox9.MinimumSize = new System.Drawing.Size(1, 1);
  1631. this.uiGroupBox9.Name = "uiGroupBox9";
  1632. this.uiGroupBox9.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1633. this.uiGroupBox9.Size = new System.Drawing.Size(217, 112);
  1634. this.uiGroupBox9.TabIndex = 21;
  1635. this.uiGroupBox9.Text = "起止时间";
  1636. this.uiGroupBox9.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1637. this.uiGroupBox9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1638. //
  1639. // uiSymbolButton1
  1640. //
  1641. this.uiSymbolButton1.Cursor = System.Windows.Forms.Cursors.Hand;
  1642. this.uiSymbolButton1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1643. this.uiSymbolButton1.Location = new System.Drawing.Point(160, 3);
  1644. this.uiSymbolButton1.MinimumSize = new System.Drawing.Size(1, 1);
  1645. this.uiSymbolButton1.Name = "uiSymbolButton1";
  1646. this.uiSymbolButton1.Size = new System.Drawing.Size(38, 23);
  1647. this.uiSymbolButton1.Symbol = 61544;
  1648. this.uiSymbolButton1.TabIndex = 3;
  1649. this.uiSymbolButton1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1650. this.uiSymbolButton1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1651. //
  1652. // uiSymbolButton2
  1653. //
  1654. this.uiSymbolButton2.Cursor = System.Windows.Forms.Cursors.Hand;
  1655. this.uiSymbolButton2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1656. this.uiSymbolButton2.Location = new System.Drawing.Point(116, 3);
  1657. this.uiSymbolButton2.MinimumSize = new System.Drawing.Size(1, 1);
  1658. this.uiSymbolButton2.Name = "uiSymbolButton2";
  1659. this.uiSymbolButton2.Size = new System.Drawing.Size(38, 23);
  1660. this.uiSymbolButton2.Symbol = 61543;
  1661. this.uiSymbolButton2.TabIndex = 2;
  1662. this.uiSymbolButton2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1663. this.uiSymbolButton2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1664. this.uiSymbolButton2.Click += new System.EventHandler(this.uiSymbolButton2_Click);
  1665. //
  1666. // dpED_O
  1667. //
  1668. this.dpED_O.FillColor = System.Drawing.Color.White;
  1669. this.dpED_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1670. this.dpED_O.Location = new System.Drawing.Point(13, 70);
  1671. this.dpED_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1672. this.dpED_O.MaxLength = 19;
  1673. this.dpED_O.MinimumSize = new System.Drawing.Size(63, 0);
  1674. this.dpED_O.Name = "dpED_O";
  1675. this.dpED_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1676. this.dpED_O.Size = new System.Drawing.Size(200, 29);
  1677. this.dpED_O.SymbolDropDown = 61555;
  1678. this.dpED_O.SymbolNormal = 61555;
  1679. this.dpED_O.TabIndex = 1;
  1680. this.dpED_O.Text = "2022-06-01 23:59:59";
  1681. this.dpED_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1682. this.dpED_O.Value = new System.DateTime(2022, 6, 1, 23, 59, 59, 0);
  1683. this.dpED_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1684. //
  1685. // dpST_O
  1686. //
  1687. this.dpST_O.FillColor = System.Drawing.Color.White;
  1688. this.dpST_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1689. this.dpST_O.Location = new System.Drawing.Point(13, 31);
  1690. this.dpST_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1691. this.dpST_O.MaxLength = 19;
  1692. this.dpST_O.MinimumSize = new System.Drawing.Size(63, 0);
  1693. this.dpST_O.Name = "dpST_O";
  1694. this.dpST_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1695. this.dpST_O.Size = new System.Drawing.Size(200, 29);
  1696. this.dpST_O.SymbolDropDown = 61555;
  1697. this.dpST_O.SymbolNormal = 61555;
  1698. this.dpST_O.TabIndex = 0;
  1699. this.dpST_O.Text = "2022-06-01 00:00:00";
  1700. this.dpST_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1701. this.dpST_O.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
  1702. this.dpST_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1703. //
  1704. // tp_Clear
  1705. //
  1706. this.tp_Clear.Controls.Add(this.uiPanel4);
  1707. this.tp_Clear.Controls.Add(this.uiPanel3);
  1708. this.tp_Clear.Location = new System.Drawing.Point(0, 30);
  1709. this.tp_Clear.Name = "tp_Clear";
  1710. this.tp_Clear.Size = new System.Drawing.Size(1201, 766);
  1711. this.tp_Clear.TabIndex = 1;
  1712. this.tp_Clear.Text = "清算汇总";
  1713. this.tp_Clear.UseVisualStyleBackColor = true;
  1714. //
  1715. // uiPanel4
  1716. //
  1717. this.uiPanel4.Controls.Add(this.uiTabControl4);
  1718. this.uiPanel4.Controls.Add(this.uiTabControl5);
  1719. this.uiPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
  1720. this.uiPanel4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1721. this.uiPanel4.Location = new System.Drawing.Point(224, 0);
  1722. this.uiPanel4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1723. this.uiPanel4.MinimumSize = new System.Drawing.Size(1, 1);
  1724. this.uiPanel4.Name = "uiPanel4";
  1725. this.uiPanel4.Size = new System.Drawing.Size(977, 766);
  1726. this.uiPanel4.TabIndex = 4;
  1727. this.uiPanel4.Text = null;
  1728. this.uiPanel4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1729. this.uiPanel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1730. //
  1731. // uiTabControl4
  1732. //
  1733. this.uiTabControl4.Controls.Add(this.tabPage9);
  1734. this.uiTabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
  1735. this.uiTabControl4.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1736. this.uiTabControl4.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1737. this.uiTabControl4.ItemSize = new System.Drawing.Size(150, 25);
  1738. this.uiTabControl4.Location = new System.Drawing.Point(0, 424);
  1739. this.uiTabControl4.MainPage = "";
  1740. this.uiTabControl4.Name = "uiTabControl4";
  1741. this.uiTabControl4.SelectedIndex = 0;
  1742. this.uiTabControl4.Size = new System.Drawing.Size(977, 342);
  1743. this.uiTabControl4.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  1744. this.uiTabControl4.TabIndex = 1;
  1745. this.uiTabControl4.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1746. this.uiTabControl4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1747. //
  1748. // tabPage9
  1749. //
  1750. this.tabPage9.Controls.Add(this.dgvHisSettlRec_2);
  1751. this.tabPage9.Location = new System.Drawing.Point(0, 25);
  1752. this.tabPage9.Name = "tabPage9";
  1753. this.tabPage9.Size = new System.Drawing.Size(977, 317);
  1754. this.tabPage9.TabIndex = 0;
  1755. this.tabPage9.Text = "HIS结算记录";
  1756. this.tabPage9.UseVisualStyleBackColor = true;
  1757. //
  1758. // dgvHisSettlRec_2
  1759. //
  1760. this.dgvHisSettlRec_2.AllowUserToAddRows = false;
  1761. dataGridViewCellStyle21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1762. this.dgvHisSettlRec_2.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle21;
  1763. this.dgvHisSettlRec_2.BackgroundColor = System.Drawing.Color.White;
  1764. this.dgvHisSettlRec_2.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1765. dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1766. dataGridViewCellStyle22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1767. dataGridViewCellStyle22.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1768. dataGridViewCellStyle22.ForeColor = System.Drawing.Color.White;
  1769. dataGridViewCellStyle22.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1770. dataGridViewCellStyle22.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1771. dataGridViewCellStyle22.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1772. this.dgvHisSettlRec_2.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle22;
  1773. this.dgvHisSettlRec_2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1774. dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1775. dataGridViewCellStyle23.BackColor = System.Drawing.SystemColors.Window;
  1776. dataGridViewCellStyle23.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1777. dataGridViewCellStyle23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1778. dataGridViewCellStyle23.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1779. dataGridViewCellStyle23.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1780. dataGridViewCellStyle23.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1781. this.dgvHisSettlRec_2.DefaultCellStyle = dataGridViewCellStyle23;
  1782. this.dgvHisSettlRec_2.Dock = System.Windows.Forms.DockStyle.Fill;
  1783. this.dgvHisSettlRec_2.EnableHeadersVisualStyles = false;
  1784. this.dgvHisSettlRec_2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1785. this.dgvHisSettlRec_2.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1786. this.dgvHisSettlRec_2.Location = new System.Drawing.Point(0, 0);
  1787. this.dgvHisSettlRec_2.Name = "dgvHisSettlRec_2";
  1788. this.dgvHisSettlRec_2.ReadOnly = true;
  1789. dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1790. dataGridViewCellStyle24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1791. dataGridViewCellStyle24.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1792. dataGridViewCellStyle24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1793. dataGridViewCellStyle24.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1794. dataGridViewCellStyle24.SelectionForeColor = System.Drawing.Color.White;
  1795. dataGridViewCellStyle24.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1796. this.dgvHisSettlRec_2.RowHeadersDefaultCellStyle = dataGridViewCellStyle24;
  1797. this.dgvHisSettlRec_2.RowHeadersWidth = 51;
  1798. dataGridViewCellStyle25.BackColor = System.Drawing.Color.White;
  1799. dataGridViewCellStyle25.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1800. this.dgvHisSettlRec_2.RowsDefaultCellStyle = dataGridViewCellStyle25;
  1801. this.dgvHisSettlRec_2.RowTemplate.Height = 23;
  1802. this.dgvHisSettlRec_2.SelectedIndex = -1;
  1803. this.dgvHisSettlRec_2.Size = new System.Drawing.Size(977, 317);
  1804. this.dgvHisSettlRec_2.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1805. this.dgvHisSettlRec_2.TabIndex = 1;
  1806. this.dgvHisSettlRec_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1807. //
  1808. // uiTabControl5
  1809. //
  1810. this.uiTabControl5.Controls.Add(this.tabPage12);
  1811. this.uiTabControl5.Dock = System.Windows.Forms.DockStyle.Top;
  1812. this.uiTabControl5.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1813. this.uiTabControl5.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1814. this.uiTabControl5.ItemSize = new System.Drawing.Size(150, 25);
  1815. this.uiTabControl5.Location = new System.Drawing.Point(0, 0);
  1816. this.uiTabControl5.MainPage = "";
  1817. this.uiTabControl5.Name = "uiTabControl5";
  1818. this.uiTabControl5.SelectedIndex = 0;
  1819. this.uiTabControl5.Size = new System.Drawing.Size(977, 424);
  1820. this.uiTabControl5.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  1821. this.uiTabControl5.TabIndex = 0;
  1822. this.uiTabControl5.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1823. this.uiTabControl5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1824. //
  1825. // tabPage12
  1826. //
  1827. this.tabPage12.Controls.Add(this.dgvClearingSum);
  1828. this.tabPage12.Location = new System.Drawing.Point(0, 25);
  1829. this.tabPage12.Name = "tabPage12";
  1830. this.tabPage12.Size = new System.Drawing.Size(977, 399);
  1831. this.tabPage12.TabIndex = 0;
  1832. this.tabPage12.Text = "结算汇总数据";
  1833. this.tabPage12.UseVisualStyleBackColor = true;
  1834. //
  1835. // dgvClearingSum
  1836. //
  1837. this.dgvClearingSum.AllowUserToAddRows = false;
  1838. dataGridViewCellStyle26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1839. this.dgvClearingSum.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle26;
  1840. this.dgvClearingSum.BackgroundColor = System.Drawing.Color.White;
  1841. this.dgvClearingSum.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
  1842. dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1843. dataGridViewCellStyle27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1844. dataGridViewCellStyle27.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1845. dataGridViewCellStyle27.ForeColor = System.Drawing.Color.White;
  1846. dataGridViewCellStyle27.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1847. dataGridViewCellStyle27.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1848. dataGridViewCellStyle27.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1849. this.dgvClearingSum.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle27;
  1850. this.dgvClearingSum.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1851. this.dgvClearingSum.ContextMenuStrip = this.cmsClearing;
  1852. dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1853. dataGridViewCellStyle28.BackColor = System.Drawing.SystemColors.Window;
  1854. dataGridViewCellStyle28.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1855. dataGridViewCellStyle28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1856. dataGridViewCellStyle28.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1857. dataGridViewCellStyle28.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1858. dataGridViewCellStyle28.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1859. this.dgvClearingSum.DefaultCellStyle = dataGridViewCellStyle28;
  1860. this.dgvClearingSum.Dock = System.Windows.Forms.DockStyle.Fill;
  1861. this.dgvClearingSum.EnableHeadersVisualStyles = false;
  1862. this.dgvClearingSum.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1863. this.dgvClearingSum.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1864. this.dgvClearingSum.Location = new System.Drawing.Point(0, 0);
  1865. this.dgvClearingSum.Name = "dgvClearingSum";
  1866. this.dgvClearingSum.ReadOnly = true;
  1867. dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1868. dataGridViewCellStyle29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1869. dataGridViewCellStyle29.Font = new System.Drawing.Font("微软雅黑", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1870. dataGridViewCellStyle29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1871. dataGridViewCellStyle29.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1872. dataGridViewCellStyle29.SelectionForeColor = System.Drawing.Color.White;
  1873. dataGridViewCellStyle29.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1874. this.dgvClearingSum.RowHeadersDefaultCellStyle = dataGridViewCellStyle29;
  1875. this.dgvClearingSum.RowHeadersWidth = 30;
  1876. this.dgvClearingSum.RowHeight = 30;
  1877. dataGridViewCellStyle30.BackColor = System.Drawing.Color.White;
  1878. dataGridViewCellStyle30.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1879. this.dgvClearingSum.RowsDefaultCellStyle = dataGridViewCellStyle30;
  1880. this.dgvClearingSum.RowTemplate.Height = 30;
  1881. this.dgvClearingSum.SelectedIndex = -1;
  1882. this.dgvClearingSum.Size = new System.Drawing.Size(977, 399);
  1883. this.dgvClearingSum.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1884. this.dgvClearingSum.TabIndex = 0;
  1885. this.dgvClearingSum.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1886. //
  1887. // cmsClearing
  1888. //
  1889. this.cmsClearing.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1890. this.cmsClearing.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1891. this.cmsClearing.ImageScalingSize = new System.Drawing.Size(20, 20);
  1892. this.cmsClearing.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  1893. this.tmsClearing_2,
  1894. this.tmsClearingBack2,
  1895. this.tmsHisSettlRecord_2});
  1896. this.cmsClearing.Name = "cmsClearing";
  1897. this.cmsClearing.Size = new System.Drawing.Size(203, 82);
  1898. this.cmsClearing.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1899. this.cmsClearing.Opening += new System.ComponentModel.CancelEventHandler(this.cmsClearing_Opening);
  1900. //
  1901. // tmsClearing_2
  1902. //
  1903. this.tmsClearing_2.Name = "tmsClearing_2";
  1904. this.tmsClearing_2.Size = new System.Drawing.Size(202, 26);
  1905. this.tmsClearing_2.Text = "单条清算";
  1906. this.tmsClearing_2.Click += new System.EventHandler(this.tmsClearing_2_Click);
  1907. //
  1908. // tmsClearingBack2
  1909. //
  1910. this.tmsClearingBack2.Name = "tmsClearingBack2";
  1911. this.tmsClearingBack2.Size = new System.Drawing.Size(202, 26);
  1912. this.tmsClearingBack2.Text = "单条清算撤销";
  1913. this.tmsClearingBack2.Click += new System.EventHandler(this.tmsClearingBack2_Click);
  1914. //
  1915. // tmsHisSettlRecord_2
  1916. //
  1917. this.tmsHisSettlRecord_2.Name = "tmsHisSettlRecord_2";
  1918. this.tmsHisSettlRecord_2.Size = new System.Drawing.Size(202, 26);
  1919. this.tmsHisSettlRecord_2.Text = "查看HIS结算记录";
  1920. //
  1921. // uiPanel3
  1922. //
  1923. this.uiPanel3.Controls.Add(this.uiButton9);
  1924. this.uiPanel3.Controls.Add(this.rg_ClearType);
  1925. this.uiPanel3.Controls.Add(this.uiGroupBox3);
  1926. this.uiPanel3.Controls.Add(this.uiGroupBox2);
  1927. this.uiPanel3.Controls.Add(this.uiGroupBox4);
  1928. this.uiPanel3.Dock = System.Windows.Forms.DockStyle.Left;
  1929. this.uiPanel3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1930. this.uiPanel3.Location = new System.Drawing.Point(0, 0);
  1931. this.uiPanel3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1932. this.uiPanel3.MinimumSize = new System.Drawing.Size(1, 1);
  1933. this.uiPanel3.Name = "uiPanel3";
  1934. this.uiPanel3.Size = new System.Drawing.Size(224, 766);
  1935. this.uiPanel3.TabIndex = 3;
  1936. this.uiPanel3.Text = null;
  1937. this.uiPanel3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1938. this.uiPanel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1939. //
  1940. // uiButton9
  1941. //
  1942. this.uiButton9.Cursor = System.Windows.Forms.Cursors.Hand;
  1943. this.uiButton9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1944. this.uiButton9.Location = new System.Drawing.Point(33, 582);
  1945. this.uiButton9.MinimumSize = new System.Drawing.Size(1, 1);
  1946. this.uiButton9.Name = "uiButton9";
  1947. this.uiButton9.Size = new System.Drawing.Size(158, 35);
  1948. this.uiButton9.TabIndex = 2;
  1949. this.uiButton9.Text = "清算打印";
  1950. this.uiButton9.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1951. this.uiButton9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1952. this.uiButton9.Click += new System.EventHandler(this.uiButton9_Click);
  1953. //
  1954. // rg_ClearType
  1955. //
  1956. this.rg_ClearType.Dock = System.Windows.Forms.DockStyle.Top;
  1957. this.rg_ClearType.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1958. this.rg_ClearType.Items.AddRange(new object[] {
  1959. "本地清算",
  1960. "异地清算"});
  1961. this.rg_ClearType.Location = new System.Drawing.Point(0, 405);
  1962. this.rg_ClearType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1963. this.rg_ClearType.MinimumSize = new System.Drawing.Size(1, 1);
  1964. this.rg_ClearType.Name = "rg_ClearType";
  1965. this.rg_ClearType.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1966. this.rg_ClearType.Size = new System.Drawing.Size(224, 107);
  1967. this.rg_ClearType.TabIndex = 26;
  1968. this.rg_ClearType.Text = "清算区域选择";
  1969. this.rg_ClearType.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1970. this.rg_ClearType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1971. //
  1972. // uiGroupBox3
  1973. //
  1974. this.uiGroupBox3.Controls.Add(this.btnClose_2);
  1975. this.uiGroupBox3.Controls.Add(this.btnPatchClr);
  1976. this.uiGroupBox3.Controls.Add(this.btnQueryClrSum);
  1977. this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
  1978. this.uiGroupBox3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1979. this.uiGroupBox3.Location = new System.Drawing.Point(0, 625);
  1980. this.uiGroupBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1981. this.uiGroupBox3.MinimumSize = new System.Drawing.Size(1, 1);
  1982. this.uiGroupBox3.Name = "uiGroupBox3";
  1983. this.uiGroupBox3.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1984. this.uiGroupBox3.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  1985. this.uiGroupBox3.RectSize = 2;
  1986. this.uiGroupBox3.Size = new System.Drawing.Size(224, 141);
  1987. this.uiGroupBox3.TabIndex = 25;
  1988. this.uiGroupBox3.Text = null;
  1989. this.uiGroupBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1990. this.uiGroupBox3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1991. //
  1992. // btnClose_2
  1993. //
  1994. this.btnClose_2.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  1995. this.btnClose_2.Cursor = System.Windows.Forms.Cursors.Hand;
  1996. this.btnClose_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1997. this.btnClose_2.Location = new System.Drawing.Point(33, 100);
  1998. this.btnClose_2.MinimumSize = new System.Drawing.Size(1, 1);
  1999. this.btnClose_2.Name = "btnClose_2";
  2000. this.btnClose_2.Size = new System.Drawing.Size(158, 30);
  2001. this.btnClose_2.TabIndex = 2;
  2002. this.btnClose_2.Text = "退出";
  2003. this.btnClose_2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2004. this.btnClose_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2005. this.btnClose_2.Click += new System.EventHandler(this.btnClose_Click);
  2006. //
  2007. // btnPatchClr
  2008. //
  2009. this.btnPatchClr.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  2010. this.btnPatchClr.Cursor = System.Windows.Forms.Cursors.Hand;
  2011. this.btnPatchClr.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2012. this.btnPatchClr.Location = new System.Drawing.Point(33, 61);
  2013. this.btnPatchClr.MinimumSize = new System.Drawing.Size(1, 1);
  2014. this.btnPatchClr.Name = "btnPatchClr";
  2015. this.btnPatchClr.Size = new System.Drawing.Size(158, 30);
  2016. this.btnPatchClr.TabIndex = 1;
  2017. this.btnPatchClr.Text = "批量清算";
  2018. this.btnPatchClr.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2019. this.btnPatchClr.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2020. this.btnPatchClr.Click += new System.EventHandler(this.btnPatchClr_Click);
  2021. //
  2022. // btnQueryClrSum
  2023. //
  2024. this.btnQueryClrSum.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  2025. this.btnQueryClrSum.Cursor = System.Windows.Forms.Cursors.Hand;
  2026. this.btnQueryClrSum.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2027. this.btnQueryClrSum.Location = new System.Drawing.Point(33, 22);
  2028. this.btnQueryClrSum.MinimumSize = new System.Drawing.Size(1, 1);
  2029. this.btnQueryClrSum.Name = "btnQueryClrSum";
  2030. this.btnQueryClrSum.Size = new System.Drawing.Size(158, 30);
  2031. this.btnQueryClrSum.TabIndex = 0;
  2032. this.btnQueryClrSum.Text = "查询汇总数据";
  2033. this.btnQueryClrSum.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2034. this.btnQueryClrSum.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2035. this.btnQueryClrSum.Click += new System.EventHandler(this.btnQueryClrSum_Click);
  2036. //
  2037. // uiGroupBox2
  2038. //
  2039. this.uiGroupBox2.Controls.Add(this.tbInsuPlc);
  2040. this.uiGroupBox2.Controls.Add(this.uiLabel18);
  2041. this.uiGroupBox2.Controls.Add(this.cbOtherPlaceFlag);
  2042. this.uiGroupBox2.Controls.Add(this.uiLabel19);
  2043. this.uiGroupBox2.Controls.Add(this.cbClrWay_2);
  2044. this.uiGroupBox2.Controls.Add(this.uiLabel11);
  2045. this.uiGroupBox2.Controls.Add(this.cbInterface_2);
  2046. this.uiGroupBox2.Controls.Add(this.tbSettlOption_2);
  2047. this.uiGroupBox2.Controls.Add(this.cbValid_2);
  2048. this.uiGroupBox2.Controls.Add(this.uiLabel6);
  2049. this.uiGroupBox2.Controls.Add(this.uiLabel7);
  2050. this.uiGroupBox2.Controls.Add(this.cbClrType_2);
  2051. this.uiGroupBox2.Controls.Add(this.uiLabel8);
  2052. this.uiGroupBox2.Controls.Add(this.cbInsutype_2);
  2053. this.uiGroupBox2.Controls.Add(this.uiLabel9);
  2054. this.uiGroupBox2.Controls.Add(this.uiLabel10);
  2055. this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
  2056. this.uiGroupBox2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2057. this.uiGroupBox2.Location = new System.Drawing.Point(0, 112);
  2058. this.uiGroupBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2059. this.uiGroupBox2.MinimumSize = new System.Drawing.Size(1, 1);
  2060. this.uiGroupBox2.Name = "uiGroupBox2";
  2061. this.uiGroupBox2.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  2062. this.uiGroupBox2.Size = new System.Drawing.Size(224, 293);
  2063. this.uiGroupBox2.TabIndex = 24;
  2064. this.uiGroupBox2.TabStop = false;
  2065. this.uiGroupBox2.Text = "条件设置";
  2066. this.uiGroupBox2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2067. this.uiGroupBox2.TitleTop = 10;
  2068. this.uiGroupBox2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2069. //
  2070. // tbInsuPlc
  2071. //
  2072. this.tbInsuPlc.Cursor = System.Windows.Forms.Cursors.IBeam;
  2073. this.tbInsuPlc.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2074. this.tbInsuPlc.Location = new System.Drawing.Point(80, 254);
  2075. this.tbInsuPlc.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2076. this.tbInsuPlc.MinimumSize = new System.Drawing.Size(1, 16);
  2077. this.tbInsuPlc.Name = "tbInsuPlc";
  2078. this.tbInsuPlc.ShowText = false;
  2079. this.tbInsuPlc.Size = new System.Drawing.Size(130, 25);
  2080. this.tbInsuPlc.TabIndex = 17;
  2081. this.tbInsuPlc.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2082. this.tbInsuPlc.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2083. //
  2084. // uiLabel18
  2085. //
  2086. this.uiLabel18.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2087. this.uiLabel18.Location = new System.Drawing.Point(10, 255);
  2088. this.uiLabel18.Name = "uiLabel18";
  2089. this.uiLabel18.Size = new System.Drawing.Size(63, 23);
  2090. this.uiLabel18.TabIndex = 16;
  2091. this.uiLabel18.Text = "参保地";
  2092. this.uiLabel18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2093. this.uiLabel18.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2094. //
  2095. // cbOtherPlaceFlag
  2096. //
  2097. this.cbOtherPlaceFlag.DataSource = null;
  2098. this.cbOtherPlaceFlag.FillColor = System.Drawing.Color.White;
  2099. this.cbOtherPlaceFlag.FilterMaxCount = 50;
  2100. this.cbOtherPlaceFlag.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2101. this.cbOtherPlaceFlag.ItemHeight = 20;
  2102. this.cbOtherPlaceFlag.Items.AddRange(new object[] {
  2103. "全部",
  2104. "是",
  2105. "否"});
  2106. this.cbOtherPlaceFlag.Location = new System.Drawing.Point(80, 221);
  2107. this.cbOtherPlaceFlag.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2108. this.cbOtherPlaceFlag.MinimumSize = new System.Drawing.Size(63, 0);
  2109. this.cbOtherPlaceFlag.Name = "cbOtherPlaceFlag";
  2110. this.cbOtherPlaceFlag.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2111. this.cbOtherPlaceFlag.Size = new System.Drawing.Size(130, 25);
  2112. this.cbOtherPlaceFlag.TabIndex = 15;
  2113. this.cbOtherPlaceFlag.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2114. this.cbOtherPlaceFlag.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2115. //
  2116. // uiLabel19
  2117. //
  2118. this.uiLabel19.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2119. this.uiLabel19.Location = new System.Drawing.Point(9, 228);
  2120. this.uiLabel19.Name = "uiLabel19";
  2121. this.uiLabel19.Size = new System.Drawing.Size(63, 23);
  2122. this.uiLabel19.TabIndex = 14;
  2123. this.uiLabel19.Text = "异地标志";
  2124. this.uiLabel19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2125. this.uiLabel19.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2126. //
  2127. // cbClrWay_2
  2128. //
  2129. this.cbClrWay_2.DataSource = null;
  2130. this.cbClrWay_2.FillColor = System.Drawing.Color.White;
  2131. this.cbClrWay_2.FilterMaxCount = 50;
  2132. this.cbClrWay_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2133. this.cbClrWay_2.ItemHeight = 20;
  2134. this.cbClrWay_2.Items.AddRange(new object[] {
  2135. "1",
  2136. "2"});
  2137. this.cbClrWay_2.Location = new System.Drawing.Point(80, 188);
  2138. this.cbClrWay_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2139. this.cbClrWay_2.MinimumSize = new System.Drawing.Size(63, 0);
  2140. this.cbClrWay_2.Name = "cbClrWay_2";
  2141. this.cbClrWay_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2142. this.cbClrWay_2.Size = new System.Drawing.Size(130, 25);
  2143. this.cbClrWay_2.TabIndex = 13;
  2144. this.cbClrWay_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2145. this.cbClrWay_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2146. //
  2147. // uiLabel11
  2148. //
  2149. this.uiLabel11.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2150. this.uiLabel11.Location = new System.Drawing.Point(9, 193);
  2151. this.uiLabel11.Name = "uiLabel11";
  2152. this.uiLabel11.Size = new System.Drawing.Size(63, 23);
  2153. this.uiLabel11.TabIndex = 12;
  2154. this.uiLabel11.Text = "清算方式";
  2155. this.uiLabel11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2156. this.uiLabel11.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2157. //
  2158. // cbInterface_2
  2159. //
  2160. this.cbInterface_2.DataSource = null;
  2161. this.cbInterface_2.FillColor = System.Drawing.Color.White;
  2162. this.cbInterface_2.FilterMaxCount = 50;
  2163. this.cbInterface_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2164. this.cbInterface_2.ItemHeight = 20;
  2165. this.cbInterface_2.Items.AddRange(new object[] {
  2166. "1",
  2167. "2"});
  2168. this.cbInterface_2.Location = new System.Drawing.Point(80, 23);
  2169. this.cbInterface_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2170. this.cbInterface_2.MinimumSize = new System.Drawing.Size(63, 0);
  2171. this.cbInterface_2.Name = "cbInterface_2";
  2172. this.cbInterface_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2173. this.cbInterface_2.Size = new System.Drawing.Size(130, 25);
  2174. this.cbInterface_2.TabIndex = 11;
  2175. this.cbInterface_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2176. this.cbInterface_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2177. //
  2178. // tbSettlOption_2
  2179. //
  2180. this.tbSettlOption_2.Cursor = System.Windows.Forms.Cursors.IBeam;
  2181. this.tbSettlOption_2.Enabled = false;
  2182. this.tbSettlOption_2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2183. this.tbSettlOption_2.Location = new System.Drawing.Point(80, 122);
  2184. this.tbSettlOption_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2185. this.tbSettlOption_2.MinimumSize = new System.Drawing.Size(1, 16);
  2186. this.tbSettlOption_2.Name = "tbSettlOption_2";
  2187. this.tbSettlOption_2.ShowText = false;
  2188. this.tbSettlOption_2.Size = new System.Drawing.Size(130, 25);
  2189. this.tbSettlOption_2.TabIndex = 10;
  2190. this.tbSettlOption_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2191. this.tbSettlOption_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2192. //
  2193. // cbValid_2
  2194. //
  2195. this.cbValid_2.DataSource = null;
  2196. this.cbValid_2.FillColor = System.Drawing.Color.White;
  2197. this.cbValid_2.FilterMaxCount = 50;
  2198. this.cbValid_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2199. this.cbValid_2.ItemHeight = 20;
  2200. this.cbValid_2.Items.AddRange(new object[] {
  2201. "全部",
  2202. "有效",
  2203. "无效"});
  2204. this.cbValid_2.Location = new System.Drawing.Point(80, 155);
  2205. this.cbValid_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2206. this.cbValid_2.MinimumSize = new System.Drawing.Size(63, 0);
  2207. this.cbValid_2.Name = "cbValid_2";
  2208. this.cbValid_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2209. this.cbValid_2.Size = new System.Drawing.Size(130, 25);
  2210. this.cbValid_2.TabIndex = 9;
  2211. this.cbValid_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2212. this.cbValid_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2213. //
  2214. // uiLabel6
  2215. //
  2216. this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2217. this.uiLabel6.Location = new System.Drawing.Point(9, 158);
  2218. this.uiLabel6.Name = "uiLabel6";
  2219. this.uiLabel6.Size = new System.Drawing.Size(63, 23);
  2220. this.uiLabel6.TabIndex = 8;
  2221. this.uiLabel6.Text = "有效标志";
  2222. this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2223. this.uiLabel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2224. //
  2225. // uiLabel7
  2226. //
  2227. this.uiLabel7.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2228. this.uiLabel7.Location = new System.Drawing.Point(9, 125);
  2229. this.uiLabel7.Name = "uiLabel7";
  2230. this.uiLabel7.Size = new System.Drawing.Size(63, 23);
  2231. this.uiLabel7.TabIndex = 6;
  2232. this.uiLabel7.Text = "经办机构";
  2233. this.uiLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2234. this.uiLabel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2235. //
  2236. // cbClrType_2
  2237. //
  2238. this.cbClrType_2.DataSource = null;
  2239. this.cbClrType_2.FillColor = System.Drawing.Color.White;
  2240. this.cbClrType_2.FilterMaxCount = 50;
  2241. this.cbClrType_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2242. this.cbClrType_2.ItemHeight = 20;
  2243. this.cbClrType_2.Items.AddRange(new object[] {
  2244. "1",
  2245. "2"});
  2246. this.cbClrType_2.Location = new System.Drawing.Point(80, 89);
  2247. this.cbClrType_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2248. this.cbClrType_2.MinimumSize = new System.Drawing.Size(63, 0);
  2249. this.cbClrType_2.Name = "cbClrType_2";
  2250. this.cbClrType_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2251. this.cbClrType_2.Size = new System.Drawing.Size(130, 25);
  2252. this.cbClrType_2.TabIndex = 5;
  2253. this.cbClrType_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2254. this.cbClrType_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2255. //
  2256. // uiLabel8
  2257. //
  2258. this.uiLabel8.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2259. this.uiLabel8.Location = new System.Drawing.Point(9, 92);
  2260. this.uiLabel8.Name = "uiLabel8";
  2261. this.uiLabel8.Size = new System.Drawing.Size(63, 23);
  2262. this.uiLabel8.TabIndex = 4;
  2263. this.uiLabel8.Text = "清算类别";
  2264. this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2265. this.uiLabel8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2266. //
  2267. // cbInsutype_2
  2268. //
  2269. this.cbInsutype_2.DataSource = null;
  2270. this.cbInsutype_2.Enabled = false;
  2271. this.cbInsutype_2.FillColor = System.Drawing.Color.White;
  2272. this.cbInsutype_2.FilterMaxCount = 50;
  2273. this.cbInsutype_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2274. this.cbInsutype_2.ItemHeight = 20;
  2275. this.cbInsutype_2.Items.AddRange(new object[] {
  2276. "1",
  2277. "2"});
  2278. this.cbInsutype_2.Location = new System.Drawing.Point(80, 56);
  2279. this.cbInsutype_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2280. this.cbInsutype_2.MinimumSize = new System.Drawing.Size(63, 0);
  2281. this.cbInsutype_2.Name = "cbInsutype_2";
  2282. this.cbInsutype_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2283. this.cbInsutype_2.Size = new System.Drawing.Size(130, 25);
  2284. this.cbInsutype_2.TabIndex = 3;
  2285. this.cbInsutype_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2286. this.cbInsutype_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2287. //
  2288. // uiLabel9
  2289. //
  2290. this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2291. this.uiLabel9.Location = new System.Drawing.Point(9, 59);
  2292. this.uiLabel9.Name = "uiLabel9";
  2293. this.uiLabel9.Size = new System.Drawing.Size(63, 23);
  2294. this.uiLabel9.TabIndex = 2;
  2295. this.uiLabel9.Text = "险种类型";
  2296. this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2297. this.uiLabel9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2298. //
  2299. // uiLabel10
  2300. //
  2301. this.uiLabel10.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2302. this.uiLabel10.Location = new System.Drawing.Point(9, 26);
  2303. this.uiLabel10.Name = "uiLabel10";
  2304. this.uiLabel10.Size = new System.Drawing.Size(63, 23);
  2305. this.uiLabel10.TabIndex = 0;
  2306. this.uiLabel10.Text = "接口目录";
  2307. this.uiLabel10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2308. this.uiLabel10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2309. //
  2310. // uiGroupBox4
  2311. //
  2312. this.uiGroupBox4.Controls.Add(this.btnReduceMonth);
  2313. this.uiGroupBox4.Controls.Add(this.btnAddMonth);
  2314. this.uiGroupBox4.Controls.Add(this.dpED_2);
  2315. this.uiGroupBox4.Controls.Add(this.dpST_2);
  2316. this.uiGroupBox4.Dock = System.Windows.Forms.DockStyle.Top;
  2317. this.uiGroupBox4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2318. this.uiGroupBox4.Location = new System.Drawing.Point(0, 0);
  2319. this.uiGroupBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2320. this.uiGroupBox4.MinimumSize = new System.Drawing.Size(1, 1);
  2321. this.uiGroupBox4.Name = "uiGroupBox4";
  2322. this.uiGroupBox4.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  2323. this.uiGroupBox4.Size = new System.Drawing.Size(224, 112);
  2324. this.uiGroupBox4.TabIndex = 21;
  2325. this.uiGroupBox4.Text = "起止时间";
  2326. this.uiGroupBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2327. this.uiGroupBox4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2328. //
  2329. // btnReduceMonth
  2330. //
  2331. this.btnReduceMonth.Cursor = System.Windows.Forms.Cursors.Hand;
  2332. this.btnReduceMonth.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2333. this.btnReduceMonth.Location = new System.Drawing.Point(160, 3);
  2334. this.btnReduceMonth.MinimumSize = new System.Drawing.Size(1, 1);
  2335. this.btnReduceMonth.Name = "btnReduceMonth";
  2336. this.btnReduceMonth.Size = new System.Drawing.Size(38, 23);
  2337. this.btnReduceMonth.Symbol = 61544;
  2338. this.btnReduceMonth.TabIndex = 3;
  2339. this.btnReduceMonth.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2340. this.btnReduceMonth.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2341. this.btnReduceMonth.Click += new System.EventHandler(this.btnReduceMonth_Click);
  2342. //
  2343. // btnAddMonth
  2344. //
  2345. this.btnAddMonth.Cursor = System.Windows.Forms.Cursors.Hand;
  2346. this.btnAddMonth.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2347. this.btnAddMonth.Location = new System.Drawing.Point(116, 3);
  2348. this.btnAddMonth.MinimumSize = new System.Drawing.Size(1, 1);
  2349. this.btnAddMonth.Name = "btnAddMonth";
  2350. this.btnAddMonth.Size = new System.Drawing.Size(38, 23);
  2351. this.btnAddMonth.Symbol = 61543;
  2352. this.btnAddMonth.TabIndex = 2;
  2353. this.btnAddMonth.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2354. this.btnAddMonth.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2355. this.btnAddMonth.Click += new System.EventHandler(this.btnAddMonth_Click);
  2356. //
  2357. // dpED_2
  2358. //
  2359. this.dpED_2.FillColor = System.Drawing.Color.White;
  2360. this.dpED_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2361. this.dpED_2.Location = new System.Drawing.Point(13, 70);
  2362. this.dpED_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2363. this.dpED_2.MaxLength = 19;
  2364. this.dpED_2.MinimumSize = new System.Drawing.Size(63, 0);
  2365. this.dpED_2.Name = "dpED_2";
  2366. this.dpED_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2367. this.dpED_2.Size = new System.Drawing.Size(200, 29);
  2368. this.dpED_2.SymbolDropDown = 61555;
  2369. this.dpED_2.SymbolNormal = 61555;
  2370. this.dpED_2.TabIndex = 1;
  2371. this.dpED_2.Text = "2022-06-01 23:59:59";
  2372. this.dpED_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2373. this.dpED_2.Value = new System.DateTime(2022, 6, 1, 23, 59, 59, 0);
  2374. this.dpED_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2375. //
  2376. // dpST_2
  2377. //
  2378. this.dpST_2.FillColor = System.Drawing.Color.White;
  2379. this.dpST_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2380. this.dpST_2.Location = new System.Drawing.Point(13, 31);
  2381. this.dpST_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2382. this.dpST_2.MaxLength = 19;
  2383. this.dpST_2.MinimumSize = new System.Drawing.Size(63, 0);
  2384. this.dpST_2.Name = "dpST_2";
  2385. this.dpST_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2386. this.dpST_2.Size = new System.Drawing.Size(200, 29);
  2387. this.dpST_2.SymbolDropDown = 61555;
  2388. this.dpST_2.SymbolNormal = 61555;
  2389. this.dpST_2.TabIndex = 0;
  2390. this.dpST_2.Text = "2022-06-01 00:00:00";
  2391. this.dpST_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2392. this.dpST_2.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
  2393. this.dpST_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2394. //
  2395. // tb_ClearQueryAndCancel
  2396. //
  2397. this.tb_ClearQueryAndCancel.Controls.Add(this.dgvClearingData);
  2398. this.tb_ClearQueryAndCancel.Controls.Add(this.uiPanel5);
  2399. this.tb_ClearQueryAndCancel.Location = new System.Drawing.Point(0, 30);
  2400. this.tb_ClearQueryAndCancel.Name = "tb_ClearQueryAndCancel";
  2401. this.tb_ClearQueryAndCancel.Size = new System.Drawing.Size(1201, 766);
  2402. this.tb_ClearQueryAndCancel.TabIndex = 2;
  2403. this.tb_ClearQueryAndCancel.Text = "清算查询/撤销";
  2404. this.tb_ClearQueryAndCancel.UseVisualStyleBackColor = true;
  2405. //
  2406. // dgvClearingData
  2407. //
  2408. this.dgvClearingData.AllowUserToAddRows = false;
  2409. dataGridViewCellStyle31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2410. this.dgvClearingData.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle31;
  2411. this.dgvClearingData.BackgroundColor = System.Drawing.Color.White;
  2412. this.dgvClearingData.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  2413. dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2414. dataGridViewCellStyle32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2415. dataGridViewCellStyle32.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2416. dataGridViewCellStyle32.ForeColor = System.Drawing.Color.White;
  2417. dataGridViewCellStyle32.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2418. dataGridViewCellStyle32.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2419. dataGridViewCellStyle32.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2420. this.dgvClearingData.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle32;
  2421. this.dgvClearingData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  2422. dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2423. dataGridViewCellStyle33.BackColor = System.Drawing.SystemColors.Window;
  2424. dataGridViewCellStyle33.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2425. dataGridViewCellStyle33.ForeColor = System.Drawing.SystemColors.ControlText;
  2426. dataGridViewCellStyle33.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2427. dataGridViewCellStyle33.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2428. dataGridViewCellStyle33.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  2429. this.dgvClearingData.DefaultCellStyle = dataGridViewCellStyle33;
  2430. this.dgvClearingData.Dock = System.Windows.Forms.DockStyle.Fill;
  2431. this.dgvClearingData.EnableHeadersVisualStyles = false;
  2432. this.dgvClearingData.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2433. this.dgvClearingData.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2434. this.dgvClearingData.Location = new System.Drawing.Point(0, 0);
  2435. this.dgvClearingData.Name = "dgvClearingData";
  2436. dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2437. dataGridViewCellStyle34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2438. dataGridViewCellStyle34.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2439. dataGridViewCellStyle34.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2440. dataGridViewCellStyle34.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2441. dataGridViewCellStyle34.SelectionForeColor = System.Drawing.Color.White;
  2442. dataGridViewCellStyle34.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2443. this.dgvClearingData.RowHeadersDefaultCellStyle = dataGridViewCellStyle34;
  2444. this.dgvClearingData.RowHeadersWidth = 51;
  2445. dataGridViewCellStyle35.BackColor = System.Drawing.Color.White;
  2446. dataGridViewCellStyle35.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2447. this.dgvClearingData.RowsDefaultCellStyle = dataGridViewCellStyle35;
  2448. this.dgvClearingData.RowTemplate.Height = 23;
  2449. this.dgvClearingData.SelectedIndex = -1;
  2450. this.dgvClearingData.Size = new System.Drawing.Size(1201, 667);
  2451. this.dgvClearingData.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2452. this.dgvClearingData.TabIndex = 1;
  2453. this.dgvClearingData.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2454. //
  2455. // uiPanel5
  2456. //
  2457. this.uiPanel5.Controls.Add(this.uiGroupBox6);
  2458. this.uiPanel5.Controls.Add(this.rg_querType);
  2459. this.uiPanel5.Controls.Add(this.btnCancleClearing);
  2460. this.uiPanel5.Controls.Add(this.rbgTimeWay);
  2461. this.uiPanel5.Controls.Add(this.btnClose_3);
  2462. this.uiPanel5.Controls.Add(this.btnQueryClearing);
  2463. this.uiPanel5.Controls.Add(this.uiGroupBox5);
  2464. this.uiPanel5.Dock = System.Windows.Forms.DockStyle.Bottom;
  2465. this.uiPanel5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2466. this.uiPanel5.Location = new System.Drawing.Point(0, 667);
  2467. this.uiPanel5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2468. this.uiPanel5.MinimumSize = new System.Drawing.Size(1, 1);
  2469. this.uiPanel5.Name = "uiPanel5";
  2470. this.uiPanel5.Size = new System.Drawing.Size(1201, 99);
  2471. this.uiPanel5.TabIndex = 0;
  2472. this.uiPanel5.Text = null;
  2473. this.uiPanel5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2474. this.uiPanel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2475. //
  2476. // uiGroupBox6
  2477. //
  2478. this.uiGroupBox6.Controls.Add(this.cbInterface_3);
  2479. this.uiGroupBox6.Controls.Add(this.cbValid_3);
  2480. this.uiGroupBox6.Controls.Add(this.uiLabel13);
  2481. this.uiGroupBox6.Controls.Add(this.uiLabel17);
  2482. this.uiGroupBox6.Dock = System.Windows.Forms.DockStyle.Left;
  2483. this.uiGroupBox6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2484. this.uiGroupBox6.Location = new System.Drawing.Point(514, 0);
  2485. this.uiGroupBox6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2486. this.uiGroupBox6.MinimumSize = new System.Drawing.Size(1, 1);
  2487. this.uiGroupBox6.Name = "uiGroupBox6";
  2488. this.uiGroupBox6.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  2489. this.uiGroupBox6.Radius = 1;
  2490. this.uiGroupBox6.Size = new System.Drawing.Size(234, 99);
  2491. this.uiGroupBox6.TabIndex = 29;
  2492. this.uiGroupBox6.TabStop = false;
  2493. this.uiGroupBox6.Text = "查询条件";
  2494. this.uiGroupBox6.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2495. this.uiGroupBox6.TitleTop = 10;
  2496. this.uiGroupBox6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2497. //
  2498. // cbInterface_3
  2499. //
  2500. this.cbInterface_3.DataSource = null;
  2501. this.cbInterface_3.FillColor = System.Drawing.Color.White;
  2502. this.cbInterface_3.FilterMaxCount = 50;
  2503. this.cbInterface_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2504. this.cbInterface_3.ItemHeight = 20;
  2505. this.cbInterface_3.Items.AddRange(new object[] {
  2506. "1",
  2507. "2"});
  2508. this.cbInterface_3.Location = new System.Drawing.Point(83, 26);
  2509. this.cbInterface_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2510. this.cbInterface_3.MinimumSize = new System.Drawing.Size(63, 0);
  2511. this.cbInterface_3.Name = "cbInterface_3";
  2512. this.cbInterface_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2513. this.cbInterface_3.Size = new System.Drawing.Size(130, 25);
  2514. this.cbInterface_3.TabIndex = 11;
  2515. this.cbInterface_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2516. this.cbInterface_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2517. //
  2518. // cbValid_3
  2519. //
  2520. this.cbValid_3.DataSource = null;
  2521. this.cbValid_3.FillColor = System.Drawing.Color.White;
  2522. this.cbValid_3.FilterMaxCount = 50;
  2523. this.cbValid_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2524. this.cbValid_3.ItemHeight = 20;
  2525. this.cbValid_3.Items.AddRange(new object[] {
  2526. "全部",
  2527. "有效",
  2528. "无效"});
  2529. this.cbValid_3.Location = new System.Drawing.Point(83, 62);
  2530. this.cbValid_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2531. this.cbValid_3.MinimumSize = new System.Drawing.Size(63, 0);
  2532. this.cbValid_3.Name = "cbValid_3";
  2533. this.cbValid_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2534. this.cbValid_3.Size = new System.Drawing.Size(130, 25);
  2535. this.cbValid_3.TabIndex = 9;
  2536. this.cbValid_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2537. this.cbValid_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2538. //
  2539. // uiLabel13
  2540. //
  2541. this.uiLabel13.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2542. this.uiLabel13.Location = new System.Drawing.Point(17, 59);
  2543. this.uiLabel13.Name = "uiLabel13";
  2544. this.uiLabel13.Size = new System.Drawing.Size(63, 23);
  2545. this.uiLabel13.TabIndex = 8;
  2546. this.uiLabel13.Text = "有效标志";
  2547. this.uiLabel13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2548. this.uiLabel13.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2549. //
  2550. // uiLabel17
  2551. //
  2552. this.uiLabel17.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2553. this.uiLabel17.Location = new System.Drawing.Point(17, 31);
  2554. this.uiLabel17.Name = "uiLabel17";
  2555. this.uiLabel17.Size = new System.Drawing.Size(63, 23);
  2556. this.uiLabel17.TabIndex = 0;
  2557. this.uiLabel17.Text = "接口目录";
  2558. this.uiLabel17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2559. this.uiLabel17.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2560. //
  2561. // rg_querType
  2562. //
  2563. this.rg_querType.Dock = System.Windows.Forms.DockStyle.Left;
  2564. this.rg_querType.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2565. this.rg_querType.Items.AddRange(new object[] {
  2566. "本地",
  2567. "异地"});
  2568. this.rg_querType.Location = new System.Drawing.Point(362, 0);
  2569. this.rg_querType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2570. this.rg_querType.MinimumSize = new System.Drawing.Size(1, 1);
  2571. this.rg_querType.Name = "rg_querType";
  2572. this.rg_querType.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  2573. this.rg_querType.Radius = 1;
  2574. this.rg_querType.Size = new System.Drawing.Size(152, 99);
  2575. this.rg_querType.TabIndex = 28;
  2576. this.rg_querType.Text = "查询区域";
  2577. this.rg_querType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2578. this.rg_querType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2579. //
  2580. // btnCancleClearing
  2581. //
  2582. this.btnCancleClearing.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  2583. this.btnCancleClearing.Cursor = System.Windows.Forms.Cursors.Hand;
  2584. this.btnCancleClearing.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2585. this.btnCancleClearing.Location = new System.Drawing.Point(985, 20);
  2586. this.btnCancleClearing.MinimumSize = new System.Drawing.Size(1, 1);
  2587. this.btnCancleClearing.Name = "btnCancleClearing";
  2588. this.btnCancleClearing.Size = new System.Drawing.Size(100, 61);
  2589. this.btnCancleClearing.TabIndex = 27;
  2590. this.btnCancleClearing.Text = "撤销清算数据";
  2591. this.btnCancleClearing.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2592. this.btnCancleClearing.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2593. this.btnCancleClearing.Click += new System.EventHandler(this.btnCancleClearing_Click);
  2594. //
  2595. // rbgTimeWay
  2596. //
  2597. this.rbgTimeWay.Dock = System.Windows.Forms.DockStyle.Left;
  2598. this.rbgTimeWay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2599. this.rbgTimeWay.Items.AddRange(new object[] {
  2600. "按清算时间统计",
  2601. "按起止时间统计"});
  2602. this.rbgTimeWay.Location = new System.Drawing.Point(182, 0);
  2603. this.rbgTimeWay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2604. this.rbgTimeWay.MinimumSize = new System.Drawing.Size(1, 1);
  2605. this.rbgTimeWay.Name = "rbgTimeWay";
  2606. this.rbgTimeWay.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  2607. this.rbgTimeWay.Radius = 1;
  2608. this.rbgTimeWay.Size = new System.Drawing.Size(180, 99);
  2609. this.rbgTimeWay.TabIndex = 25;
  2610. this.rbgTimeWay.Text = "时间统计类型";
  2611. this.rbgTimeWay.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2612. this.rbgTimeWay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2613. //
  2614. // btnClose_3
  2615. //
  2616. this.btnClose_3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  2617. this.btnClose_3.Cursor = System.Windows.Forms.Cursors.Hand;
  2618. this.btnClose_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2619. this.btnClose_3.Location = new System.Drawing.Point(1091, 20);
  2620. this.btnClose_3.MinimumSize = new System.Drawing.Size(1, 1);
  2621. this.btnClose_3.Name = "btnClose_3";
  2622. this.btnClose_3.Size = new System.Drawing.Size(100, 61);
  2623. this.btnClose_3.TabIndex = 24;
  2624. this.btnClose_3.Text = "退 出";
  2625. this.btnClose_3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2626. this.btnClose_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2627. this.btnClose_3.Click += new System.EventHandler(this.btnClose_Click);
  2628. //
  2629. // btnQueryClearing
  2630. //
  2631. this.btnQueryClearing.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  2632. this.btnQueryClearing.Cursor = System.Windows.Forms.Cursors.Hand;
  2633. this.btnQueryClearing.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2634. this.btnQueryClearing.Location = new System.Drawing.Point(853, 20);
  2635. this.btnQueryClearing.MinimumSize = new System.Drawing.Size(1, 1);
  2636. this.btnQueryClearing.Name = "btnQueryClearing";
  2637. this.btnQueryClearing.Size = new System.Drawing.Size(126, 61);
  2638. this.btnQueryClearing.TabIndex = 23;
  2639. this.btnQueryClearing.Text = "查询清算数据";
  2640. this.btnQueryClearing.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2641. this.btnQueryClearing.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2642. this.btnQueryClearing.Click += new System.EventHandler(this.btnQueryClearing_Click);
  2643. //
  2644. // uiGroupBox5
  2645. //
  2646. this.uiGroupBox5.Controls.Add(this.dpED_3);
  2647. this.uiGroupBox5.Controls.Add(this.dpST_3);
  2648. this.uiGroupBox5.Dock = System.Windows.Forms.DockStyle.Left;
  2649. this.uiGroupBox5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2650. this.uiGroupBox5.Location = new System.Drawing.Point(0, 0);
  2651. this.uiGroupBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2652. this.uiGroupBox5.MinimumSize = new System.Drawing.Size(1, 1);
  2653. this.uiGroupBox5.Name = "uiGroupBox5";
  2654. this.uiGroupBox5.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  2655. this.uiGroupBox5.Size = new System.Drawing.Size(182, 99);
  2656. this.uiGroupBox5.TabIndex = 22;
  2657. this.uiGroupBox5.Text = "查询时间";
  2658. this.uiGroupBox5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2659. this.uiGroupBox5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2660. //
  2661. // dpED_3
  2662. //
  2663. this.dpED_3.DateFormat = "yyyy-MM-dd";
  2664. this.dpED_3.FillColor = System.Drawing.Color.White;
  2665. this.dpED_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2666. this.dpED_3.Location = new System.Drawing.Point(13, 62);
  2667. this.dpED_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2668. this.dpED_3.MaxLength = 10;
  2669. this.dpED_3.MinimumSize = new System.Drawing.Size(63, 0);
  2670. this.dpED_3.Name = "dpED_3";
  2671. this.dpED_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2672. this.dpED_3.Size = new System.Drawing.Size(154, 29);
  2673. this.dpED_3.SymbolDropDown = 61555;
  2674. this.dpED_3.SymbolNormal = 61555;
  2675. this.dpED_3.TabIndex = 1;
  2676. this.dpED_3.Text = "2022-06-01";
  2677. this.dpED_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2678. this.dpED_3.Value = new System.DateTime(2022, 6, 1, 23, 59, 59, 0);
  2679. this.dpED_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2680. //
  2681. // dpST_3
  2682. //
  2683. this.dpST_3.DateFormat = "yyyy-MM-dd";
  2684. this.dpST_3.FillColor = System.Drawing.Color.White;
  2685. this.dpST_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2686. this.dpST_3.Location = new System.Drawing.Point(13, 32);
  2687. this.dpST_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2688. this.dpST_3.MaxLength = 10;
  2689. this.dpST_3.MinimumSize = new System.Drawing.Size(63, 0);
  2690. this.dpST_3.Name = "dpST_3";
  2691. this.dpST_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2692. this.dpST_3.Size = new System.Drawing.Size(154, 29);
  2693. this.dpST_3.SymbolDropDown = 61555;
  2694. this.dpST_3.SymbolNormal = 61555;
  2695. this.dpST_3.TabIndex = 0;
  2696. this.dpST_3.Text = "2022-06-01";
  2697. this.dpST_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2698. this.dpST_3.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
  2699. this.dpST_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2700. //
  2701. // tb_SetlQueryLocal
  2702. //
  2703. this.tb_SetlQueryLocal.Controls.Add(this.dgv_Query);
  2704. this.tb_SetlQueryLocal.Controls.Add(this.dgv_Query_Page);
  2705. this.tb_SetlQueryLocal.Controls.Add(this.uiGroupBox11);
  2706. this.tb_SetlQueryLocal.Location = new System.Drawing.Point(0, 30);
  2707. this.tb_SetlQueryLocal.Name = "tb_SetlQueryLocal";
  2708. this.tb_SetlQueryLocal.Size = new System.Drawing.Size(1201, 766);
  2709. this.tb_SetlQueryLocal.TabIndex = 4;
  2710. this.tb_SetlQueryLocal.Text = "结算信息按时间段查询";
  2711. this.tb_SetlQueryLocal.UseVisualStyleBackColor = true;
  2712. //
  2713. // dgv_Query
  2714. //
  2715. this.dgv_Query.AllowUserToAddRows = false;
  2716. dataGridViewCellStyle36.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2717. this.dgv_Query.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle36;
  2718. this.dgv_Query.BackgroundColor = System.Drawing.Color.White;
  2719. this.dgv_Query.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  2720. dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2721. dataGridViewCellStyle37.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2722. dataGridViewCellStyle37.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2723. dataGridViewCellStyle37.ForeColor = System.Drawing.Color.White;
  2724. dataGridViewCellStyle37.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2725. dataGridViewCellStyle37.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2726. dataGridViewCellStyle37.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2727. this.dgv_Query.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle37;
  2728. this.dgv_Query.ColumnHeadersHeight = 32;
  2729. this.dgv_Query.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  2730. dataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2731. dataGridViewCellStyle38.BackColor = System.Drawing.SystemColors.Window;
  2732. dataGridViewCellStyle38.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2733. dataGridViewCellStyle38.ForeColor = System.Drawing.SystemColors.ControlText;
  2734. dataGridViewCellStyle38.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2735. dataGridViewCellStyle38.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2736. dataGridViewCellStyle38.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  2737. this.dgv_Query.DefaultCellStyle = dataGridViewCellStyle38;
  2738. this.dgv_Query.Dock = System.Windows.Forms.DockStyle.Fill;
  2739. this.dgv_Query.EnableHeadersVisualStyles = false;
  2740. this.dgv_Query.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2741. this.dgv_Query.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2742. this.dgv_Query.Location = new System.Drawing.Point(296, 310);
  2743. this.dgv_Query.Name = "dgv_Query";
  2744. dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2745. dataGridViewCellStyle39.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2746. dataGridViewCellStyle39.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2747. dataGridViewCellStyle39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2748. dataGridViewCellStyle39.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2749. dataGridViewCellStyle39.SelectionForeColor = System.Drawing.Color.White;
  2750. dataGridViewCellStyle39.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2751. this.dgv_Query.RowHeadersDefaultCellStyle = dataGridViewCellStyle39;
  2752. this.dgv_Query.RowHeadersWidth = 51;
  2753. dataGridViewCellStyle40.BackColor = System.Drawing.Color.White;
  2754. dataGridViewCellStyle40.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2755. this.dgv_Query.RowsDefaultCellStyle = dataGridViewCellStyle40;
  2756. this.dgv_Query.RowTemplate.Height = 23;
  2757. this.dgv_Query.SelectedIndex = -1;
  2758. this.dgv_Query.Size = new System.Drawing.Size(905, 456);
  2759. this.dgv_Query.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2760. this.dgv_Query.TabIndex = 3;
  2761. this.dgv_Query.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2762. this.dgv_Query.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_Query_CellContentClick);
  2763. //
  2764. // dgv_Query_Page
  2765. //
  2766. this.dgv_Query_Page.AllowUserToAddRows = false;
  2767. dataGridViewCellStyle41.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2768. this.dgv_Query_Page.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle41;
  2769. this.dgv_Query_Page.BackgroundColor = System.Drawing.Color.White;
  2770. this.dgv_Query_Page.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  2771. dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2772. dataGridViewCellStyle42.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2773. dataGridViewCellStyle42.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2774. dataGridViewCellStyle42.ForeColor = System.Drawing.Color.White;
  2775. dataGridViewCellStyle42.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2776. dataGridViewCellStyle42.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2777. dataGridViewCellStyle42.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2778. this.dgv_Query_Page.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle42;
  2779. this.dgv_Query_Page.ColumnHeadersHeight = 32;
  2780. this.dgv_Query_Page.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  2781. this.dgv_Query_Page.ContextMenuStrip = this.cmsWznbd;
  2782. dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2783. dataGridViewCellStyle43.BackColor = System.Drawing.SystemColors.Window;
  2784. dataGridViewCellStyle43.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2785. dataGridViewCellStyle43.ForeColor = System.Drawing.SystemColors.ControlText;
  2786. dataGridViewCellStyle43.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2787. dataGridViewCellStyle43.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2788. dataGridViewCellStyle43.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  2789. this.dgv_Query_Page.DefaultCellStyle = dataGridViewCellStyle43;
  2790. this.dgv_Query_Page.Dock = System.Windows.Forms.DockStyle.Top;
  2791. this.dgv_Query_Page.EnableHeadersVisualStyles = false;
  2792. this.dgv_Query_Page.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2793. this.dgv_Query_Page.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2794. this.dgv_Query_Page.Location = new System.Drawing.Point(296, 0);
  2795. this.dgv_Query_Page.Name = "dgv_Query_Page";
  2796. dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2797. dataGridViewCellStyle44.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2798. dataGridViewCellStyle44.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2799. dataGridViewCellStyle44.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2800. dataGridViewCellStyle44.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2801. dataGridViewCellStyle44.SelectionForeColor = System.Drawing.Color.White;
  2802. dataGridViewCellStyle44.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2803. this.dgv_Query_Page.RowHeadersDefaultCellStyle = dataGridViewCellStyle44;
  2804. this.dgv_Query_Page.RowHeadersWidth = 51;
  2805. dataGridViewCellStyle45.BackColor = System.Drawing.Color.White;
  2806. dataGridViewCellStyle45.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2807. this.dgv_Query_Page.RowsDefaultCellStyle = dataGridViewCellStyle45;
  2808. this.dgv_Query_Page.RowTemplate.Height = 23;
  2809. this.dgv_Query_Page.SelectedIndex = -1;
  2810. this.dgv_Query_Page.Size = new System.Drawing.Size(905, 310);
  2811. this.dgv_Query_Page.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2812. this.dgv_Query_Page.TabIndex = 2;
  2813. this.dgv_Query_Page.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2814. this.dgv_Query_Page.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_Query_Page_CellContentClick);
  2815. //
  2816. // cmsWznbd
  2817. //
  2818. this.cmsWznbd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  2819. this.cmsWznbd.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2820. this.cmsWznbd.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  2821. this.Bdhisyb});
  2822. this.cmsWznbd.Name = "cmsWznbd";
  2823. this.cmsWznbd.Size = new System.Drawing.Size(171, 30);
  2824. this.cmsWznbd.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2825. //
  2826. // Bdhisyb
  2827. //
  2828. this.Bdhisyb.Name = "Bdhisyb";
  2829. this.Bdhisyb.Size = new System.Drawing.Size(170, 26);
  2830. this.Bdhisyb.Text = "比对HIS医保";
  2831. this.Bdhisyb.Click += new System.EventHandler(this.Bdhisyb_Click);
  2832. //
  2833. // uiGroupBox11
  2834. //
  2835. this.uiGroupBox11.Controls.Add(this.uiButton10);
  2836. this.uiGroupBox11.Controls.Add(this.uiButton8);
  2837. this.uiGroupBox11.Controls.Add(this.chbg_BusinessType);
  2838. this.uiGroupBox11.Controls.Add(this.uiButton7);
  2839. this.uiGroupBox11.Controls.Add(this.uiButton6);
  2840. this.uiGroupBox11.Controls.Add(this.uiGroupBox13);
  2841. this.uiGroupBox11.Controls.Add(this.uiGroupBox12);
  2842. this.uiGroupBox11.Dock = System.Windows.Forms.DockStyle.Left;
  2843. this.uiGroupBox11.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2844. this.uiGroupBox11.Location = new System.Drawing.Point(0, 0);
  2845. this.uiGroupBox11.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2846. this.uiGroupBox11.MinimumSize = new System.Drawing.Size(1, 1);
  2847. this.uiGroupBox11.Name = "uiGroupBox11";
  2848. this.uiGroupBox11.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  2849. this.uiGroupBox11.Size = new System.Drawing.Size(296, 766);
  2850. this.uiGroupBox11.TabIndex = 0;
  2851. this.uiGroupBox11.Text = "查询条件";
  2852. this.uiGroupBox11.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2853. this.uiGroupBox11.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2854. //
  2855. // uiButton10
  2856. //
  2857. this.uiButton10.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  2858. this.uiButton10.Cursor = System.Windows.Forms.Cursors.Hand;
  2859. this.uiButton10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2860. this.uiButton10.Location = new System.Drawing.Point(55, 678);
  2861. this.uiButton10.MinimumSize = new System.Drawing.Size(1, 1);
  2862. this.uiButton10.Name = "uiButton10";
  2863. this.uiButton10.Size = new System.Drawing.Size(190, 35);
  2864. this.uiButton10.TabIndex = 28;
  2865. this.uiButton10.Text = "医保结算信息导出";
  2866. this.uiButton10.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2867. this.uiButton10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2868. this.uiButton10.Click += new System.EventHandler(this.uiButton10_Click);
  2869. //
  2870. // uiButton8
  2871. //
  2872. this.uiButton8.Cursor = System.Windows.Forms.Cursors.Hand;
  2873. this.uiButton8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2874. this.uiButton8.Location = new System.Drawing.Point(55, 563);
  2875. this.uiButton8.MinimumSize = new System.Drawing.Size(1, 1);
  2876. this.uiButton8.Name = "uiButton8";
  2877. this.uiButton8.Size = new System.Drawing.Size(190, 35);
  2878. this.uiButton8.TabIndex = 27;
  2879. this.uiButton8.Text = "查询HIS数据";
  2880. this.uiButton8.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2881. this.uiButton8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2882. this.uiButton8.Click += new System.EventHandler(this.uiButton8_Click);
  2883. //
  2884. // chbg_BusinessType
  2885. //
  2886. this.chbg_BusinessType.Dock = System.Windows.Forms.DockStyle.Top;
  2887. this.chbg_BusinessType.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2888. this.chbg_BusinessType.Items.AddRange(new object[] {
  2889. "【5262】本地结算信息按时间段查询",
  2890. "【5267】异地结算信息时间段查询"});
  2891. this.chbg_BusinessType.ItemSize = new System.Drawing.Size(300, 45);
  2892. this.chbg_BusinessType.Location = new System.Drawing.Point(0, 415);
  2893. this.chbg_BusinessType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2894. this.chbg_BusinessType.MinimumSize = new System.Drawing.Size(1, 1);
  2895. this.chbg_BusinessType.Name = "chbg_BusinessType";
  2896. this.chbg_BusinessType.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  2897. this.chbg_BusinessType.SelectedIndexes = ((System.Collections.Generic.List<int>)(resources.GetObject("chbg_BusinessType.SelectedIndexes")));
  2898. this.chbg_BusinessType.Size = new System.Drawing.Size(296, 128);
  2899. this.chbg_BusinessType.TabIndex = 26;
  2900. this.chbg_BusinessType.Text = "业务类型";
  2901. this.chbg_BusinessType.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2902. this.chbg_BusinessType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2903. this.chbg_BusinessType.ValueChanged += new Sunny.UI.UICheckBoxGroup.OnValueChanged(this.chbg_BusinessType_ValueChanged);
  2904. //
  2905. // uiButton7
  2906. //
  2907. this.uiButton7.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  2908. this.uiButton7.Cursor = System.Windows.Forms.Cursors.Hand;
  2909. this.uiButton7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2910. this.uiButton7.Location = new System.Drawing.Point(55, 728);
  2911. this.uiButton7.MinimumSize = new System.Drawing.Size(1, 1);
  2912. this.uiButton7.Name = "uiButton7";
  2913. this.uiButton7.Size = new System.Drawing.Size(190, 35);
  2914. this.uiButton7.TabIndex = 25;
  2915. this.uiButton7.Text = "退 出";
  2916. this.uiButton7.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2917. this.uiButton7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2918. this.uiButton7.Click += new System.EventHandler(this.btnClose_Click);
  2919. //
  2920. // uiButton6
  2921. //
  2922. this.uiButton6.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  2923. this.uiButton6.Cursor = System.Windows.Forms.Cursors.Hand;
  2924. this.uiButton6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2925. this.uiButton6.Location = new System.Drawing.Point(55, 620);
  2926. this.uiButton6.MinimumSize = new System.Drawing.Size(1, 1);
  2927. this.uiButton6.Name = "uiButton6";
  2928. this.uiButton6.Size = new System.Drawing.Size(190, 35);
  2929. this.uiButton6.TabIndex = 24;
  2930. this.uiButton6.Text = "查询医保";
  2931. this.uiButton6.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2932. this.uiButton6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2933. this.uiButton6.Click += new System.EventHandler(this.uiButton6_Click);
  2934. //
  2935. // uiGroupBox13
  2936. //
  2937. this.uiGroupBox13.Controls.Add(this.cbxYllb);
  2938. this.uiGroupBox13.Controls.Add(this.uiLabel26);
  2939. this.uiGroupBox13.Controls.Add(this.tb_PsnNo);
  2940. this.uiGroupBox13.Controls.Add(this.tb_Certno);
  2941. this.uiGroupBox13.Controls.Add(this.tb_PageSize);
  2942. this.uiGroupBox13.Controls.Add(this.tb_PageNum);
  2943. this.uiGroupBox13.Controls.Add(this.uiLabel23);
  2944. this.uiGroupBox13.Controls.Add(this.uiLabel22);
  2945. this.uiGroupBox13.Controls.Add(this.uiLabel21);
  2946. this.uiGroupBox13.Controls.Add(this.uiLabel20);
  2947. this.uiGroupBox13.Controls.Add(this.Chk_RefdSetlFlag);
  2948. this.uiGroupBox13.Dock = System.Windows.Forms.DockStyle.Top;
  2949. this.uiGroupBox13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2950. this.uiGroupBox13.Location = new System.Drawing.Point(0, 156);
  2951. this.uiGroupBox13.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2952. this.uiGroupBox13.MinimumSize = new System.Drawing.Size(1, 1);
  2953. this.uiGroupBox13.Name = "uiGroupBox13";
  2954. this.uiGroupBox13.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  2955. this.uiGroupBox13.Size = new System.Drawing.Size(296, 259);
  2956. this.uiGroupBox13.TabIndex = 23;
  2957. this.uiGroupBox13.Text = "条件设置";
  2958. this.uiGroupBox13.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2959. this.uiGroupBox13.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2960. //
  2961. // cbxYllb
  2962. //
  2963. this.cbxYllb.DataSource = null;
  2964. this.cbxYllb.FillColor = System.Drawing.Color.White;
  2965. this.cbxYllb.FilterMaxCount = 50;
  2966. this.cbxYllb.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2967. this.cbxYllb.Location = new System.Drawing.Point(87, 110);
  2968. this.cbxYllb.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2969. this.cbxYllb.MinimumSize = new System.Drawing.Size(63, 0);
  2970. this.cbxYllb.Name = "cbxYllb";
  2971. this.cbxYllb.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2972. this.cbxYllb.Size = new System.Drawing.Size(199, 29);
  2973. this.cbxYllb.TabIndex = 28;
  2974. this.cbxYllb.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2975. this.cbxYllb.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2976. //
  2977. // uiLabel26
  2978. //
  2979. this.uiLabel26.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2980. this.uiLabel26.Location = new System.Drawing.Point(10, 114);
  2981. this.uiLabel26.Name = "uiLabel26";
  2982. this.uiLabel26.Size = new System.Drawing.Size(74, 23);
  2983. this.uiLabel26.TabIndex = 27;
  2984. this.uiLabel26.Text = "医疗类别";
  2985. this.uiLabel26.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2986. this.uiLabel26.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2987. //
  2988. // tb_PsnNo
  2989. //
  2990. this.tb_PsnNo.Cursor = System.Windows.Forms.Cursors.IBeam;
  2991. this.tb_PsnNo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2992. this.tb_PsnNo.Location = new System.Drawing.Point(87, 184);
  2993. this.tb_PsnNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2994. this.tb_PsnNo.MinimumSize = new System.Drawing.Size(1, 16);
  2995. this.tb_PsnNo.Name = "tb_PsnNo";
  2996. this.tb_PsnNo.ShowText = false;
  2997. this.tb_PsnNo.Size = new System.Drawing.Size(199, 29);
  2998. this.tb_PsnNo.TabIndex = 6;
  2999. this.tb_PsnNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3000. this.tb_PsnNo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3001. //
  3002. // tb_Certno
  3003. //
  3004. this.tb_Certno.Cursor = System.Windows.Forms.Cursors.IBeam;
  3005. this.tb_Certno.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3006. this.tb_Certno.Location = new System.Drawing.Point(87, 148);
  3007. this.tb_Certno.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3008. this.tb_Certno.MinimumSize = new System.Drawing.Size(1, 16);
  3009. this.tb_Certno.Name = "tb_Certno";
  3010. this.tb_Certno.ShowText = false;
  3011. this.tb_Certno.Size = new System.Drawing.Size(199, 29);
  3012. this.tb_Certno.TabIndex = 6;
  3013. this.tb_Certno.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3014. this.tb_Certno.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3015. //
  3016. // tb_PageSize
  3017. //
  3018. this.tb_PageSize.Cursor = System.Windows.Forms.Cursors.IBeam;
  3019. this.tb_PageSize.DoubleValue = 50D;
  3020. this.tb_PageSize.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3021. this.tb_PageSize.IntValue = 50;
  3022. this.tb_PageSize.Location = new System.Drawing.Point(87, 71);
  3023. this.tb_PageSize.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3024. this.tb_PageSize.MinimumSize = new System.Drawing.Size(1, 16);
  3025. this.tb_PageSize.Name = "tb_PageSize";
  3026. this.tb_PageSize.ShowText = false;
  3027. this.tb_PageSize.Size = new System.Drawing.Size(199, 29);
  3028. this.tb_PageSize.TabIndex = 6;
  3029. this.tb_PageSize.Text = "50";
  3030. this.tb_PageSize.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3031. this.tb_PageSize.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3032. //
  3033. // tb_PageNum
  3034. //
  3035. this.tb_PageNum.Cursor = System.Windows.Forms.Cursors.IBeam;
  3036. this.tb_PageNum.DoubleValue = 1D;
  3037. this.tb_PageNum.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3038. this.tb_PageNum.IntValue = 1;
  3039. this.tb_PageNum.Location = new System.Drawing.Point(87, 31);
  3040. this.tb_PageNum.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3041. this.tb_PageNum.MinimumSize = new System.Drawing.Size(1, 16);
  3042. this.tb_PageNum.Name = "tb_PageNum";
  3043. this.tb_PageNum.ShowText = false;
  3044. this.tb_PageNum.Size = new System.Drawing.Size(199, 29);
  3045. this.tb_PageNum.TabIndex = 5;
  3046. this.tb_PageNum.Text = "1";
  3047. this.tb_PageNum.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3048. this.tb_PageNum.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3049. //
  3050. // uiLabel23
  3051. //
  3052. this.uiLabel23.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3053. this.uiLabel23.Location = new System.Drawing.Point(10, 187);
  3054. this.uiLabel23.Name = "uiLabel23";
  3055. this.uiLabel23.Size = new System.Drawing.Size(74, 23);
  3056. this.uiLabel23.TabIndex = 4;
  3057. this.uiLabel23.Text = "人员编号";
  3058. this.uiLabel23.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3059. this.uiLabel23.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3060. //
  3061. // uiLabel22
  3062. //
  3063. this.uiLabel22.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3064. this.uiLabel22.Location = new System.Drawing.Point(10, 151);
  3065. this.uiLabel22.Name = "uiLabel22";
  3066. this.uiLabel22.Size = new System.Drawing.Size(74, 23);
  3067. this.uiLabel22.TabIndex = 3;
  3068. this.uiLabel22.Text = "证件号码";
  3069. this.uiLabel22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3070. this.uiLabel22.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3071. //
  3072. // uiLabel21
  3073. //
  3074. this.uiLabel21.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3075. this.uiLabel21.Location = new System.Drawing.Point(9, 71);
  3076. this.uiLabel21.Name = "uiLabel21";
  3077. this.uiLabel21.Size = new System.Drawing.Size(74, 23);
  3078. this.uiLabel21.TabIndex = 2;
  3079. this.uiLabel21.Text = "分页大小";
  3080. this.uiLabel21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3081. this.uiLabel21.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3082. //
  3083. // uiLabel20
  3084. //
  3085. this.uiLabel20.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3086. this.uiLabel20.Location = new System.Drawing.Point(10, 37);
  3087. this.uiLabel20.Name = "uiLabel20";
  3088. this.uiLabel20.Size = new System.Drawing.Size(74, 23);
  3089. this.uiLabel20.TabIndex = 1;
  3090. this.uiLabel20.Text = "页码";
  3091. this.uiLabel20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3092. this.uiLabel20.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3093. //
  3094. // Chk_RefdSetlFlag
  3095. //
  3096. this.Chk_RefdSetlFlag.Cursor = System.Windows.Forms.Cursors.Hand;
  3097. this.Chk_RefdSetlFlag.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3098. this.Chk_RefdSetlFlag.Location = new System.Drawing.Point(14, 219);
  3099. this.Chk_RefdSetlFlag.MinimumSize = new System.Drawing.Size(1, 1);
  3100. this.Chk_RefdSetlFlag.Name = "Chk_RefdSetlFlag";
  3101. this.Chk_RefdSetlFlag.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
  3102. this.Chk_RefdSetlFlag.Size = new System.Drawing.Size(150, 29);
  3103. this.Chk_RefdSetlFlag.TabIndex = 0;
  3104. this.Chk_RefdSetlFlag.Text = "退费结算标志";
  3105. this.Chk_RefdSetlFlag.Visible = false;
  3106. this.Chk_RefdSetlFlag.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3107. //
  3108. // uiGroupBox12
  3109. //
  3110. this.uiGroupBox12.Controls.Add(this.uiLabel25);
  3111. this.uiGroupBox12.Controls.Add(this.uiLabel24);
  3112. this.uiGroupBox12.Controls.Add(this.uiSymbolButton3);
  3113. this.uiGroupBox12.Controls.Add(this.uiSymbolButton4);
  3114. this.uiGroupBox12.Controls.Add(this.dt_ET);
  3115. this.uiGroupBox12.Controls.Add(this.dt_ST);
  3116. this.uiGroupBox12.Dock = System.Windows.Forms.DockStyle.Top;
  3117. this.uiGroupBox12.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3118. this.uiGroupBox12.Location = new System.Drawing.Point(0, 32);
  3119. this.uiGroupBox12.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3120. this.uiGroupBox12.MinimumSize = new System.Drawing.Size(1, 1);
  3121. this.uiGroupBox12.Name = "uiGroupBox12";
  3122. this.uiGroupBox12.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  3123. this.uiGroupBox12.Size = new System.Drawing.Size(296, 124);
  3124. this.uiGroupBox12.TabIndex = 22;
  3125. this.uiGroupBox12.Text = null;
  3126. this.uiGroupBox12.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  3127. this.uiGroupBox12.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3128. //
  3129. // uiLabel25
  3130. //
  3131. this.uiLabel25.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3132. this.uiLabel25.Location = new System.Drawing.Point(9, 80);
  3133. this.uiLabel25.Name = "uiLabel25";
  3134. this.uiLabel25.Size = new System.Drawing.Size(77, 23);
  3135. this.uiLabel25.TabIndex = 5;
  3136. this.uiLabel25.Text = "截止时间";
  3137. this.uiLabel25.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3138. this.uiLabel25.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3139. //
  3140. // uiLabel24
  3141. //
  3142. this.uiLabel24.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3143. this.uiLabel24.Location = new System.Drawing.Point(9, 39);
  3144. this.uiLabel24.Name = "uiLabel24";
  3145. this.uiLabel24.Size = new System.Drawing.Size(77, 23);
  3146. this.uiLabel24.TabIndex = 4;
  3147. this.uiLabel24.Text = "起始时间";
  3148. this.uiLabel24.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3149. this.uiLabel24.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3150. //
  3151. // uiSymbolButton3
  3152. //
  3153. this.uiSymbolButton3.Cursor = System.Windows.Forms.Cursors.Hand;
  3154. this.uiSymbolButton3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3155. this.uiSymbolButton3.Location = new System.Drawing.Point(160, 3);
  3156. this.uiSymbolButton3.MinimumSize = new System.Drawing.Size(1, 1);
  3157. this.uiSymbolButton3.Name = "uiSymbolButton3";
  3158. this.uiSymbolButton3.Size = new System.Drawing.Size(38, 23);
  3159. this.uiSymbolButton3.Symbol = 61544;
  3160. this.uiSymbolButton3.TabIndex = 3;
  3161. this.uiSymbolButton3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3162. this.uiSymbolButton3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3163. //
  3164. // uiSymbolButton4
  3165. //
  3166. this.uiSymbolButton4.Cursor = System.Windows.Forms.Cursors.Hand;
  3167. this.uiSymbolButton4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3168. this.uiSymbolButton4.Location = new System.Drawing.Point(116, 3);
  3169. this.uiSymbolButton4.MinimumSize = new System.Drawing.Size(1, 1);
  3170. this.uiSymbolButton4.Name = "uiSymbolButton4";
  3171. this.uiSymbolButton4.Size = new System.Drawing.Size(38, 23);
  3172. this.uiSymbolButton4.Symbol = 61543;
  3173. this.uiSymbolButton4.TabIndex = 2;
  3174. this.uiSymbolButton4.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3175. this.uiSymbolButton4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3176. //
  3177. // dt_ET
  3178. //
  3179. this.dt_ET.FillColor = System.Drawing.Color.White;
  3180. this.dt_ET.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3181. this.dt_ET.Location = new System.Drawing.Point(91, 78);
  3182. this.dt_ET.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3183. this.dt_ET.MaxLength = 19;
  3184. this.dt_ET.MinimumSize = new System.Drawing.Size(63, 0);
  3185. this.dt_ET.Name = "dt_ET";
  3186. this.dt_ET.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3187. this.dt_ET.Size = new System.Drawing.Size(193, 29);
  3188. this.dt_ET.SymbolDropDown = 61555;
  3189. this.dt_ET.SymbolNormal = 61555;
  3190. this.dt_ET.TabIndex = 1;
  3191. this.dt_ET.Text = "2023-06-10 23:59:59";
  3192. this.dt_ET.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3193. this.dt_ET.Value = new System.DateTime(2023, 6, 10, 23, 59, 59, 0);
  3194. this.dt_ET.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3195. //
  3196. // dt_ST
  3197. //
  3198. this.dt_ST.FillColor = System.Drawing.Color.White;
  3199. this.dt_ST.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3200. this.dt_ST.Location = new System.Drawing.Point(91, 35);
  3201. this.dt_ST.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3202. this.dt_ST.MaxLength = 19;
  3203. this.dt_ST.MinimumSize = new System.Drawing.Size(63, 0);
  3204. this.dt_ST.Name = "dt_ST";
  3205. this.dt_ST.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3206. this.dt_ST.Size = new System.Drawing.Size(193, 29);
  3207. this.dt_ST.SymbolDropDown = 61555;
  3208. this.dt_ST.SymbolNormal = 61555;
  3209. this.dt_ST.TabIndex = 0;
  3210. this.dt_ST.Text = "2023-06-01 00:00:00";
  3211. this.dt_ST.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3212. this.dt_ST.Value = new System.DateTime(2023, 6, 1, 0, 0, 0, 0);
  3213. this.dt_ST.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3214. //
  3215. // tb_HisAndInsuSetlDataCheck
  3216. //
  3217. this.tb_HisAndInsuSetlDataCheck.Location = new System.Drawing.Point(0, 30);
  3218. this.tb_HisAndInsuSetlDataCheck.Name = "tb_HisAndInsuSetlDataCheck";
  3219. this.tb_HisAndInsuSetlDataCheck.Size = new System.Drawing.Size(1201, 766);
  3220. this.tb_HisAndInsuSetlDataCheck.TabIndex = 6;
  3221. this.tb_HisAndInsuSetlDataCheck.Text = "HIS与医保结算数据比对-本地";
  3222. this.tb_HisAndInsuSetlDataCheck.UseVisualStyleBackColor = true;
  3223. //
  3224. // Clearing
  3225. //
  3226. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  3227. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  3228. this.ClientSize = new System.Drawing.Size(1201, 796);
  3229. this.Controls.Add(this.tc_Main);
  3230. this.Name = "Clearing";
  3231. this.Text = "对账与清算";
  3232. this.Load += new System.EventHandler(this.Clearing_Load);
  3233. this.tc_Main.ResumeLayout(false);
  3234. this.tabPage1.ResumeLayout(false);
  3235. this.uiPanel2.ResumeLayout(false);
  3236. this.uiTabControl3.ResumeLayout(false);
  3237. this.tabPage6.ResumeLayout(false);
  3238. ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec)).EndInit();
  3239. this.tabPage7.ResumeLayout(false);
  3240. ((System.ComponentModel.ISupportInitialize)(this.dgvCenterSettlRec)).EndInit();
  3241. this.tabPage8.ResumeLayout(false);
  3242. this.uiTabControl2.ResumeLayout(false);
  3243. this.tabPage4.ResumeLayout(false);
  3244. ((System.ComponentModel.ISupportInitialize)(this.dgvSettlSummary)).EndInit();
  3245. this.cmsCheck.ResumeLayout(false);
  3246. this.tabPage5.ResumeLayout(false);
  3247. this.uiPanel1.ResumeLayout(false);
  3248. this.gbConditionSet.ResumeLayout(false);
  3249. this.uiGroupBox1.ResumeLayout(false);
  3250. this.uiGroupBox10.ResumeLayout(false);
  3251. this.gbDateTime.ResumeLayout(false);
  3252. this.tabPage10.ResumeLayout(false);
  3253. this.uiPanel7.ResumeLayout(false);
  3254. this.uiTabControl6.ResumeLayout(false);
  3255. this.tabPage14.ResumeLayout(false);
  3256. this.uiTabControl7.ResumeLayout(false);
  3257. this.tabPage15.ResumeLayout(false);
  3258. ((System.ComponentModel.ISupportInitialize)(this.dgvOthCheck)).EndInit();
  3259. this.cmdOthPlcCheck.ResumeLayout(false);
  3260. this.uiPanel6.ResumeLayout(false);
  3261. this.uiGroupBox7.ResumeLayout(false);
  3262. this.uiGroupBox8.ResumeLayout(false);
  3263. this.uiGroupBox9.ResumeLayout(false);
  3264. this.tp_Clear.ResumeLayout(false);
  3265. this.uiPanel4.ResumeLayout(false);
  3266. this.uiTabControl4.ResumeLayout(false);
  3267. this.tabPage9.ResumeLayout(false);
  3268. ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec_2)).EndInit();
  3269. this.uiTabControl5.ResumeLayout(false);
  3270. this.tabPage12.ResumeLayout(false);
  3271. ((System.ComponentModel.ISupportInitialize)(this.dgvClearingSum)).EndInit();
  3272. this.cmsClearing.ResumeLayout(false);
  3273. this.uiPanel3.ResumeLayout(false);
  3274. this.uiGroupBox3.ResumeLayout(false);
  3275. this.uiGroupBox2.ResumeLayout(false);
  3276. this.uiGroupBox4.ResumeLayout(false);
  3277. this.tb_ClearQueryAndCancel.ResumeLayout(false);
  3278. ((System.ComponentModel.ISupportInitialize)(this.dgvClearingData)).EndInit();
  3279. this.uiPanel5.ResumeLayout(false);
  3280. this.uiGroupBox6.ResumeLayout(false);
  3281. this.uiGroupBox5.ResumeLayout(false);
  3282. this.tb_SetlQueryLocal.ResumeLayout(false);
  3283. ((System.ComponentModel.ISupportInitialize)(this.dgv_Query)).EndInit();
  3284. ((System.ComponentModel.ISupportInitialize)(this.dgv_Query_Page)).EndInit();
  3285. this.cmsWznbd.ResumeLayout(false);
  3286. this.uiGroupBox11.ResumeLayout(false);
  3287. this.uiGroupBox13.ResumeLayout(false);
  3288. this.uiGroupBox12.ResumeLayout(false);
  3289. this.ResumeLayout(false);
  3290. }
  3291. private void Dgv_Query_Page_RowStateChanged1(object sender, System.Windows.Forms.DataGridViewRowStateChangedEventArgs e)
  3292. {
  3293. throw new System.NotImplementedException();
  3294. }
  3295. private void Dgv_Query_Page_RowStateChanged(object sender, System.Windows.Forms.DataGridViewRowStateChangedEventArgs e)
  3296. {
  3297. throw new System.NotImplementedException();
  3298. }
  3299. #endregion
  3300. private Sunny.UI.UITabControl tc_Main;
  3301. private System.Windows.Forms.TabPage tabPage1;
  3302. private Sunny.UI.UIPanel uiPanel2;
  3303. private Sunny.UI.UIPanel uiPanel1;
  3304. private System.Windows.Forms.TabPage tb_ClearQueryAndCancel;
  3305. private Sunny.UI.UITabControl uiTabControl3;
  3306. private System.Windows.Forms.TabPage tabPage6;
  3307. private System.Windows.Forms.TabPage tabPage7;
  3308. private System.Windows.Forms.TabPage tabPage8;
  3309. private Sunny.UI.UITabControl uiTabControl2;
  3310. private System.Windows.Forms.TabPage tabPage4;
  3311. private System.Windows.Forms.TabPage tabPage5;
  3312. private Sunny.UI.UIGroupBox uiGroupBox1;
  3313. private Sunny.UI.UIButton btnClose;
  3314. private Sunny.UI.UIButton btnBatchCheck;
  3315. private Sunny.UI.UIGroupBox gbDateTime;
  3316. private Sunny.UI.UIDatetimePicker dpED;
  3317. private Sunny.UI.UIDatetimePicker dpST;
  3318. private Sunny.UI.UIGroupBox gbConditionSet;
  3319. private Sunny.UI.UICheckBoxGroup cbgGroupSet;
  3320. private Sunny.UI.UILabel uiLabel1;
  3321. private Sunny.UI.UIComboBox cbxValid;
  3322. private Sunny.UI.UILabel uiLabel5;
  3323. private Sunny.UI.UILabel uiLabel4;
  3324. private Sunny.UI.UIComboBox cbxClrType;
  3325. private Sunny.UI.UILabel uiLabel3;
  3326. private Sunny.UI.UIComboBox cbxInsuType;
  3327. private Sunny.UI.UILabel uiLabel2;
  3328. private Sunny.UI.UIDataGridView dgvHisSettlRec;
  3329. private Sunny.UI.UIDataGridView dgvCenterSettlRec;
  3330. private Sunny.UI.UIDataGridView dgvSettlSummary;
  3331. private Sunny.UI.UIRichTextBox rtbCheckDetailLog;
  3332. private Sunny.UI.UIRichTextBox rtbCheckLog;
  3333. private Sunny.UI.UITextBox tbSettlOption;
  3334. private Sunny.UI.UIContextMenuStrip cmsCheck;
  3335. private System.Windows.Forms.ToolStripMenuItem tsmCheck_Single;
  3336. private System.Windows.Forms.ToolStripMenuItem tsmCheckDetail_Single;
  3337. private System.Windows.Forms.ToolStripMenuItem tsmCheck_Batch;
  3338. private System.Windows.Forms.ToolStripMenuItem tsmCheckDetail_Batch;
  3339. private System.Windows.Forms.ToolStripMenuItem tsmHisRecord;
  3340. private System.Windows.Forms.ToolStripMenuItem tsmAICheck;
  3341. private Sunny.UI.UIComboBox cbxInterface;
  3342. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
  3343. private System.Windows.Forms.ToolStripMenuItem 导出TXTToolStripMenuItem;
  3344. private System.Windows.Forms.ToolStripMenuItem tsmExport;
  3345. private System.Windows.Forms.ToolStripMenuItem tsmCompress;
  3346. private System.Windows.Forms.ToolStripMenuItem tsmUploadZIP;
  3347. private System.Windows.Forms.ToolStripMenuItem tsm3202;
  3348. private System.Windows.Forms.ToolStripMenuItem tsmDownload;
  3349. private System.Windows.Forms.ToolStripMenuItem tsmUnCompress;
  3350. private System.Windows.Forms.ToolStripMenuItem tsmImport;
  3351. private System.Windows.Forms.ToolStripMenuItem tsmZIPToSDec;
  3352. private Sunny.UI.UISymbolButton btnReduceOndDay;
  3353. private Sunny.UI.UISymbolButton btnAddOneDay;
  3354. private System.Windows.Forms.TabPage tp_Clear;
  3355. private Sunny.UI.UIPanel uiPanel4;
  3356. private Sunny.UI.UITabControl uiTabControl4;
  3357. private System.Windows.Forms.TabPage tabPage9;
  3358. private Sunny.UI.UIDataGridView dgvHisSettlRec_2;
  3359. private Sunny.UI.UITabControl uiTabControl5;
  3360. private System.Windows.Forms.TabPage tabPage12;
  3361. private Sunny.UI.UIDataGridView dgvClearingSum;
  3362. private Sunny.UI.UIPanel uiPanel3;
  3363. private Sunny.UI.UIGroupBox uiGroupBox2;
  3364. private Sunny.UI.UIComboBox cbInterface_2;
  3365. private Sunny.UI.UITextBox tbSettlOption_2;
  3366. private Sunny.UI.UIComboBox cbValid_2;
  3367. private Sunny.UI.UILabel uiLabel6;
  3368. private Sunny.UI.UILabel uiLabel7;
  3369. private Sunny.UI.UIComboBox cbClrType_2;
  3370. private Sunny.UI.UILabel uiLabel8;
  3371. private Sunny.UI.UIComboBox cbInsutype_2;
  3372. private Sunny.UI.UILabel uiLabel9;
  3373. private Sunny.UI.UILabel uiLabel10;
  3374. private Sunny.UI.UIGroupBox uiGroupBox4;
  3375. private Sunny.UI.UISymbolButton btnReduceMonth;
  3376. private Sunny.UI.UISymbolButton btnAddMonth;
  3377. private Sunny.UI.UIDatetimePicker dpED_2;
  3378. private Sunny.UI.UIDatetimePicker dpST_2;
  3379. private Sunny.UI.UIContextMenuStrip cmsClearing;
  3380. private System.Windows.Forms.ToolStripMenuItem tmsClearing_2;
  3381. private System.Windows.Forms.ToolStripMenuItem tmsHisSettlRecord_2;
  3382. private Sunny.UI.UIComboBox cbClrWay_2;
  3383. private Sunny.UI.UILabel uiLabel11;
  3384. private Sunny.UI.UIDataGridView dgvClearingData;
  3385. private Sunny.UI.UIPanel uiPanel5;
  3386. private Sunny.UI.UIButton btnClose_3;
  3387. private Sunny.UI.UIButton btnQueryClearing;
  3388. private Sunny.UI.UIGroupBox uiGroupBox5;
  3389. private Sunny.UI.UIDatetimePicker dpED_3;
  3390. private Sunny.UI.UIDatetimePicker dpST_3;
  3391. private Sunny.UI.UIRadioButtonGroup rbgTimeWay;
  3392. private Sunny.UI.UIButton btnCancleClearing;
  3393. private System.Windows.Forms.TabPage tabPage10;
  3394. private Sunny.UI.UIPanel uiPanel7;
  3395. private Sunny.UI.UITabControl uiTabControl6;
  3396. private System.Windows.Forms.TabPage tabPage14;
  3397. private Sunny.UI.UIRichTextBox rtbOthCheckResultRecord;
  3398. private Sunny.UI.UITabControl uiTabControl7;
  3399. private System.Windows.Forms.TabPage tabPage15;
  3400. private Sunny.UI.UIDataGridView dgvOthCheck;
  3401. private Sunny.UI.UIPanel uiPanel6;
  3402. private Sunny.UI.UIGroupBox uiGroupBox7;
  3403. private Sunny.UI.UITextBox uiTextBox1;
  3404. private Sunny.UI.UIComboBox cbxValid_O;
  3405. private Sunny.UI.UILabel uiLabel12;
  3406. private Sunny.UI.UILabel uiLabel14;
  3407. private Sunny.UI.UIComboBox cbxClrType_O;
  3408. private Sunny.UI.UILabel uiLabel15;
  3409. private Sunny.UI.UIComboBox uiComboBox4;
  3410. private Sunny.UI.UILabel uiLabel16;
  3411. private Sunny.UI.UIGroupBox uiGroupBox8;
  3412. private Sunny.UI.UIButton uiButton1;
  3413. private Sunny.UI.UIButton uiButton2;
  3414. private Sunny.UI.UIButton uiButton3;
  3415. private Sunny.UI.UIGroupBox uiGroupBox9;
  3416. private Sunny.UI.UISymbolButton uiSymbolButton1;
  3417. private Sunny.UI.UISymbolButton uiSymbolButton2;
  3418. private Sunny.UI.UIDatetimePicker dpED_O;
  3419. private Sunny.UI.UIDatetimePicker dpST_O;
  3420. private Sunny.UI.UIComboBox cbOtherPlaceFlag;
  3421. private Sunny.UI.UILabel uiLabel19;
  3422. private Sunny.UI.UIContextMenuStrip cmdOthPlcCheck;
  3423. private System.Windows.Forms.ToolStripMenuItem tsmOthPlcCheck;
  3424. private Sunny.UI.UITextBox tbInsuPlc;
  3425. private Sunny.UI.UILabel uiLabel18;
  3426. private System.Windows.Forms.ToolStripMenuItem tsmHandCheck;
  3427. private System.Windows.Forms.RichTextBox tbTmp;
  3428. private Sunny.UI.UIButton btnQuerySettlSummary;
  3429. private Sunny.UI.UIGroupBox uiGroupBox3;
  3430. private Sunny.UI.UIButton btnClose_2;
  3431. private Sunny.UI.UIButton btnPatchClr;
  3432. private Sunny.UI.UIButton btnQueryClrSum;
  3433. private Sunny.UI.UIGroupBox uiGroupBox10;
  3434. private Sunny.UI.UIButton uiButton4;
  3435. private Sunny.UI.UIButton uiButton5;
  3436. private Sunny.UI.UIButton Btn_Query;
  3437. private System.Windows.Forms.TabPage tb_SetlQueryLocal;
  3438. private System.Windows.Forms.TabPage tb_HisAndInsuSetlDataCheck;
  3439. private Sunny.UI.UIRadioButtonGroup rg_ClearType;
  3440. private Sunny.UI.UIGroupBox uiGroupBox6;
  3441. private Sunny.UI.UIComboBox cbInterface_3;
  3442. private Sunny.UI.UIComboBox cbValid_3;
  3443. private Sunny.UI.UILabel uiLabel13;
  3444. private Sunny.UI.UILabel uiLabel17;
  3445. private Sunny.UI.UIRadioButtonGroup rg_querType;
  3446. private Sunny.UI.UIGroupBox uiGroupBox11;
  3447. private Sunny.UI.UIButton uiButton7;
  3448. private Sunny.UI.UIButton uiButton6;
  3449. private Sunny.UI.UIGroupBox uiGroupBox13;
  3450. private Sunny.UI.UITextBox tb_PsnNo;
  3451. private Sunny.UI.UITextBox tb_Certno;
  3452. private Sunny.UI.UITextBox tb_PageSize;
  3453. private Sunny.UI.UITextBox tb_PageNum;
  3454. private Sunny.UI.UILabel uiLabel23;
  3455. private Sunny.UI.UILabel uiLabel22;
  3456. private Sunny.UI.UILabel uiLabel21;
  3457. private Sunny.UI.UILabel uiLabel20;
  3458. private Sunny.UI.UICheckBox Chk_RefdSetlFlag;
  3459. private Sunny.UI.UIGroupBox uiGroupBox12;
  3460. private Sunny.UI.UISymbolButton uiSymbolButton3;
  3461. private Sunny.UI.UISymbolButton uiSymbolButton4;
  3462. private Sunny.UI.UIDatetimePicker dt_ET;
  3463. private Sunny.UI.UIDatetimePicker dt_ST;
  3464. private Sunny.UI.UIDataGridView dgv_Query_Page;
  3465. private Sunny.UI.UIDataGridView dgv_Query;
  3466. private Sunny.UI.UICheckBoxGroup chbg_BusinessType;
  3467. private Sunny.UI.UILabel uiLabel25;
  3468. private Sunny.UI.UILabel uiLabel24;
  3469. private Sunny.UI.UIComboBox cbxYllb;
  3470. private Sunny.UI.UILabel uiLabel26;
  3471. private Sunny.UI.UIButton uiButton8;
  3472. private Sunny.UI.UIContextMenuStrip cmsWznbd;
  3473. private System.Windows.Forms.ToolStripMenuItem Bdhisyb;
  3474. private Sunny.UI.UIButton uiButton9;
  3475. private System.Windows.Forms.ToolStripMenuItem tmsClearingBack2;
  3476. private Sunny.UI.UIButton uiButton10;
  3477. }
  3478. }