Clearing.Designer.cs 229 KB

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