MedInsuQuery.designer.cs 204 KB

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