PrescriptionCirculation.Designer.cs 191 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451
  1. 
  2. namespace PTMedicalInsurance.Forms
  3. {
  4. partial class PrescriptionCirculation
  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 dataGridViewCellStyle71 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle72 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle73 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle74 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle75 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle76 = new System.Windows.Forms.DataGridViewCellStyle();
  35. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle77 = new System.Windows.Forms.DataGridViewCellStyle();
  36. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle78 = new System.Windows.Forms.DataGridViewCellStyle();
  37. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle79 = new System.Windows.Forms.DataGridViewCellStyle();
  38. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle80 = new System.Windows.Forms.DataGridViewCellStyle();
  39. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle81 = new System.Windows.Forms.DataGridViewCellStyle();
  40. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle82 = new System.Windows.Forms.DataGridViewCellStyle();
  41. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle83 = new System.Windows.Forms.DataGridViewCellStyle();
  42. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle84 = new System.Windows.Forms.DataGridViewCellStyle();
  43. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle85 = new System.Windows.Forms.DataGridViewCellStyle();
  44. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle86 = new System.Windows.Forms.DataGridViewCellStyle();
  45. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle87 = new System.Windows.Forms.DataGridViewCellStyle();
  46. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle88 = new System.Windows.Forms.DataGridViewCellStyle();
  47. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle89 = new System.Windows.Forms.DataGridViewCellStyle();
  48. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle90 = new System.Windows.Forms.DataGridViewCellStyle();
  49. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle91 = new System.Windows.Forms.DataGridViewCellStyle();
  50. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle92 = new System.Windows.Forms.DataGridViewCellStyle();
  51. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle93 = new System.Windows.Forms.DataGridViewCellStyle();
  52. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle94 = new System.Windows.Forms.DataGridViewCellStyle();
  53. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle95 = new System.Windows.Forms.DataGridViewCellStyle();
  54. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle96 = new System.Windows.Forms.DataGridViewCellStyle();
  55. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle97 = new System.Windows.Forms.DataGridViewCellStyle();
  56. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle98 = new System.Windows.Forms.DataGridViewCellStyle();
  57. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle99 = new System.Windows.Forms.DataGridViewCellStyle();
  58. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle100 = new System.Windows.Forms.DataGridViewCellStyle();
  59. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle101 = new System.Windows.Forms.DataGridViewCellStyle();
  60. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle102 = new System.Windows.Forms.DataGridViewCellStyle();
  61. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle103 = new System.Windows.Forms.DataGridViewCellStyle();
  62. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle104 = new System.Windows.Forms.DataGridViewCellStyle();
  63. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle105 = new System.Windows.Forms.DataGridViewCellStyle();
  64. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle106 = new System.Windows.Forms.DataGridViewCellStyle();
  65. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle107 = new System.Windows.Forms.DataGridViewCellStyle();
  66. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle108 = new System.Windows.Forms.DataGridViewCellStyle();
  67. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle109 = new System.Windows.Forms.DataGridViewCellStyle();
  68. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle110 = new System.Windows.Forms.DataGridViewCellStyle();
  69. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle111 = new System.Windows.Forms.DataGridViewCellStyle();
  70. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle112 = new System.Windows.Forms.DataGridViewCellStyle();
  71. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle113 = new System.Windows.Forms.DataGridViewCellStyle();
  72. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle114 = new System.Windows.Forms.DataGridViewCellStyle();
  73. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle115 = new System.Windows.Forms.DataGridViewCellStyle();
  74. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle116 = new System.Windows.Forms.DataGridViewCellStyle();
  75. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle117 = new System.Windows.Forms.DataGridViewCellStyle();
  76. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle118 = new System.Windows.Forms.DataGridViewCellStyle();
  77. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle119 = new System.Windows.Forms.DataGridViewCellStyle();
  78. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle120 = new System.Windows.Forms.DataGridViewCellStyle();
  79. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle121 = new System.Windows.Forms.DataGridViewCellStyle();
  80. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle122 = new System.Windows.Forms.DataGridViewCellStyle();
  81. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle123 = new System.Windows.Forms.DataGridViewCellStyle();
  82. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle124 = new System.Windows.Forms.DataGridViewCellStyle();
  83. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle125 = new System.Windows.Forms.DataGridViewCellStyle();
  84. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle126 = new System.Windows.Forms.DataGridViewCellStyle();
  85. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle127 = new System.Windows.Forms.DataGridViewCellStyle();
  86. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle128 = new System.Windows.Forms.DataGridViewCellStyle();
  87. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle129 = new System.Windows.Forms.DataGridViewCellStyle();
  88. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle130 = new System.Windows.Forms.DataGridViewCellStyle();
  89. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle131 = new System.Windows.Forms.DataGridViewCellStyle();
  90. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle132 = new System.Windows.Forms.DataGridViewCellStyle();
  91. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle133 = new System.Windows.Forms.DataGridViewCellStyle();
  92. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle134 = new System.Windows.Forms.DataGridViewCellStyle();
  93. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle135 = new System.Windows.Forms.DataGridViewCellStyle();
  94. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle136 = new System.Windows.Forms.DataGridViewCellStyle();
  95. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle137 = new System.Windows.Forms.DataGridViewCellStyle();
  96. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle138 = new System.Windows.Forms.DataGridViewCellStyle();
  97. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle139 = new System.Windows.Forms.DataGridViewCellStyle();
  98. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle140 = new System.Windows.Forms.DataGridViewCellStyle();
  99. this.tc_Main = new Sunny.UI.UITabControl();
  100. this.tb_PresUpload = new System.Windows.Forms.TabPage();
  101. this.gb_HISInsuReg = new Sunny.UI.UIGroupBox();
  102. this.dgv_HISRegInfo = new Sunny.UI.UIDataGridView();
  103. this.gb_Prescription = new Sunny.UI.UIGroupBox();
  104. this.dgv_PrescriptionInfo = new Sunny.UI.UIDataGridView();
  105. this.uiPanel1 = new Sunny.UI.UIPanel();
  106. this.btnElcSign = new Sunny.UI.UIButton();
  107. this.uiLabel2 = new Sunny.UI.UILabel();
  108. this.uiLabel1 = new Sunny.UI.UILabel();
  109. this.dtED = new Sunny.UI.UIDatetimePicker();
  110. this.dtST = new Sunny.UI.UIDatetimePicker();
  111. this.tb_CertNo = new Sunny.UI.UITextBox();
  112. this.btnGetInfo = new Sunny.UI.UIButton();
  113. this.btnUpload_Pre = new Sunny.UI.UIButton();
  114. this.btnClose = new Sunny.UI.UIButton();
  115. this.btnPresUpload = new Sunny.UI.UIButton();
  116. this.tb_CancelPres = new System.Windows.Forms.TabPage();
  117. this.uiPanel2 = new Sunny.UI.UIPanel();
  118. this.uiLabel3 = new Sunny.UI.UILabel();
  119. this.uiLabel4 = new Sunny.UI.UILabel();
  120. this.dt_Et = new Sunny.UI.UIDatetimePicker();
  121. this.dt_St = new Sunny.UI.UIDatetimePicker();
  122. this.tb_CertnoQuery = new Sunny.UI.UITextBox();
  123. this.btnQuery = new Sunny.UI.UIButton();
  124. this.uiButton3 = new Sunny.UI.UIButton();
  125. this.btnCancel = new Sunny.UI.UIButton();
  126. this.cbx_DocInfo = new PTControl.DBLookupCombox();
  127. this.label4 = new System.Windows.Forms.Label();
  128. this.rtb_CancelReason = new Sunny.UI.UIRichTextBox();
  129. this.rg_type = new Sunny.UI.UIRadioButtonGroup();
  130. this.dgv_Master = new Sunny.UI.UIDataGridView();
  131. this.tb_PresToExaInfo = new System.Windows.Forms.TabPage();
  132. this.uiPanel3 = new Sunny.UI.UIPanel();
  133. this.uiLabel5 = new Sunny.UI.UILabel();
  134. this.uiLabel6 = new Sunny.UI.UILabel();
  135. this.dt_ET_Process = new Sunny.UI.UIDatetimePicker();
  136. this.dt_ST_Process = new Sunny.UI.UIDatetimePicker();
  137. this.uiTextBox1 = new Sunny.UI.UITextBox();
  138. this.btnTakeDrug = new Sunny.UI.UIButton();
  139. this.btn_QueryUploadInfo = new Sunny.UI.UIButton();
  140. this.uiButton4 = new Sunny.UI.UIButton();
  141. this.uiButton5 = new Sunny.UI.UIButton();
  142. this.uiGroupBox2 = new Sunny.UI.UIGroupBox();
  143. this.tbc_3 = new Sunny.UI.UITabControl();
  144. this.tpAuthResult = new System.Windows.Forms.TabPage();
  145. this.dgv_PresAuditResults = new Sunny.UI.UIDataGridView();
  146. this.tpTakeDrugResult = new System.Windows.Forms.TabPage();
  147. this.dgvTakeDrugResult = new Sunny.UI.UIDataGridView();
  148. this.panel1 = new System.Windows.Forms.Panel();
  149. this.uiLabel17 = new Sunny.UI.UILabel();
  150. this.tbRxUseStateName_3 = new Sunny.UI.UITextBox();
  151. this.uiLabel16 = new Sunny.UI.UILabel();
  152. this.tbRxUseStateNO_3 = new Sunny.UI.UITextBox();
  153. this.label111 = new Sunny.UI.UILabel();
  154. this.tbRxStateName_3 = new Sunny.UI.UITextBox();
  155. this.uiLabel14 = new Sunny.UI.UILabel();
  156. this.tbRxStateCode = new Sunny.UI.UITextBox();
  157. this.uiLabel13 = new Sunny.UI.UILabel();
  158. this.tbSettlTime_3 = new Sunny.UI.UITextBox();
  159. this.uiLabel12 = new Sunny.UI.UILabel();
  160. this.tbHiRxNO_3 = new Sunny.UI.UITextBox();
  161. this.uiGroupBox1 = new Sunny.UI.UIGroupBox();
  162. this.dgv_PresUploadInfo = new Sunny.UI.UIDataGridView();
  163. this.tb_PresInfo = new System.Windows.Forms.TabPage();
  164. this.uiGroupBox4 = new Sunny.UI.UIGroupBox();
  165. this.uiTabControl2 = new Sunny.UI.UITabControl();
  166. this.tp_PresMain = new System.Windows.Forms.TabPage();
  167. this.dgv_Main_tb = new Sunny.UI.UIDataGridView();
  168. this.tp_DetlList = new System.Windows.Forms.TabPage();
  169. this.dgv_DetlList_tb = new Sunny.UI.UIDataGridView();
  170. this.tp_Otpinfo = new System.Windows.Forms.TabPage();
  171. this.dgv_Otpinfo_tb = new Sunny.UI.UIDataGridView();
  172. this.tp_DiseList = new System.Windows.Forms.TabPage();
  173. this.dgv_DiseList_tb = new Sunny.UI.UIDataGridView();
  174. this.uiGroupBox3 = new Sunny.UI.UIGroupBox();
  175. this.dgv_PresPreChekInfo = new Sunny.UI.UIDataGridView();
  176. this.uiPanel4 = new Sunny.UI.UIPanel();
  177. this.tb_QueryPresPreCheck = new Sunny.UI.UIButton();
  178. this.uiButton6 = new Sunny.UI.UIButton();
  179. this.btn_InsuQuery = new Sunny.UI.UIButton();
  180. this.uiLabel7 = new Sunny.UI.UILabel();
  181. this.uiLabel8 = new Sunny.UI.UILabel();
  182. this.dt_ET_PPC = new Sunny.UI.UIDatetimePicker();
  183. this.dt_ST_PPC = new Sunny.UI.UIDatetimePicker();
  184. this.tb_PresCertNo = new Sunny.UI.UITextBox();
  185. this.tb_QueryDrug = new System.Windows.Forms.TabPage();
  186. this.gbStoreAndDrug = new Sunny.UI.UIGroupBox();
  187. this.uiTabControl1 = new Sunny.UI.UITabControl();
  188. this.tabPage1 = new System.Windows.Forms.TabPage();
  189. this.dgvStore = new Sunny.UI.UIDataGridView();
  190. this.tabPage2 = new System.Windows.Forms.TabPage();
  191. this.dgvInventory = new Sunny.UI.UIDataGridView();
  192. this.uiPanel5 = new Sunny.UI.UIPanel();
  193. this.btnQueryRxInfo = new Sunny.UI.UIButton();
  194. this.btnClose_5 = new Sunny.UI.UIButton();
  195. this.btnQueryDrugStoreInfo = new Sunny.UI.UIButton();
  196. this.tbHiRxno = new Sunny.UI.UITextBox();
  197. this.uiLabel9 = new Sunny.UI.UILabel();
  198. this.gbRxInfo = new Sunny.UI.UIGroupBox();
  199. this.dgvRxDetail = new Sunny.UI.UIDataGridView();
  200. this.tc_Main.SuspendLayout();
  201. this.tb_PresUpload.SuspendLayout();
  202. this.gb_HISInsuReg.SuspendLayout();
  203. ((System.ComponentModel.ISupportInitialize)(this.dgv_HISRegInfo)).BeginInit();
  204. this.gb_Prescription.SuspendLayout();
  205. ((System.ComponentModel.ISupportInitialize)(this.dgv_PrescriptionInfo)).BeginInit();
  206. this.uiPanel1.SuspendLayout();
  207. this.tb_CancelPres.SuspendLayout();
  208. this.uiPanel2.SuspendLayout();
  209. ((System.ComponentModel.ISupportInitialize)(this.dgv_Master)).BeginInit();
  210. this.tb_PresToExaInfo.SuspendLayout();
  211. this.uiPanel3.SuspendLayout();
  212. this.uiGroupBox2.SuspendLayout();
  213. this.tbc_3.SuspendLayout();
  214. this.tpAuthResult.SuspendLayout();
  215. ((System.ComponentModel.ISupportInitialize)(this.dgv_PresAuditResults)).BeginInit();
  216. this.tpTakeDrugResult.SuspendLayout();
  217. ((System.ComponentModel.ISupportInitialize)(this.dgvTakeDrugResult)).BeginInit();
  218. this.panel1.SuspendLayout();
  219. this.uiGroupBox1.SuspendLayout();
  220. ((System.ComponentModel.ISupportInitialize)(this.dgv_PresUploadInfo)).BeginInit();
  221. this.tb_PresInfo.SuspendLayout();
  222. this.uiGroupBox4.SuspendLayout();
  223. this.uiTabControl2.SuspendLayout();
  224. this.tp_PresMain.SuspendLayout();
  225. ((System.ComponentModel.ISupportInitialize)(this.dgv_Main_tb)).BeginInit();
  226. this.tp_DetlList.SuspendLayout();
  227. ((System.ComponentModel.ISupportInitialize)(this.dgv_DetlList_tb)).BeginInit();
  228. this.tp_Otpinfo.SuspendLayout();
  229. ((System.ComponentModel.ISupportInitialize)(this.dgv_Otpinfo_tb)).BeginInit();
  230. this.tp_DiseList.SuspendLayout();
  231. ((System.ComponentModel.ISupportInitialize)(this.dgv_DiseList_tb)).BeginInit();
  232. this.uiGroupBox3.SuspendLayout();
  233. ((System.ComponentModel.ISupportInitialize)(this.dgv_PresPreChekInfo)).BeginInit();
  234. this.uiPanel4.SuspendLayout();
  235. this.tb_QueryDrug.SuspendLayout();
  236. this.gbStoreAndDrug.SuspendLayout();
  237. this.uiTabControl1.SuspendLayout();
  238. this.tabPage1.SuspendLayout();
  239. ((System.ComponentModel.ISupportInitialize)(this.dgvStore)).BeginInit();
  240. this.tabPage2.SuspendLayout();
  241. ((System.ComponentModel.ISupportInitialize)(this.dgvInventory)).BeginInit();
  242. this.uiPanel5.SuspendLayout();
  243. this.gbRxInfo.SuspendLayout();
  244. ((System.ComponentModel.ISupportInitialize)(this.dgvRxDetail)).BeginInit();
  245. this.SuspendLayout();
  246. //
  247. // tc_Main
  248. //
  249. this.tc_Main.Controls.Add(this.tb_PresUpload);
  250. this.tc_Main.Controls.Add(this.tb_CancelPres);
  251. this.tc_Main.Controls.Add(this.tb_PresToExaInfo);
  252. this.tc_Main.Controls.Add(this.tb_PresInfo);
  253. this.tc_Main.Controls.Add(this.tb_QueryDrug);
  254. this.tc_Main.Dock = System.Windows.Forms.DockStyle.Fill;
  255. this.tc_Main.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  256. this.tc_Main.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  257. this.tc_Main.ItemSize = new System.Drawing.Size(180, 40);
  258. this.tc_Main.Location = new System.Drawing.Point(0, 0);
  259. this.tc_Main.MainPage = "";
  260. this.tc_Main.Name = "tc_Main";
  261. this.tc_Main.SelectedIndex = 0;
  262. this.tc_Main.Size = new System.Drawing.Size(1365, 717);
  263. this.tc_Main.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  264. this.tc_Main.TabIndex = 0;
  265. this.tc_Main.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  266. this.tc_Main.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  267. //
  268. // tb_PresUpload
  269. //
  270. this.tb_PresUpload.Controls.Add(this.gb_HISInsuReg);
  271. this.tb_PresUpload.Controls.Add(this.gb_Prescription);
  272. this.tb_PresUpload.Controls.Add(this.uiPanel1);
  273. this.tb_PresUpload.Location = new System.Drawing.Point(0, 40);
  274. this.tb_PresUpload.Name = "tb_PresUpload";
  275. this.tb_PresUpload.Size = new System.Drawing.Size(1365, 677);
  276. this.tb_PresUpload.TabIndex = 0;
  277. this.tb_PresUpload.Text = "电子处方上传";
  278. this.tb_PresUpload.UseVisualStyleBackColor = true;
  279. //
  280. // gb_HISInsuReg
  281. //
  282. this.gb_HISInsuReg.Controls.Add(this.dgv_HISRegInfo);
  283. this.gb_HISInsuReg.Dock = System.Windows.Forms.DockStyle.Fill;
  284. this.gb_HISInsuReg.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  285. this.gb_HISInsuReg.Location = new System.Drawing.Point(0, 0);
  286. this.gb_HISInsuReg.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  287. this.gb_HISInsuReg.MinimumSize = new System.Drawing.Size(1, 1);
  288. this.gb_HISInsuReg.Name = "gb_HISInsuReg";
  289. this.gb_HISInsuReg.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  290. this.gb_HISInsuReg.Size = new System.Drawing.Size(1365, 296);
  291. this.gb_HISInsuReg.TabIndex = 9;
  292. this.gb_HISInsuReg.Text = "HIS就诊信息(点击查看处方明细)";
  293. this.gb_HISInsuReg.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  294. this.gb_HISInsuReg.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  295. //
  296. // dgv_HISRegInfo
  297. //
  298. this.dgv_HISRegInfo.AllowUserToAddRows = false;
  299. dataGridViewCellStyle71.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  300. this.dgv_HISRegInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle71;
  301. this.dgv_HISRegInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  302. this.dgv_HISRegInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  303. dataGridViewCellStyle72.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  304. dataGridViewCellStyle72.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  305. dataGridViewCellStyle72.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  306. dataGridViewCellStyle72.ForeColor = System.Drawing.Color.White;
  307. dataGridViewCellStyle72.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  308. dataGridViewCellStyle72.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  309. dataGridViewCellStyle72.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  310. this.dgv_HISRegInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle72;
  311. this.dgv_HISRegInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  312. dataGridViewCellStyle73.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  313. dataGridViewCellStyle73.BackColor = System.Drawing.Color.White;
  314. dataGridViewCellStyle73.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  315. dataGridViewCellStyle73.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  316. dataGridViewCellStyle73.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  317. dataGridViewCellStyle73.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  318. dataGridViewCellStyle73.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  319. this.dgv_HISRegInfo.DefaultCellStyle = dataGridViewCellStyle73;
  320. this.dgv_HISRegInfo.Dock = System.Windows.Forms.DockStyle.Fill;
  321. this.dgv_HISRegInfo.EnableHeadersVisualStyles = false;
  322. this.dgv_HISRegInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  323. this.dgv_HISRegInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  324. this.dgv_HISRegInfo.Location = new System.Drawing.Point(0, 32);
  325. this.dgv_HISRegInfo.Name = "dgv_HISRegInfo";
  326. dataGridViewCellStyle74.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  327. dataGridViewCellStyle74.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  328. dataGridViewCellStyle74.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  329. dataGridViewCellStyle74.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  330. dataGridViewCellStyle74.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  331. dataGridViewCellStyle74.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  332. dataGridViewCellStyle74.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  333. this.dgv_HISRegInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle74;
  334. dataGridViewCellStyle75.BackColor = System.Drawing.Color.White;
  335. dataGridViewCellStyle75.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  336. dataGridViewCellStyle75.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  337. dataGridViewCellStyle75.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  338. dataGridViewCellStyle75.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  339. this.dgv_HISRegInfo.RowsDefaultCellStyle = dataGridViewCellStyle75;
  340. this.dgv_HISRegInfo.RowTemplate.Height = 23;
  341. this.dgv_HISRegInfo.SelectedIndex = -1;
  342. this.dgv_HISRegInfo.Size = new System.Drawing.Size(1365, 264);
  343. this.dgv_HISRegInfo.TabIndex = 5;
  344. this.dgv_HISRegInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  345. //
  346. // gb_Prescription
  347. //
  348. this.gb_Prescription.Controls.Add(this.dgv_PrescriptionInfo);
  349. this.gb_Prescription.Dock = System.Windows.Forms.DockStyle.Bottom;
  350. this.gb_Prescription.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  351. this.gb_Prescription.Location = new System.Drawing.Point(0, 296);
  352. this.gb_Prescription.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  353. this.gb_Prescription.MinimumSize = new System.Drawing.Size(1, 1);
  354. this.gb_Prescription.Name = "gb_Prescription";
  355. this.gb_Prescription.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  356. this.gb_Prescription.Size = new System.Drawing.Size(1365, 298);
  357. this.gb_Prescription.TabIndex = 6;
  358. this.gb_Prescription.Text = "处方信息";
  359. this.gb_Prescription.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  360. this.gb_Prescription.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  361. //
  362. // dgv_PrescriptionInfo
  363. //
  364. this.dgv_PrescriptionInfo.AllowUserToAddRows = false;
  365. dataGridViewCellStyle76.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  366. this.dgv_PrescriptionInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle76;
  367. this.dgv_PrescriptionInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  368. this.dgv_PrescriptionInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  369. dataGridViewCellStyle77.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  370. dataGridViewCellStyle77.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  371. dataGridViewCellStyle77.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  372. dataGridViewCellStyle77.ForeColor = System.Drawing.Color.White;
  373. dataGridViewCellStyle77.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  374. dataGridViewCellStyle77.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  375. dataGridViewCellStyle77.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  376. this.dgv_PrescriptionInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle77;
  377. this.dgv_PrescriptionInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  378. dataGridViewCellStyle78.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  379. dataGridViewCellStyle78.BackColor = System.Drawing.Color.White;
  380. dataGridViewCellStyle78.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  381. dataGridViewCellStyle78.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  382. dataGridViewCellStyle78.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  383. dataGridViewCellStyle78.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  384. dataGridViewCellStyle78.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  385. this.dgv_PrescriptionInfo.DefaultCellStyle = dataGridViewCellStyle78;
  386. this.dgv_PrescriptionInfo.Dock = System.Windows.Forms.DockStyle.Fill;
  387. this.dgv_PrescriptionInfo.EnableHeadersVisualStyles = false;
  388. this.dgv_PrescriptionInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  389. this.dgv_PrescriptionInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  390. this.dgv_PrescriptionInfo.Location = new System.Drawing.Point(0, 32);
  391. this.dgv_PrescriptionInfo.Name = "dgv_PrescriptionInfo";
  392. dataGridViewCellStyle79.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  393. dataGridViewCellStyle79.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  394. dataGridViewCellStyle79.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  395. dataGridViewCellStyle79.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  396. dataGridViewCellStyle79.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  397. dataGridViewCellStyle79.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  398. dataGridViewCellStyle79.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  399. this.dgv_PrescriptionInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle79;
  400. dataGridViewCellStyle80.BackColor = System.Drawing.Color.White;
  401. dataGridViewCellStyle80.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  402. dataGridViewCellStyle80.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  403. dataGridViewCellStyle80.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  404. dataGridViewCellStyle80.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  405. this.dgv_PrescriptionInfo.RowsDefaultCellStyle = dataGridViewCellStyle80;
  406. this.dgv_PrescriptionInfo.RowTemplate.Height = 23;
  407. this.dgv_PrescriptionInfo.SelectedIndex = -1;
  408. this.dgv_PrescriptionInfo.Size = new System.Drawing.Size(1365, 266);
  409. this.dgv_PrescriptionInfo.TabIndex = 5;
  410. this.dgv_PrescriptionInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  411. //
  412. // uiPanel1
  413. //
  414. this.uiPanel1.Controls.Add(this.btnElcSign);
  415. this.uiPanel1.Controls.Add(this.uiLabel2);
  416. this.uiPanel1.Controls.Add(this.uiLabel1);
  417. this.uiPanel1.Controls.Add(this.dtED);
  418. this.uiPanel1.Controls.Add(this.dtST);
  419. this.uiPanel1.Controls.Add(this.tb_CertNo);
  420. this.uiPanel1.Controls.Add(this.btnGetInfo);
  421. this.uiPanel1.Controls.Add(this.btnUpload_Pre);
  422. this.uiPanel1.Controls.Add(this.btnClose);
  423. this.uiPanel1.Controls.Add(this.btnPresUpload);
  424. this.uiPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
  425. this.uiPanel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  426. this.uiPanel1.Location = new System.Drawing.Point(0, 594);
  427. this.uiPanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  428. this.uiPanel1.MinimumSize = new System.Drawing.Size(1, 1);
  429. this.uiPanel1.Name = "uiPanel1";
  430. this.uiPanel1.Size = new System.Drawing.Size(1365, 83);
  431. this.uiPanel1.TabIndex = 0;
  432. this.uiPanel1.Text = null;
  433. this.uiPanel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  434. this.uiPanel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  435. //
  436. // btnElcSign
  437. //
  438. this.btnElcSign.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  439. this.btnElcSign.Cursor = System.Windows.Forms.Cursors.Hand;
  440. this.btnElcSign.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  441. this.btnElcSign.Location = new System.Drawing.Point(1003, 11);
  442. this.btnElcSign.MinimumSize = new System.Drawing.Size(1, 1);
  443. this.btnElcSign.Name = "btnElcSign";
  444. this.btnElcSign.Size = new System.Drawing.Size(119, 62);
  445. this.btnElcSign.TabIndex = 40;
  446. this.btnElcSign.Text = "3.电子签名";
  447. this.btnElcSign.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  448. this.btnElcSign.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  449. this.btnElcSign.Click += new System.EventHandler(this.btnElcSign_Click);
  450. //
  451. // uiLabel2
  452. //
  453. this.uiLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  454. this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  455. this.uiLabel2.Location = new System.Drawing.Point(309, 11);
  456. this.uiLabel2.Name = "uiLabel2";
  457. this.uiLabel2.Size = new System.Drawing.Size(90, 23);
  458. this.uiLabel2.TabIndex = 39;
  459. this.uiLabel2.Text = "身份证号:";
  460. this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  461. this.uiLabel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  462. //
  463. // uiLabel1
  464. //
  465. this.uiLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  466. this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  467. this.uiLabel1.Location = new System.Drawing.Point(16, 11);
  468. this.uiLabel1.Name = "uiLabel1";
  469. this.uiLabel1.Size = new System.Drawing.Size(90, 23);
  470. this.uiLabel1.TabIndex = 38;
  471. this.uiLabel1.Text = "查询时间:";
  472. this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  473. this.uiLabel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  474. //
  475. // dtED
  476. //
  477. this.dtED.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  478. this.dtED.FillColor = System.Drawing.Color.White;
  479. this.dtED.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  480. this.dtED.Location = new System.Drawing.Point(109, 44);
  481. this.dtED.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  482. this.dtED.MaxLength = 19;
  483. this.dtED.MinimumSize = new System.Drawing.Size(63, 0);
  484. this.dtED.Name = "dtED";
  485. this.dtED.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  486. this.dtED.Size = new System.Drawing.Size(183, 29);
  487. this.dtED.SymbolDropDown = 61555;
  488. this.dtED.SymbolNormal = 61555;
  489. this.dtED.TabIndex = 37;
  490. this.dtED.Text = "2023-06-15 00:00:00";
  491. this.dtED.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  492. this.dtED.Value = new System.DateTime(2023, 6, 15, 0, 0, 0, 0);
  493. this.dtED.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  494. //
  495. // dtST
  496. //
  497. this.dtST.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  498. this.dtST.FillColor = System.Drawing.Color.White;
  499. this.dtST.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  500. this.dtST.Location = new System.Drawing.Point(109, 9);
  501. this.dtST.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  502. this.dtST.MaxLength = 19;
  503. this.dtST.MinimumSize = new System.Drawing.Size(63, 0);
  504. this.dtST.Name = "dtST";
  505. this.dtST.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  506. this.dtST.Size = new System.Drawing.Size(183, 29);
  507. this.dtST.SymbolDropDown = 61555;
  508. this.dtST.SymbolNormal = 61555;
  509. this.dtST.TabIndex = 36;
  510. this.dtST.Text = "2023-06-14 00:00:00";
  511. this.dtST.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  512. this.dtST.Value = new System.DateTime(2023, 6, 14, 0, 0, 0, 0);
  513. this.dtST.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  514. //
  515. // tb_CertNo
  516. //
  517. this.tb_CertNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  518. this.tb_CertNo.Cursor = System.Windows.Forms.Cursors.IBeam;
  519. this.tb_CertNo.DoubleValue = 4.3042419900810061E+17D;
  520. this.tb_CertNo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  521. this.tb_CertNo.Location = new System.Drawing.Point(307, 44);
  522. this.tb_CertNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  523. this.tb_CertNo.MinimumSize = new System.Drawing.Size(1, 16);
  524. this.tb_CertNo.Name = "tb_CertNo";
  525. this.tb_CertNo.ShowText = false;
  526. this.tb_CertNo.Size = new System.Drawing.Size(175, 29);
  527. this.tb_CertNo.TabIndex = 30;
  528. this.tb_CertNo.Text = "430424199008100625";
  529. this.tb_CertNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  530. this.tb_CertNo.Watermark = "请输入身份证号";
  531. this.tb_CertNo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  532. //
  533. // btnGetInfo
  534. //
  535. this.btnGetInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  536. this.btnGetInfo.Cursor = System.Windows.Forms.Cursors.Hand;
  537. this.btnGetInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  538. this.btnGetInfo.Location = new System.Drawing.Point(499, 11);
  539. this.btnGetInfo.MinimumSize = new System.Drawing.Size(1, 1);
  540. this.btnGetInfo.Name = "btnGetInfo";
  541. this.btnGetInfo.Size = new System.Drawing.Size(111, 62);
  542. this.btnGetInfo.TabIndex = 29;
  543. this.btnGetInfo.Text = "1.查 询";
  544. this.btnGetInfo.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  545. this.btnGetInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  546. this.btnGetInfo.Click += new System.EventHandler(this.btnReadCard_Click);
  547. //
  548. // btnUpload_Pre
  549. //
  550. this.btnUpload_Pre.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  551. this.btnUpload_Pre.Cursor = System.Windows.Forms.Cursors.Hand;
  552. this.btnUpload_Pre.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  553. this.btnUpload_Pre.Location = new System.Drawing.Point(882, 11);
  554. this.btnUpload_Pre.MinimumSize = new System.Drawing.Size(1, 1);
  555. this.btnUpload_Pre.Name = "btnUpload_Pre";
  556. this.btnUpload_Pre.Size = new System.Drawing.Size(119, 62);
  557. this.btnUpload_Pre.TabIndex = 2;
  558. this.btnUpload_Pre.Text = "2.预核验";
  559. this.btnUpload_Pre.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  560. this.btnUpload_Pre.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  561. this.btnUpload_Pre.Click += new System.EventHandler(this.btnUpload_Pre_Click);
  562. //
  563. // btnClose
  564. //
  565. this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  566. this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand;
  567. this.btnClose.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  568. this.btnClose.Location = new System.Drawing.Point(1254, 11);
  569. this.btnClose.MinimumSize = new System.Drawing.Size(1, 1);
  570. this.btnClose.Name = "btnClose";
  571. this.btnClose.Size = new System.Drawing.Size(107, 62);
  572. this.btnClose.TabIndex = 1;
  573. this.btnClose.Text = "退 出";
  574. this.btnClose.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  575. this.btnClose.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  576. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  577. //
  578. // btnPresUpload
  579. //
  580. this.btnPresUpload.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  581. this.btnPresUpload.Cursor = System.Windows.Forms.Cursors.Hand;
  582. this.btnPresUpload.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  583. this.btnPresUpload.Location = new System.Drawing.Point(1124, 11);
  584. this.btnPresUpload.MinimumSize = new System.Drawing.Size(1, 1);
  585. this.btnPresUpload.Name = "btnPresUpload";
  586. this.btnPresUpload.Size = new System.Drawing.Size(119, 62);
  587. this.btnPresUpload.TabIndex = 0;
  588. this.btnPresUpload.Text = "4.确认上传";
  589. this.btnPresUpload.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  590. this.btnPresUpload.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  591. this.btnPresUpload.Click += new System.EventHandler(this.btnPresUpload_Click);
  592. //
  593. // tb_CancelPres
  594. //
  595. this.tb_CancelPres.Controls.Add(this.uiPanel2);
  596. this.tb_CancelPres.Controls.Add(this.dgv_Master);
  597. this.tb_CancelPres.Location = new System.Drawing.Point(0, 40);
  598. this.tb_CancelPres.Name = "tb_CancelPres";
  599. this.tb_CancelPres.Size = new System.Drawing.Size(1365, 677);
  600. this.tb_CancelPres.TabIndex = 1;
  601. this.tb_CancelPres.Text = "电子处方撤销";
  602. this.tb_CancelPres.UseVisualStyleBackColor = true;
  603. //
  604. // uiPanel2
  605. //
  606. this.uiPanel2.Controls.Add(this.uiLabel3);
  607. this.uiPanel2.Controls.Add(this.uiLabel4);
  608. this.uiPanel2.Controls.Add(this.dt_Et);
  609. this.uiPanel2.Controls.Add(this.dt_St);
  610. this.uiPanel2.Controls.Add(this.tb_CertnoQuery);
  611. this.uiPanel2.Controls.Add(this.btnQuery);
  612. this.uiPanel2.Controls.Add(this.uiButton3);
  613. this.uiPanel2.Controls.Add(this.btnCancel);
  614. this.uiPanel2.Controls.Add(this.cbx_DocInfo);
  615. this.uiPanel2.Controls.Add(this.label4);
  616. this.uiPanel2.Controls.Add(this.rtb_CancelReason);
  617. this.uiPanel2.Controls.Add(this.rg_type);
  618. this.uiPanel2.Dock = System.Windows.Forms.DockStyle.Bottom;
  619. this.uiPanel2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  620. this.uiPanel2.Location = new System.Drawing.Point(0, 576);
  621. this.uiPanel2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  622. this.uiPanel2.MinimumSize = new System.Drawing.Size(1, 1);
  623. this.uiPanel2.Name = "uiPanel2";
  624. this.uiPanel2.Size = new System.Drawing.Size(1365, 101);
  625. this.uiPanel2.TabIndex = 9;
  626. this.uiPanel2.Text = null;
  627. this.uiPanel2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  628. this.uiPanel2.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(19, 70);
  635. this.uiLabel3.Name = "uiLabel3";
  636. this.uiLabel3.Size = new System.Drawing.Size(90, 23);
  637. this.uiLabel3.TabIndex = 51;
  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. // uiLabel4
  643. //
  644. this.uiLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  645. this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  646. this.uiLabel4.Location = new System.Drawing.Point(19, 10);
  647. this.uiLabel4.Name = "uiLabel4";
  648. this.uiLabel4.Size = new System.Drawing.Size(90, 23);
  649. this.uiLabel4.TabIndex = 50;
  650. this.uiLabel4.Text = "查询时间:";
  651. this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  652. this.uiLabel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  653. //
  654. // dt_Et
  655. //
  656. this.dt_Et.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  657. this.dt_Et.FillColor = System.Drawing.Color.White;
  658. this.dt_Et.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  659. this.dt_Et.Location = new System.Drawing.Point(115, 37);
  660. this.dt_Et.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  661. this.dt_Et.MaxLength = 19;
  662. this.dt_Et.MinimumSize = new System.Drawing.Size(63, 0);
  663. this.dt_Et.Name = "dt_Et";
  664. this.dt_Et.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  665. this.dt_Et.Size = new System.Drawing.Size(198, 29);
  666. this.dt_Et.SymbolDropDown = 61555;
  667. this.dt_Et.SymbolNormal = 61555;
  668. this.dt_Et.TabIndex = 49;
  669. this.dt_Et.Text = "2023-06-15 00:00:00";
  670. this.dt_Et.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  671. this.dt_Et.Value = new System.DateTime(2023, 6, 15, 0, 0, 0, 0);
  672. this.dt_Et.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  673. //
  674. // dt_St
  675. //
  676. this.dt_St.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  677. this.dt_St.FillColor = System.Drawing.Color.White;
  678. this.dt_St.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  679. this.dt_St.Location = new System.Drawing.Point(115, 7);
  680. this.dt_St.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  681. this.dt_St.MaxLength = 19;
  682. this.dt_St.MinimumSize = new System.Drawing.Size(63, 0);
  683. this.dt_St.Name = "dt_St";
  684. this.dt_St.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  685. this.dt_St.Size = new System.Drawing.Size(198, 29);
  686. this.dt_St.SymbolDropDown = 61555;
  687. this.dt_St.SymbolNormal = 61555;
  688. this.dt_St.TabIndex = 48;
  689. this.dt_St.Text = "2023-06-14 00:00:00";
  690. this.dt_St.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  691. this.dt_St.Value = new System.DateTime(2023, 6, 14, 0, 0, 0, 0);
  692. this.dt_St.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  693. //
  694. // tb_CertnoQuery
  695. //
  696. this.tb_CertnoQuery.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  697. this.tb_CertnoQuery.Cursor = System.Windows.Forms.Cursors.IBeam;
  698. this.tb_CertnoQuery.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  699. this.tb_CertnoQuery.Location = new System.Drawing.Point(115, 67);
  700. this.tb_CertnoQuery.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  701. this.tb_CertnoQuery.MinimumSize = new System.Drawing.Size(1, 16);
  702. this.tb_CertnoQuery.Name = "tb_CertnoQuery";
  703. this.tb_CertnoQuery.ShowText = false;
  704. this.tb_CertnoQuery.Size = new System.Drawing.Size(198, 29);
  705. this.tb_CertnoQuery.TabIndex = 47;
  706. this.tb_CertnoQuery.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  707. this.tb_CertnoQuery.Watermark = "请输入身份证号";
  708. this.tb_CertnoQuery.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  709. //
  710. // btnQuery
  711. //
  712. this.btnQuery.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  713. this.btnQuery.Cursor = System.Windows.Forms.Cursors.Hand;
  714. this.btnQuery.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  715. this.btnQuery.Location = new System.Drawing.Point(1024, 14);
  716. this.btnQuery.MinimumSize = new System.Drawing.Size(1, 1);
  717. this.btnQuery.Name = "btnQuery";
  718. this.btnQuery.Size = new System.Drawing.Size(114, 75);
  719. this.btnQuery.TabIndex = 46;
  720. this.btnQuery.Text = "查 询";
  721. this.btnQuery.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  722. this.btnQuery.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  723. this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
  724. //
  725. // uiButton3
  726. //
  727. this.uiButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  728. this.uiButton3.Cursor = System.Windows.Forms.Cursors.Hand;
  729. this.uiButton3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  730. this.uiButton3.Location = new System.Drawing.Point(1254, 14);
  731. this.uiButton3.MinimumSize = new System.Drawing.Size(1, 1);
  732. this.uiButton3.Name = "uiButton3";
  733. this.uiButton3.Size = new System.Drawing.Size(106, 75);
  734. this.uiButton3.TabIndex = 45;
  735. this.uiButton3.Text = "退 出";
  736. this.uiButton3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  737. this.uiButton3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  738. this.uiButton3.Click += new System.EventHandler(this.btnClose_Click);
  739. //
  740. // btnCancel
  741. //
  742. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  743. this.btnCancel.Cursor = System.Windows.Forms.Cursors.Hand;
  744. this.btnCancel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  745. this.btnCancel.Location = new System.Drawing.Point(1139, 14);
  746. this.btnCancel.MinimumSize = new System.Drawing.Size(1, 1);
  747. this.btnCancel.Name = "btnCancel";
  748. this.btnCancel.Size = new System.Drawing.Size(114, 75);
  749. this.btnCancel.TabIndex = 44;
  750. this.btnCancel.Text = "确认撤销";
  751. this.btnCancel.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  752. this.btnCancel.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  753. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  754. //
  755. // cbx_DocInfo
  756. //
  757. this.cbx_DocInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  758. this.cbx_DocInfo.FormattingEnabled = true;
  759. this.cbx_DocInfo.Location = new System.Drawing.Point(649, 7);
  760. this.cbx_DocInfo.Name = "cbx_DocInfo";
  761. this.cbx_DocInfo.NullValue = "";
  762. this.cbx_DocInfo.PopupGridAutoSize = false;
  763. this.cbx_DocInfo.RowFilterVisible = false;
  764. this.cbx_DocInfo.sDisplayField = "";
  765. this.cbx_DocInfo.sDisplayMember = "";
  766. this.cbx_DocInfo.SeparatorChar = "|";
  767. this.cbx_DocInfo.Size = new System.Drawing.Size(230, 29);
  768. this.cbx_DocInfo.sKeyWords = "";
  769. this.cbx_DocInfo.sValueMember = "";
  770. this.cbx_DocInfo.TabIndex = 43;
  771. this.cbx_DocInfo.Value = "";
  772. this.cbx_DocInfo.AfterSelector += new PTControl.AfterSelectorEventHandler(this.cbx_DocInfo_AfterSelector);
  773. //
  774. // label4
  775. //
  776. this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  777. this.label4.AutoSize = true;
  778. this.label4.ForeColor = System.Drawing.SystemColors.InfoText;
  779. this.label4.Location = new System.Drawing.Point(552, 11);
  780. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  781. this.label4.Name = "label4";
  782. this.label4.Size = new System.Drawing.Size(90, 21);
  783. this.label4.TabIndex = 42;
  784. this.label4.Text = "撤销医师:";
  785. //
  786. // rtb_CancelReason
  787. //
  788. this.rtb_CancelReason.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  789. this.rtb_CancelReason.FillColor = System.Drawing.Color.White;
  790. this.rtb_CancelReason.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  791. this.rtb_CancelReason.Location = new System.Drawing.Point(552, 37);
  792. this.rtb_CancelReason.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  793. this.rtb_CancelReason.MinimumSize = new System.Drawing.Size(1, 1);
  794. this.rtb_CancelReason.Name = "rtb_CancelReason";
  795. this.rtb_CancelReason.Padding = new System.Windows.Forms.Padding(2);
  796. this.rtb_CancelReason.ShowText = false;
  797. this.rtb_CancelReason.Size = new System.Drawing.Size(328, 58);
  798. this.rtb_CancelReason.TabIndex = 41;
  799. this.rtb_CancelReason.Text = "请输入撤销原因";
  800. this.rtb_CancelReason.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  801. this.rtb_CancelReason.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  802. //
  803. // rg_type
  804. //
  805. this.rg_type.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  806. | System.Windows.Forms.AnchorStyles.Left)));
  807. this.rg_type.ColumnCount = 2;
  808. this.rg_type.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  809. this.rg_type.Items.AddRange(new object[] {
  810. "全部",
  811. "已上传",
  812. "已撤销"});
  813. this.rg_type.ItemSize = new System.Drawing.Size(100, 35);
  814. this.rg_type.Location = new System.Drawing.Point(321, 1);
  815. this.rg_type.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  816. this.rg_type.MinimumSize = new System.Drawing.Size(1, 1);
  817. this.rg_type.Name = "rg_type";
  818. this.rg_type.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  819. this.rg_type.Size = new System.Drawing.Size(222, 95);
  820. this.rg_type.TabIndex = 40;
  821. this.rg_type.Text = "上传状态";
  822. this.rg_type.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  823. this.rg_type.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  824. //
  825. // dgv_Master
  826. //
  827. this.dgv_Master.AllowUserToAddRows = false;
  828. dataGridViewCellStyle81.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  829. this.dgv_Master.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle81;
  830. this.dgv_Master.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  831. this.dgv_Master.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  832. dataGridViewCellStyle82.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  833. dataGridViewCellStyle82.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  834. dataGridViewCellStyle82.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  835. dataGridViewCellStyle82.ForeColor = System.Drawing.Color.White;
  836. dataGridViewCellStyle82.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  837. dataGridViewCellStyle82.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  838. dataGridViewCellStyle82.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  839. this.dgv_Master.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle82;
  840. this.dgv_Master.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  841. dataGridViewCellStyle83.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  842. dataGridViewCellStyle83.BackColor = System.Drawing.Color.White;
  843. dataGridViewCellStyle83.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  844. dataGridViewCellStyle83.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  845. dataGridViewCellStyle83.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  846. dataGridViewCellStyle83.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  847. dataGridViewCellStyle83.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  848. this.dgv_Master.DefaultCellStyle = dataGridViewCellStyle83;
  849. this.dgv_Master.Dock = System.Windows.Forms.DockStyle.Fill;
  850. this.dgv_Master.EnableHeadersVisualStyles = false;
  851. this.dgv_Master.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  852. this.dgv_Master.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  853. this.dgv_Master.Location = new System.Drawing.Point(0, 0);
  854. this.dgv_Master.Name = "dgv_Master";
  855. dataGridViewCellStyle84.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  856. dataGridViewCellStyle84.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  857. dataGridViewCellStyle84.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  858. dataGridViewCellStyle84.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  859. dataGridViewCellStyle84.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  860. dataGridViewCellStyle84.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  861. dataGridViewCellStyle84.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  862. this.dgv_Master.RowHeadersDefaultCellStyle = dataGridViewCellStyle84;
  863. dataGridViewCellStyle85.BackColor = System.Drawing.Color.White;
  864. dataGridViewCellStyle85.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  865. dataGridViewCellStyle85.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  866. dataGridViewCellStyle85.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  867. dataGridViewCellStyle85.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  868. this.dgv_Master.RowsDefaultCellStyle = dataGridViewCellStyle85;
  869. this.dgv_Master.RowTemplate.Height = 23;
  870. this.dgv_Master.SelectedIndex = -1;
  871. this.dgv_Master.Size = new System.Drawing.Size(1365, 677);
  872. this.dgv_Master.TabIndex = 6;
  873. this.dgv_Master.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  874. //
  875. // tb_PresToExaInfo
  876. //
  877. this.tb_PresToExaInfo.Controls.Add(this.uiPanel3);
  878. this.tb_PresToExaInfo.Controls.Add(this.uiGroupBox2);
  879. this.tb_PresToExaInfo.Controls.Add(this.uiGroupBox1);
  880. this.tb_PresToExaInfo.Location = new System.Drawing.Point(0, 40);
  881. this.tb_PresToExaInfo.Name = "tb_PresToExaInfo";
  882. this.tb_PresToExaInfo.Size = new System.Drawing.Size(1365, 677);
  883. this.tb_PresToExaInfo.TabIndex = 3;
  884. this.tb_PresToExaInfo.Text = "电子处方审核结果查询";
  885. this.tb_PresToExaInfo.UseVisualStyleBackColor = true;
  886. //
  887. // uiPanel3
  888. //
  889. this.uiPanel3.Controls.Add(this.uiLabel5);
  890. this.uiPanel3.Controls.Add(this.uiLabel6);
  891. this.uiPanel3.Controls.Add(this.dt_ET_Process);
  892. this.uiPanel3.Controls.Add(this.dt_ST_Process);
  893. this.uiPanel3.Controls.Add(this.uiTextBox1);
  894. this.uiPanel3.Controls.Add(this.btnTakeDrug);
  895. this.uiPanel3.Controls.Add(this.btn_QueryUploadInfo);
  896. this.uiPanel3.Controls.Add(this.uiButton4);
  897. this.uiPanel3.Controls.Add(this.uiButton5);
  898. this.uiPanel3.Dock = System.Windows.Forms.DockStyle.Bottom;
  899. this.uiPanel3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  900. this.uiPanel3.Location = new System.Drawing.Point(0, 576);
  901. this.uiPanel3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  902. this.uiPanel3.MinimumSize = new System.Drawing.Size(1, 1);
  903. this.uiPanel3.Name = "uiPanel3";
  904. this.uiPanel3.Size = new System.Drawing.Size(1365, 101);
  905. this.uiPanel3.TabIndex = 13;
  906. this.uiPanel3.Text = null;
  907. this.uiPanel3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  908. this.uiPanel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  909. //
  910. // uiLabel5
  911. //
  912. this.uiLabel5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  913. this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  914. this.uiLabel5.Location = new System.Drawing.Point(307, 24);
  915. this.uiLabel5.Name = "uiLabel5";
  916. this.uiLabel5.Size = new System.Drawing.Size(90, 23);
  917. this.uiLabel5.TabIndex = 59;
  918. this.uiLabel5.Text = "身份证号:";
  919. this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  920. this.uiLabel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  921. //
  922. // uiLabel6
  923. //
  924. this.uiLabel6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  925. this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  926. this.uiLabel6.Location = new System.Drawing.Point(11, 21);
  927. this.uiLabel6.Name = "uiLabel6";
  928. this.uiLabel6.Size = new System.Drawing.Size(90, 23);
  929. this.uiLabel6.TabIndex = 58;
  930. this.uiLabel6.Text = "查询时间:";
  931. this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  932. this.uiLabel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  933. //
  934. // dt_ET_Process
  935. //
  936. this.dt_ET_Process.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  937. this.dt_ET_Process.FillColor = System.Drawing.Color.White;
  938. this.dt_ET_Process.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  939. this.dt_ET_Process.Location = new System.Drawing.Point(109, 55);
  940. this.dt_ET_Process.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  941. this.dt_ET_Process.MaxLength = 19;
  942. this.dt_ET_Process.MinimumSize = new System.Drawing.Size(63, 0);
  943. this.dt_ET_Process.Name = "dt_ET_Process";
  944. this.dt_ET_Process.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  945. this.dt_ET_Process.Size = new System.Drawing.Size(183, 29);
  946. this.dt_ET_Process.SymbolDropDown = 61555;
  947. this.dt_ET_Process.SymbolNormal = 61555;
  948. this.dt_ET_Process.TabIndex = 57;
  949. this.dt_ET_Process.Text = "2023-06-15 00:00:00";
  950. this.dt_ET_Process.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  951. this.dt_ET_Process.Value = new System.DateTime(2023, 6, 15, 0, 0, 0, 0);
  952. this.dt_ET_Process.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  953. //
  954. // dt_ST_Process
  955. //
  956. this.dt_ST_Process.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  957. this.dt_ST_Process.FillColor = System.Drawing.Color.White;
  958. this.dt_ST_Process.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  959. this.dt_ST_Process.Location = new System.Drawing.Point(109, 19);
  960. this.dt_ST_Process.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  961. this.dt_ST_Process.MaxLength = 19;
  962. this.dt_ST_Process.MinimumSize = new System.Drawing.Size(63, 0);
  963. this.dt_ST_Process.Name = "dt_ST_Process";
  964. this.dt_ST_Process.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  965. this.dt_ST_Process.Size = new System.Drawing.Size(183, 29);
  966. this.dt_ST_Process.SymbolDropDown = 61555;
  967. this.dt_ST_Process.SymbolNormal = 61555;
  968. this.dt_ST_Process.TabIndex = 56;
  969. this.dt_ST_Process.Text = "2023-06-14 00:00:00";
  970. this.dt_ST_Process.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  971. this.dt_ST_Process.Value = new System.DateTime(2023, 6, 14, 0, 0, 0, 0);
  972. this.dt_ST_Process.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  973. //
  974. // uiTextBox1
  975. //
  976. this.uiTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  977. this.uiTextBox1.Cursor = System.Windows.Forms.Cursors.IBeam;
  978. this.uiTextBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  979. this.uiTextBox1.Location = new System.Drawing.Point(404, 21);
  980. this.uiTextBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  981. this.uiTextBox1.MinimumSize = new System.Drawing.Size(1, 16);
  982. this.uiTextBox1.Name = "uiTextBox1";
  983. this.uiTextBox1.ShowText = false;
  984. this.uiTextBox1.Size = new System.Drawing.Size(183, 29);
  985. this.uiTextBox1.TabIndex = 55;
  986. this.uiTextBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  987. this.uiTextBox1.Watermark = "请输入身份证号";
  988. this.uiTextBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  989. //
  990. // btnTakeDrug
  991. //
  992. this.btnTakeDrug.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  993. this.btnTakeDrug.Cursor = System.Windows.Forms.Cursors.Hand;
  994. this.btnTakeDrug.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  995. this.btnTakeDrug.Location = new System.Drawing.Point(1025, 52);
  996. this.btnTakeDrug.MinimumSize = new System.Drawing.Size(1, 1);
  997. this.btnTakeDrug.Name = "btnTakeDrug";
  998. this.btnTakeDrug.Size = new System.Drawing.Size(226, 34);
  999. this.btnTakeDrug.TabIndex = 44;
  1000. this.btnTakeDrug.Text = "选中上传记录查询取药结果";
  1001. this.btnTakeDrug.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1002. this.btnTakeDrug.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1003. this.btnTakeDrug.Click += new System.EventHandler(this.btnTakeDrug_Click);
  1004. //
  1005. // btn_QueryUploadInfo
  1006. //
  1007. this.btn_QueryUploadInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  1008. this.btn_QueryUploadInfo.Cursor = System.Windows.Forms.Cursors.Hand;
  1009. this.btn_QueryUploadInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1010. this.btn_QueryUploadInfo.Location = new System.Drawing.Point(826, 15);
  1011. this.btn_QueryUploadInfo.MinimumSize = new System.Drawing.Size(1, 1);
  1012. this.btn_QueryUploadInfo.Name = "btn_QueryUploadInfo";
  1013. this.btn_QueryUploadInfo.Size = new System.Drawing.Size(196, 71);
  1014. this.btn_QueryUploadInfo.TabIndex = 43;
  1015. this.btn_QueryUploadInfo.Text = "1.电子处方上传记录查询";
  1016. this.btn_QueryUploadInfo.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1017. this.btn_QueryUploadInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1018. this.btn_QueryUploadInfo.Click += new System.EventHandler(this.btn_QueryUploadInfo_Click);
  1019. //
  1020. // uiButton4
  1021. //
  1022. this.uiButton4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  1023. this.uiButton4.Cursor = System.Windows.Forms.Cursors.Hand;
  1024. this.uiButton4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1025. this.uiButton4.Location = new System.Drawing.Point(1254, 15);
  1026. this.uiButton4.MinimumSize = new System.Drawing.Size(1, 1);
  1027. this.uiButton4.Name = "uiButton4";
  1028. this.uiButton4.Size = new System.Drawing.Size(106, 72);
  1029. this.uiButton4.TabIndex = 42;
  1030. this.uiButton4.Text = "退 出";
  1031. this.uiButton4.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1032. this.uiButton4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1033. this.uiButton4.Click += new System.EventHandler(this.btnClose_Click);
  1034. //
  1035. // uiButton5
  1036. //
  1037. this.uiButton5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  1038. this.uiButton5.Cursor = System.Windows.Forms.Cursors.Hand;
  1039. this.uiButton5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1040. this.uiButton5.Location = new System.Drawing.Point(1025, 15);
  1041. this.uiButton5.MinimumSize = new System.Drawing.Size(1, 1);
  1042. this.uiButton5.Name = "uiButton5";
  1043. this.uiButton5.Size = new System.Drawing.Size(226, 34);
  1044. this.uiButton5.TabIndex = 41;
  1045. this.uiButton5.Text = "选中上传记录查询审核结果";
  1046. this.uiButton5.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1047. this.uiButton5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1048. this.uiButton5.Click += new System.EventHandler(this.uiButton5_Click);
  1049. //
  1050. // uiGroupBox2
  1051. //
  1052. this.uiGroupBox2.Controls.Add(this.tbc_3);
  1053. this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
  1054. this.uiGroupBox2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1055. this.uiGroupBox2.Location = new System.Drawing.Point(0, 310);
  1056. this.uiGroupBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1057. this.uiGroupBox2.MinimumSize = new System.Drawing.Size(1, 1);
  1058. this.uiGroupBox2.Name = "uiGroupBox2";
  1059. this.uiGroupBox2.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1060. this.uiGroupBox2.Size = new System.Drawing.Size(1365, 367);
  1061. this.uiGroupBox2.TabIndex = 12;
  1062. this.uiGroupBox2.Text = "处方审核结果&取药结果";
  1063. this.uiGroupBox2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1064. this.uiGroupBox2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1065. //
  1066. // tbc_3
  1067. //
  1068. this.tbc_3.Controls.Add(this.tpAuthResult);
  1069. this.tbc_3.Controls.Add(this.tpTakeDrugResult);
  1070. this.tbc_3.Dock = System.Windows.Forms.DockStyle.Fill;
  1071. this.tbc_3.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1072. this.tbc_3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1073. this.tbc_3.ItemSize = new System.Drawing.Size(150, 40);
  1074. this.tbc_3.Location = new System.Drawing.Point(0, 32);
  1075. this.tbc_3.MainPage = "";
  1076. this.tbc_3.Name = "tbc_3";
  1077. this.tbc_3.SelectedIndex = 0;
  1078. this.tbc_3.Size = new System.Drawing.Size(1365, 335);
  1079. this.tbc_3.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  1080. this.tbc_3.TabIndex = 0;
  1081. this.tbc_3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1082. this.tbc_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1083. //
  1084. // tpAuthResult
  1085. //
  1086. this.tpAuthResult.Controls.Add(this.dgv_PresAuditResults);
  1087. this.tpAuthResult.Location = new System.Drawing.Point(0, 40);
  1088. this.tpAuthResult.Name = "tpAuthResult";
  1089. this.tpAuthResult.Size = new System.Drawing.Size(1365, 295);
  1090. this.tpAuthResult.TabIndex = 0;
  1091. this.tpAuthResult.Text = "审核结果";
  1092. this.tpAuthResult.UseVisualStyleBackColor = true;
  1093. //
  1094. // dgv_PresAuditResults
  1095. //
  1096. this.dgv_PresAuditResults.AllowUserToAddRows = false;
  1097. dataGridViewCellStyle86.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1098. this.dgv_PresAuditResults.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle86;
  1099. this.dgv_PresAuditResults.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1100. this.dgv_PresAuditResults.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1101. dataGridViewCellStyle87.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1102. dataGridViewCellStyle87.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1103. dataGridViewCellStyle87.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1104. dataGridViewCellStyle87.ForeColor = System.Drawing.Color.White;
  1105. dataGridViewCellStyle87.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1106. dataGridViewCellStyle87.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1107. dataGridViewCellStyle87.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1108. this.dgv_PresAuditResults.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle87;
  1109. this.dgv_PresAuditResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1110. dataGridViewCellStyle88.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1111. dataGridViewCellStyle88.BackColor = System.Drawing.Color.White;
  1112. dataGridViewCellStyle88.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1113. dataGridViewCellStyle88.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1114. dataGridViewCellStyle88.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1115. dataGridViewCellStyle88.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1116. dataGridViewCellStyle88.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1117. this.dgv_PresAuditResults.DefaultCellStyle = dataGridViewCellStyle88;
  1118. this.dgv_PresAuditResults.Dock = System.Windows.Forms.DockStyle.Fill;
  1119. this.dgv_PresAuditResults.EnableHeadersVisualStyles = false;
  1120. this.dgv_PresAuditResults.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1121. this.dgv_PresAuditResults.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1122. this.dgv_PresAuditResults.Location = new System.Drawing.Point(0, 0);
  1123. this.dgv_PresAuditResults.Name = "dgv_PresAuditResults";
  1124. dataGridViewCellStyle89.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1125. dataGridViewCellStyle89.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1126. dataGridViewCellStyle89.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1127. dataGridViewCellStyle89.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1128. dataGridViewCellStyle89.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1129. dataGridViewCellStyle89.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1130. dataGridViewCellStyle89.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1131. this.dgv_PresAuditResults.RowHeadersDefaultCellStyle = dataGridViewCellStyle89;
  1132. dataGridViewCellStyle90.BackColor = System.Drawing.Color.White;
  1133. dataGridViewCellStyle90.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1134. dataGridViewCellStyle90.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1135. dataGridViewCellStyle90.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1136. dataGridViewCellStyle90.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1137. this.dgv_PresAuditResults.RowsDefaultCellStyle = dataGridViewCellStyle90;
  1138. this.dgv_PresAuditResults.RowTemplate.Height = 23;
  1139. this.dgv_PresAuditResults.SelectedIndex = -1;
  1140. this.dgv_PresAuditResults.Size = new System.Drawing.Size(1365, 295);
  1141. this.dgv_PresAuditResults.TabIndex = 13;
  1142. this.dgv_PresAuditResults.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1143. //
  1144. // tpTakeDrugResult
  1145. //
  1146. this.tpTakeDrugResult.Controls.Add(this.dgvTakeDrugResult);
  1147. this.tpTakeDrugResult.Controls.Add(this.panel1);
  1148. this.tpTakeDrugResult.Location = new System.Drawing.Point(0, 40);
  1149. this.tpTakeDrugResult.Name = "tpTakeDrugResult";
  1150. this.tpTakeDrugResult.Size = new System.Drawing.Size(200, 0);
  1151. this.tpTakeDrugResult.TabIndex = 1;
  1152. this.tpTakeDrugResult.Text = "取药结果";
  1153. this.tpTakeDrugResult.UseVisualStyleBackColor = true;
  1154. //
  1155. // dgvTakeDrugResult
  1156. //
  1157. this.dgvTakeDrugResult.AllowUserToAddRows = false;
  1158. dataGridViewCellStyle91.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1159. this.dgvTakeDrugResult.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle91;
  1160. this.dgvTakeDrugResult.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1161. this.dgvTakeDrugResult.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1162. dataGridViewCellStyle92.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1163. dataGridViewCellStyle92.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1164. dataGridViewCellStyle92.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1165. dataGridViewCellStyle92.ForeColor = System.Drawing.Color.White;
  1166. dataGridViewCellStyle92.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1167. dataGridViewCellStyle92.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1168. dataGridViewCellStyle92.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1169. this.dgvTakeDrugResult.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle92;
  1170. this.dgvTakeDrugResult.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1171. dataGridViewCellStyle93.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1172. dataGridViewCellStyle93.BackColor = System.Drawing.Color.White;
  1173. dataGridViewCellStyle93.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1174. dataGridViewCellStyle93.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1175. dataGridViewCellStyle93.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1176. dataGridViewCellStyle93.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1177. dataGridViewCellStyle93.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1178. this.dgvTakeDrugResult.DefaultCellStyle = dataGridViewCellStyle93;
  1179. this.dgvTakeDrugResult.Dock = System.Windows.Forms.DockStyle.Fill;
  1180. this.dgvTakeDrugResult.EnableHeadersVisualStyles = false;
  1181. this.dgvTakeDrugResult.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1182. this.dgvTakeDrugResult.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1183. this.dgvTakeDrugResult.Location = new System.Drawing.Point(0, 100);
  1184. this.dgvTakeDrugResult.Name = "dgvTakeDrugResult";
  1185. dataGridViewCellStyle94.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1186. dataGridViewCellStyle94.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1187. dataGridViewCellStyle94.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1188. dataGridViewCellStyle94.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1189. dataGridViewCellStyle94.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1190. dataGridViewCellStyle94.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1191. dataGridViewCellStyle94.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1192. this.dgvTakeDrugResult.RowHeadersDefaultCellStyle = dataGridViewCellStyle94;
  1193. dataGridViewCellStyle95.BackColor = System.Drawing.Color.White;
  1194. dataGridViewCellStyle95.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1195. dataGridViewCellStyle95.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1196. dataGridViewCellStyle95.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1197. dataGridViewCellStyle95.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1198. this.dgvTakeDrugResult.RowsDefaultCellStyle = dataGridViewCellStyle95;
  1199. this.dgvTakeDrugResult.RowTemplate.Height = 23;
  1200. this.dgvTakeDrugResult.SelectedIndex = -1;
  1201. this.dgvTakeDrugResult.Size = new System.Drawing.Size(200, 0);
  1202. this.dgvTakeDrugResult.TabIndex = 14;
  1203. this.dgvTakeDrugResult.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1204. //
  1205. // panel1
  1206. //
  1207. this.panel1.Controls.Add(this.uiLabel17);
  1208. this.panel1.Controls.Add(this.tbRxUseStateName_3);
  1209. this.panel1.Controls.Add(this.uiLabel16);
  1210. this.panel1.Controls.Add(this.tbRxUseStateNO_3);
  1211. this.panel1.Controls.Add(this.label111);
  1212. this.panel1.Controls.Add(this.tbRxStateName_3);
  1213. this.panel1.Controls.Add(this.uiLabel14);
  1214. this.panel1.Controls.Add(this.tbRxStateCode);
  1215. this.panel1.Controls.Add(this.uiLabel13);
  1216. this.panel1.Controls.Add(this.tbSettlTime_3);
  1217. this.panel1.Controls.Add(this.uiLabel12);
  1218. this.panel1.Controls.Add(this.tbHiRxNO_3);
  1219. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  1220. this.panel1.Location = new System.Drawing.Point(0, 0);
  1221. this.panel1.Name = "panel1";
  1222. this.panel1.Size = new System.Drawing.Size(200, 100);
  1223. this.panel1.TabIndex = 16;
  1224. //
  1225. // uiLabel17
  1226. //
  1227. this.uiLabel17.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1228. this.uiLabel17.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1229. this.uiLabel17.Location = new System.Drawing.Point(513, 59);
  1230. this.uiLabel17.Name = "uiLabel17";
  1231. this.uiLabel17.Size = new System.Drawing.Size(157, 23);
  1232. this.uiLabel17.TabIndex = 51;
  1233. this.uiLabel17.Text = "处方使用状态名称:";
  1234. this.uiLabel17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1235. this.uiLabel17.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1236. //
  1237. // tbRxUseStateName_3
  1238. //
  1239. this.tbRxUseStateName_3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1240. this.tbRxUseStateName_3.Cursor = System.Windows.Forms.Cursors.IBeam;
  1241. this.tbRxUseStateName_3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1242. this.tbRxUseStateName_3.Location = new System.Drawing.Point(699, 59);
  1243. this.tbRxUseStateName_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1244. this.tbRxUseStateName_3.MinimumSize = new System.Drawing.Size(1, 16);
  1245. this.tbRxUseStateName_3.Name = "tbRxUseStateName_3";
  1246. this.tbRxUseStateName_3.ShowText = false;
  1247. this.tbRxUseStateName_3.Size = new System.Drawing.Size(251, 29);
  1248. this.tbRxUseStateName_3.TabIndex = 50;
  1249. this.tbRxUseStateName_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1250. this.tbRxUseStateName_3.Watermark = "请输入身份证号";
  1251. this.tbRxUseStateName_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1252. //
  1253. // uiLabel16
  1254. //
  1255. this.uiLabel16.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1256. this.uiLabel16.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1257. this.uiLabel16.Location = new System.Drawing.Point(514, 19);
  1258. this.uiLabel16.Name = "uiLabel16";
  1259. this.uiLabel16.Size = new System.Drawing.Size(158, 23);
  1260. this.uiLabel16.TabIndex = 49;
  1261. this.uiLabel16.Text = "处方使用状态编号:";
  1262. this.uiLabel16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1263. this.uiLabel16.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1264. //
  1265. // tbRxUseStateNO_3
  1266. //
  1267. this.tbRxUseStateNO_3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1268. this.tbRxUseStateNO_3.Cursor = System.Windows.Forms.Cursors.IBeam;
  1269. this.tbRxUseStateNO_3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1270. this.tbRxUseStateNO_3.Location = new System.Drawing.Point(699, 15);
  1271. this.tbRxUseStateNO_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1272. this.tbRxUseStateNO_3.MinimumSize = new System.Drawing.Size(1, 16);
  1273. this.tbRxUseStateNO_3.Name = "tbRxUseStateNO_3";
  1274. this.tbRxUseStateNO_3.ShowText = false;
  1275. this.tbRxUseStateNO_3.Size = new System.Drawing.Size(251, 29);
  1276. this.tbRxUseStateNO_3.TabIndex = 48;
  1277. this.tbRxUseStateNO_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1278. this.tbRxUseStateNO_3.Watermark = "请输入身份证号";
  1279. this.tbRxUseStateNO_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1280. //
  1281. // label111
  1282. //
  1283. this.label111.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1284. this.label111.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1285. this.label111.Location = new System.Drawing.Point(969, 59);
  1286. this.label111.Name = "label111";
  1287. this.label111.Size = new System.Drawing.Size(159, 23);
  1288. this.label111.TabIndex = 47;
  1289. this.label111.Text = "医保处方状态名称:";
  1290. this.label111.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1291. this.label111.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1292. //
  1293. // tbRxStateName_3
  1294. //
  1295. this.tbRxStateName_3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1296. this.tbRxStateName_3.Cursor = System.Windows.Forms.Cursors.IBeam;
  1297. this.tbRxStateName_3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1298. this.tbRxStateName_3.Location = new System.Drawing.Point(1181, 59);
  1299. this.tbRxStateName_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1300. this.tbRxStateName_3.MinimumSize = new System.Drawing.Size(1, 16);
  1301. this.tbRxStateName_3.Name = "tbRxStateName_3";
  1302. this.tbRxStateName_3.ShowText = false;
  1303. this.tbRxStateName_3.Size = new System.Drawing.Size(183, 29);
  1304. this.tbRxStateName_3.TabIndex = 46;
  1305. this.tbRxStateName_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1306. this.tbRxStateName_3.Watermark = "请输入身份证号";
  1307. this.tbRxStateName_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1308. //
  1309. // uiLabel14
  1310. //
  1311. this.uiLabel14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1312. this.uiLabel14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1313. this.uiLabel14.Location = new System.Drawing.Point(965, 15);
  1314. this.uiLabel14.Margin = new System.Windows.Forms.Padding(3, 0, 1, 0);
  1315. this.uiLabel14.Name = "uiLabel14";
  1316. this.uiLabel14.Size = new System.Drawing.Size(163, 23);
  1317. this.uiLabel14.TabIndex = 45;
  1318. this.uiLabel14.Text = "医保处方状态编码:";
  1319. this.uiLabel14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1320. this.uiLabel14.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1321. //
  1322. // tbRxStateCode
  1323. //
  1324. this.tbRxStateCode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1325. this.tbRxStateCode.Cursor = System.Windows.Forms.Cursors.IBeam;
  1326. this.tbRxStateCode.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1327. this.tbRxStateCode.Location = new System.Drawing.Point(1181, 9);
  1328. this.tbRxStateCode.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1329. this.tbRxStateCode.MinimumSize = new System.Drawing.Size(1, 16);
  1330. this.tbRxStateCode.Name = "tbRxStateCode";
  1331. this.tbRxStateCode.ShowText = false;
  1332. this.tbRxStateCode.Size = new System.Drawing.Size(183, 29);
  1333. this.tbRxStateCode.TabIndex = 44;
  1334. this.tbRxStateCode.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1335. this.tbRxStateCode.Watermark = "请输入身份证号";
  1336. this.tbRxStateCode.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1337. //
  1338. // uiLabel13
  1339. //
  1340. this.uiLabel13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1341. this.uiLabel13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1342. this.uiLabel13.Location = new System.Drawing.Point(16, 52);
  1343. this.uiLabel13.Name = "uiLabel13";
  1344. this.uiLabel13.Size = new System.Drawing.Size(144, 23);
  1345. this.uiLabel13.TabIndex = 43;
  1346. this.uiLabel13.Text = "结算时间:";
  1347. this.uiLabel13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1348. this.uiLabel13.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1349. //
  1350. // tbSettlTime_3
  1351. //
  1352. this.tbSettlTime_3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1353. this.tbSettlTime_3.Cursor = System.Windows.Forms.Cursors.IBeam;
  1354. this.tbSettlTime_3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1355. this.tbSettlTime_3.Location = new System.Drawing.Point(182, 52);
  1356. this.tbSettlTime_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1357. this.tbSettlTime_3.MinimumSize = new System.Drawing.Size(1, 16);
  1358. this.tbSettlTime_3.Name = "tbSettlTime_3";
  1359. this.tbSettlTime_3.ShowText = false;
  1360. this.tbSettlTime_3.Size = new System.Drawing.Size(261, 29);
  1361. this.tbSettlTime_3.TabIndex = 42;
  1362. this.tbSettlTime_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1363. this.tbSettlTime_3.Watermark = "请输入身份证号";
  1364. this.tbSettlTime_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1365. //
  1366. // uiLabel12
  1367. //
  1368. this.uiLabel12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1369. this.uiLabel12.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1370. this.uiLabel12.Location = new System.Drawing.Point(16, 15);
  1371. this.uiLabel12.Name = "uiLabel12";
  1372. this.uiLabel12.Size = new System.Drawing.Size(144, 23);
  1373. this.uiLabel12.TabIndex = 41;
  1374. this.uiLabel12.Text = "医保处方编号:";
  1375. this.uiLabel12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1376. this.uiLabel12.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1377. //
  1378. // tbHiRxNO_3
  1379. //
  1380. this.tbHiRxNO_3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1381. this.tbHiRxNO_3.Cursor = System.Windows.Forms.Cursors.IBeam;
  1382. this.tbHiRxNO_3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1383. this.tbHiRxNO_3.Location = new System.Drawing.Point(182, 13);
  1384. this.tbHiRxNO_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1385. this.tbHiRxNO_3.MinimumSize = new System.Drawing.Size(1, 16);
  1386. this.tbHiRxNO_3.Name = "tbHiRxNO_3";
  1387. this.tbHiRxNO_3.ShowText = false;
  1388. this.tbHiRxNO_3.Size = new System.Drawing.Size(261, 29);
  1389. this.tbHiRxNO_3.TabIndex = 40;
  1390. this.tbHiRxNO_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1391. this.tbHiRxNO_3.Watermark = "请输入身份证号";
  1392. this.tbHiRxNO_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1393. //
  1394. // uiGroupBox1
  1395. //
  1396. this.uiGroupBox1.Controls.Add(this.dgv_PresUploadInfo);
  1397. this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
  1398. this.uiGroupBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1399. this.uiGroupBox1.Location = new System.Drawing.Point(0, 0);
  1400. this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1401. this.uiGroupBox1.MinimumSize = new System.Drawing.Size(1, 1);
  1402. this.uiGroupBox1.Name = "uiGroupBox1";
  1403. this.uiGroupBox1.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1404. this.uiGroupBox1.Size = new System.Drawing.Size(1365, 310);
  1405. this.uiGroupBox1.TabIndex = 10;
  1406. this.uiGroupBox1.Text = "电子处方上传记录";
  1407. this.uiGroupBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1408. this.uiGroupBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1409. //
  1410. // dgv_PresUploadInfo
  1411. //
  1412. this.dgv_PresUploadInfo.AllowUserToAddRows = false;
  1413. dataGridViewCellStyle96.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1414. this.dgv_PresUploadInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle96;
  1415. this.dgv_PresUploadInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1416. this.dgv_PresUploadInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1417. dataGridViewCellStyle97.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1418. dataGridViewCellStyle97.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1419. dataGridViewCellStyle97.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1420. dataGridViewCellStyle97.ForeColor = System.Drawing.Color.White;
  1421. dataGridViewCellStyle97.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1422. dataGridViewCellStyle97.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1423. dataGridViewCellStyle97.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1424. this.dgv_PresUploadInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle97;
  1425. this.dgv_PresUploadInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1426. dataGridViewCellStyle98.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1427. dataGridViewCellStyle98.BackColor = System.Drawing.Color.White;
  1428. dataGridViewCellStyle98.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1429. dataGridViewCellStyle98.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1430. dataGridViewCellStyle98.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1431. dataGridViewCellStyle98.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1432. dataGridViewCellStyle98.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1433. this.dgv_PresUploadInfo.DefaultCellStyle = dataGridViewCellStyle98;
  1434. this.dgv_PresUploadInfo.Dock = System.Windows.Forms.DockStyle.Fill;
  1435. this.dgv_PresUploadInfo.EnableHeadersVisualStyles = false;
  1436. this.dgv_PresUploadInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1437. this.dgv_PresUploadInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1438. this.dgv_PresUploadInfo.Location = new System.Drawing.Point(0, 32);
  1439. this.dgv_PresUploadInfo.Name = "dgv_PresUploadInfo";
  1440. dataGridViewCellStyle99.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1441. dataGridViewCellStyle99.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1442. dataGridViewCellStyle99.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1443. dataGridViewCellStyle99.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1444. dataGridViewCellStyle99.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1445. dataGridViewCellStyle99.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1446. dataGridViewCellStyle99.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1447. this.dgv_PresUploadInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle99;
  1448. dataGridViewCellStyle100.BackColor = System.Drawing.Color.White;
  1449. dataGridViewCellStyle100.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1450. dataGridViewCellStyle100.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1451. dataGridViewCellStyle100.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1452. dataGridViewCellStyle100.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1453. this.dgv_PresUploadInfo.RowsDefaultCellStyle = dataGridViewCellStyle100;
  1454. this.dgv_PresUploadInfo.RowTemplate.Height = 23;
  1455. this.dgv_PresUploadInfo.SelectedIndex = -1;
  1456. this.dgv_PresUploadInfo.Size = new System.Drawing.Size(1365, 278);
  1457. this.dgv_PresUploadInfo.TabIndex = 11;
  1458. this.dgv_PresUploadInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1459. //
  1460. // tb_PresInfo
  1461. //
  1462. this.tb_PresInfo.Controls.Add(this.uiGroupBox4);
  1463. this.tb_PresInfo.Controls.Add(this.uiGroupBox3);
  1464. this.tb_PresInfo.Controls.Add(this.uiPanel4);
  1465. this.tb_PresInfo.Location = new System.Drawing.Point(0, 40);
  1466. this.tb_PresInfo.Name = "tb_PresInfo";
  1467. this.tb_PresInfo.Size = new System.Drawing.Size(1365, 677);
  1468. this.tb_PresInfo.TabIndex = 2;
  1469. this.tb_PresInfo.Text = "电子处方信息查询";
  1470. this.tb_PresInfo.UseVisualStyleBackColor = true;
  1471. //
  1472. // uiGroupBox4
  1473. //
  1474. this.uiGroupBox4.Controls.Add(this.uiTabControl2);
  1475. this.uiGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
  1476. this.uiGroupBox4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1477. this.uiGroupBox4.Location = new System.Drawing.Point(0, 268);
  1478. this.uiGroupBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1479. this.uiGroupBox4.MinimumSize = new System.Drawing.Size(1, 1);
  1480. this.uiGroupBox4.Name = "uiGroupBox4";
  1481. this.uiGroupBox4.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1482. this.uiGroupBox4.Size = new System.Drawing.Size(1365, 312);
  1483. this.uiGroupBox4.TabIndex = 11;
  1484. this.uiGroupBox4.Text = "医保电子处方中心返回信息";
  1485. this.uiGroupBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1486. this.uiGroupBox4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1487. //
  1488. // uiTabControl2
  1489. //
  1490. this.uiTabControl2.Controls.Add(this.tp_PresMain);
  1491. this.uiTabControl2.Controls.Add(this.tp_DetlList);
  1492. this.uiTabControl2.Controls.Add(this.tp_Otpinfo);
  1493. this.uiTabControl2.Controls.Add(this.tp_DiseList);
  1494. this.uiTabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
  1495. this.uiTabControl2.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1496. this.uiTabControl2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1497. this.uiTabControl2.ItemSize = new System.Drawing.Size(150, 40);
  1498. this.uiTabControl2.Location = new System.Drawing.Point(0, 32);
  1499. this.uiTabControl2.MainPage = "";
  1500. this.uiTabControl2.Name = "uiTabControl2";
  1501. this.uiTabControl2.SelectedIndex = 0;
  1502. this.uiTabControl2.Size = new System.Drawing.Size(1365, 280);
  1503. this.uiTabControl2.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  1504. this.uiTabControl2.TabIndex = 0;
  1505. this.uiTabControl2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1506. this.uiTabControl2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1507. //
  1508. // tp_PresMain
  1509. //
  1510. this.tp_PresMain.Controls.Add(this.dgv_Main_tb);
  1511. this.tp_PresMain.Location = new System.Drawing.Point(0, 40);
  1512. this.tp_PresMain.Name = "tp_PresMain";
  1513. this.tp_PresMain.Size = new System.Drawing.Size(1365, 240);
  1514. this.tp_PresMain.TabIndex = 0;
  1515. this.tp_PresMain.Text = "处方信息";
  1516. this.tp_PresMain.UseVisualStyleBackColor = true;
  1517. //
  1518. // dgv_Main_tb
  1519. //
  1520. this.dgv_Main_tb.AllowUserToAddRows = false;
  1521. dataGridViewCellStyle101.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1522. this.dgv_Main_tb.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle101;
  1523. this.dgv_Main_tb.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1524. this.dgv_Main_tb.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1525. dataGridViewCellStyle102.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1526. dataGridViewCellStyle102.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1527. dataGridViewCellStyle102.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1528. dataGridViewCellStyle102.ForeColor = System.Drawing.Color.White;
  1529. dataGridViewCellStyle102.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1530. dataGridViewCellStyle102.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1531. dataGridViewCellStyle102.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1532. this.dgv_Main_tb.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle102;
  1533. this.dgv_Main_tb.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1534. dataGridViewCellStyle103.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1535. dataGridViewCellStyle103.BackColor = System.Drawing.Color.White;
  1536. dataGridViewCellStyle103.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1537. dataGridViewCellStyle103.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1538. dataGridViewCellStyle103.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1539. dataGridViewCellStyle103.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1540. dataGridViewCellStyle103.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1541. this.dgv_Main_tb.DefaultCellStyle = dataGridViewCellStyle103;
  1542. this.dgv_Main_tb.Dock = System.Windows.Forms.DockStyle.Fill;
  1543. this.dgv_Main_tb.EnableHeadersVisualStyles = false;
  1544. this.dgv_Main_tb.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1545. this.dgv_Main_tb.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1546. this.dgv_Main_tb.Location = new System.Drawing.Point(0, 0);
  1547. this.dgv_Main_tb.Name = "dgv_Main_tb";
  1548. dataGridViewCellStyle104.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1549. dataGridViewCellStyle104.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1550. dataGridViewCellStyle104.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1551. dataGridViewCellStyle104.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1552. dataGridViewCellStyle104.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1553. dataGridViewCellStyle104.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1554. dataGridViewCellStyle104.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1555. this.dgv_Main_tb.RowHeadersDefaultCellStyle = dataGridViewCellStyle104;
  1556. dataGridViewCellStyle105.BackColor = System.Drawing.Color.White;
  1557. dataGridViewCellStyle105.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1558. dataGridViewCellStyle105.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1559. dataGridViewCellStyle105.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1560. dataGridViewCellStyle105.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1561. this.dgv_Main_tb.RowsDefaultCellStyle = dataGridViewCellStyle105;
  1562. this.dgv_Main_tb.RowTemplate.Height = 23;
  1563. this.dgv_Main_tb.SelectedIndex = -1;
  1564. this.dgv_Main_tb.Size = new System.Drawing.Size(1365, 240);
  1565. this.dgv_Main_tb.TabIndex = 1;
  1566. this.dgv_Main_tb.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1567. //
  1568. // tp_DetlList
  1569. //
  1570. this.tp_DetlList.Controls.Add(this.dgv_DetlList_tb);
  1571. this.tp_DetlList.Location = new System.Drawing.Point(0, 40);
  1572. this.tp_DetlList.Name = "tp_DetlList";
  1573. this.tp_DetlList.Size = new System.Drawing.Size(200, 0);
  1574. this.tp_DetlList.TabIndex = 1;
  1575. this.tp_DetlList.Text = "处方明细信息";
  1576. this.tp_DetlList.UseVisualStyleBackColor = true;
  1577. //
  1578. // dgv_DetlList_tb
  1579. //
  1580. this.dgv_DetlList_tb.AllowUserToAddRows = false;
  1581. dataGridViewCellStyle106.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1582. this.dgv_DetlList_tb.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle106;
  1583. this.dgv_DetlList_tb.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1584. this.dgv_DetlList_tb.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1585. dataGridViewCellStyle107.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1586. dataGridViewCellStyle107.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1587. dataGridViewCellStyle107.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1588. dataGridViewCellStyle107.ForeColor = System.Drawing.Color.White;
  1589. dataGridViewCellStyle107.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1590. dataGridViewCellStyle107.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1591. dataGridViewCellStyle107.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1592. this.dgv_DetlList_tb.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle107;
  1593. this.dgv_DetlList_tb.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1594. dataGridViewCellStyle108.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1595. dataGridViewCellStyle108.BackColor = System.Drawing.Color.White;
  1596. dataGridViewCellStyle108.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1597. dataGridViewCellStyle108.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1598. dataGridViewCellStyle108.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1599. dataGridViewCellStyle108.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1600. dataGridViewCellStyle108.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1601. this.dgv_DetlList_tb.DefaultCellStyle = dataGridViewCellStyle108;
  1602. this.dgv_DetlList_tb.Dock = System.Windows.Forms.DockStyle.Fill;
  1603. this.dgv_DetlList_tb.EnableHeadersVisualStyles = false;
  1604. this.dgv_DetlList_tb.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1605. this.dgv_DetlList_tb.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1606. this.dgv_DetlList_tb.Location = new System.Drawing.Point(0, 0);
  1607. this.dgv_DetlList_tb.Name = "dgv_DetlList_tb";
  1608. dataGridViewCellStyle109.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1609. dataGridViewCellStyle109.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1610. dataGridViewCellStyle109.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1611. dataGridViewCellStyle109.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1612. dataGridViewCellStyle109.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1613. dataGridViewCellStyle109.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1614. dataGridViewCellStyle109.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1615. this.dgv_DetlList_tb.RowHeadersDefaultCellStyle = dataGridViewCellStyle109;
  1616. dataGridViewCellStyle110.BackColor = System.Drawing.Color.White;
  1617. dataGridViewCellStyle110.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1618. dataGridViewCellStyle110.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1619. dataGridViewCellStyle110.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1620. dataGridViewCellStyle110.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1621. this.dgv_DetlList_tb.RowsDefaultCellStyle = dataGridViewCellStyle110;
  1622. this.dgv_DetlList_tb.RowTemplate.Height = 23;
  1623. this.dgv_DetlList_tb.SelectedIndex = -1;
  1624. this.dgv_DetlList_tb.Size = new System.Drawing.Size(200, 0);
  1625. this.dgv_DetlList_tb.TabIndex = 1;
  1626. this.dgv_DetlList_tb.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1627. //
  1628. // tp_Otpinfo
  1629. //
  1630. this.tp_Otpinfo.Controls.Add(this.dgv_Otpinfo_tb);
  1631. this.tp_Otpinfo.Location = new System.Drawing.Point(0, 40);
  1632. this.tp_Otpinfo.Name = "tp_Otpinfo";
  1633. this.tp_Otpinfo.Size = new System.Drawing.Size(200, 0);
  1634. this.tp_Otpinfo.TabIndex = 2;
  1635. this.tp_Otpinfo.Text = "就诊信息";
  1636. this.tp_Otpinfo.UseVisualStyleBackColor = true;
  1637. //
  1638. // dgv_Otpinfo_tb
  1639. //
  1640. this.dgv_Otpinfo_tb.AllowUserToAddRows = false;
  1641. dataGridViewCellStyle111.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1642. this.dgv_Otpinfo_tb.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle111;
  1643. this.dgv_Otpinfo_tb.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1644. this.dgv_Otpinfo_tb.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1645. dataGridViewCellStyle112.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1646. dataGridViewCellStyle112.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1647. dataGridViewCellStyle112.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1648. dataGridViewCellStyle112.ForeColor = System.Drawing.Color.White;
  1649. dataGridViewCellStyle112.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1650. dataGridViewCellStyle112.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1651. dataGridViewCellStyle112.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1652. this.dgv_Otpinfo_tb.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle112;
  1653. this.dgv_Otpinfo_tb.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1654. dataGridViewCellStyle113.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1655. dataGridViewCellStyle113.BackColor = System.Drawing.Color.White;
  1656. dataGridViewCellStyle113.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1657. dataGridViewCellStyle113.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1658. dataGridViewCellStyle113.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1659. dataGridViewCellStyle113.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1660. dataGridViewCellStyle113.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1661. this.dgv_Otpinfo_tb.DefaultCellStyle = dataGridViewCellStyle113;
  1662. this.dgv_Otpinfo_tb.Dock = System.Windows.Forms.DockStyle.Fill;
  1663. this.dgv_Otpinfo_tb.EnableHeadersVisualStyles = false;
  1664. this.dgv_Otpinfo_tb.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1665. this.dgv_Otpinfo_tb.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1666. this.dgv_Otpinfo_tb.Location = new System.Drawing.Point(0, 0);
  1667. this.dgv_Otpinfo_tb.Name = "dgv_Otpinfo_tb";
  1668. dataGridViewCellStyle114.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1669. dataGridViewCellStyle114.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1670. dataGridViewCellStyle114.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1671. dataGridViewCellStyle114.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1672. dataGridViewCellStyle114.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1673. dataGridViewCellStyle114.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1674. dataGridViewCellStyle114.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1675. this.dgv_Otpinfo_tb.RowHeadersDefaultCellStyle = dataGridViewCellStyle114;
  1676. dataGridViewCellStyle115.BackColor = System.Drawing.Color.White;
  1677. dataGridViewCellStyle115.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1678. dataGridViewCellStyle115.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1679. dataGridViewCellStyle115.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1680. dataGridViewCellStyle115.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1681. this.dgv_Otpinfo_tb.RowsDefaultCellStyle = dataGridViewCellStyle115;
  1682. this.dgv_Otpinfo_tb.RowTemplate.Height = 23;
  1683. this.dgv_Otpinfo_tb.SelectedIndex = -1;
  1684. this.dgv_Otpinfo_tb.Size = new System.Drawing.Size(200, 0);
  1685. this.dgv_Otpinfo_tb.TabIndex = 1;
  1686. this.dgv_Otpinfo_tb.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1687. //
  1688. // tp_DiseList
  1689. //
  1690. this.tp_DiseList.Controls.Add(this.dgv_DiseList_tb);
  1691. this.tp_DiseList.Location = new System.Drawing.Point(0, 40);
  1692. this.tp_DiseList.Name = "tp_DiseList";
  1693. this.tp_DiseList.Size = new System.Drawing.Size(200, 0);
  1694. this.tp_DiseList.TabIndex = 3;
  1695. this.tp_DiseList.Text = "诊断信息";
  1696. this.tp_DiseList.UseVisualStyleBackColor = true;
  1697. //
  1698. // dgv_DiseList_tb
  1699. //
  1700. this.dgv_DiseList_tb.AllowUserToAddRows = false;
  1701. dataGridViewCellStyle116.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1702. this.dgv_DiseList_tb.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle116;
  1703. this.dgv_DiseList_tb.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1704. this.dgv_DiseList_tb.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1705. dataGridViewCellStyle117.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1706. dataGridViewCellStyle117.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1707. dataGridViewCellStyle117.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1708. dataGridViewCellStyle117.ForeColor = System.Drawing.Color.White;
  1709. dataGridViewCellStyle117.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1710. dataGridViewCellStyle117.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1711. dataGridViewCellStyle117.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1712. this.dgv_DiseList_tb.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle117;
  1713. this.dgv_DiseList_tb.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1714. dataGridViewCellStyle118.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1715. dataGridViewCellStyle118.BackColor = System.Drawing.Color.White;
  1716. dataGridViewCellStyle118.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1717. dataGridViewCellStyle118.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1718. dataGridViewCellStyle118.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1719. dataGridViewCellStyle118.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1720. dataGridViewCellStyle118.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1721. this.dgv_DiseList_tb.DefaultCellStyle = dataGridViewCellStyle118;
  1722. this.dgv_DiseList_tb.Dock = System.Windows.Forms.DockStyle.Fill;
  1723. this.dgv_DiseList_tb.EnableHeadersVisualStyles = false;
  1724. this.dgv_DiseList_tb.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1725. this.dgv_DiseList_tb.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1726. this.dgv_DiseList_tb.Location = new System.Drawing.Point(0, 0);
  1727. this.dgv_DiseList_tb.Name = "dgv_DiseList_tb";
  1728. dataGridViewCellStyle119.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1729. dataGridViewCellStyle119.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1730. dataGridViewCellStyle119.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1731. dataGridViewCellStyle119.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1732. dataGridViewCellStyle119.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1733. dataGridViewCellStyle119.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1734. dataGridViewCellStyle119.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1735. this.dgv_DiseList_tb.RowHeadersDefaultCellStyle = dataGridViewCellStyle119;
  1736. dataGridViewCellStyle120.BackColor = System.Drawing.Color.White;
  1737. dataGridViewCellStyle120.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1738. dataGridViewCellStyle120.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1739. dataGridViewCellStyle120.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1740. dataGridViewCellStyle120.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1741. this.dgv_DiseList_tb.RowsDefaultCellStyle = dataGridViewCellStyle120;
  1742. this.dgv_DiseList_tb.RowTemplate.Height = 23;
  1743. this.dgv_DiseList_tb.SelectedIndex = -1;
  1744. this.dgv_DiseList_tb.Size = new System.Drawing.Size(200, 0);
  1745. this.dgv_DiseList_tb.TabIndex = 1;
  1746. this.dgv_DiseList_tb.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1747. //
  1748. // uiGroupBox3
  1749. //
  1750. this.uiGroupBox3.Controls.Add(this.dgv_PresPreChekInfo);
  1751. this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Top;
  1752. this.uiGroupBox3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1753. this.uiGroupBox3.Location = new System.Drawing.Point(0, 0);
  1754. this.uiGroupBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1755. this.uiGroupBox3.MinimumSize = new System.Drawing.Size(1, 1);
  1756. this.uiGroupBox3.Name = "uiGroupBox3";
  1757. this.uiGroupBox3.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1758. this.uiGroupBox3.Size = new System.Drawing.Size(1365, 268);
  1759. this.uiGroupBox3.TabIndex = 10;
  1760. this.uiGroupBox3.Text = "电子处方预核验信息(包含未上传和已上传电子处方)";
  1761. this.uiGroupBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1762. this.uiGroupBox3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1763. //
  1764. // dgv_PresPreChekInfo
  1765. //
  1766. this.dgv_PresPreChekInfo.AllowUserToAddRows = false;
  1767. dataGridViewCellStyle121.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1768. this.dgv_PresPreChekInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle121;
  1769. this.dgv_PresPreChekInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1770. this.dgv_PresPreChekInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1771. dataGridViewCellStyle122.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1772. dataGridViewCellStyle122.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1773. dataGridViewCellStyle122.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1774. dataGridViewCellStyle122.ForeColor = System.Drawing.Color.White;
  1775. dataGridViewCellStyle122.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1776. dataGridViewCellStyle122.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1777. dataGridViewCellStyle122.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1778. this.dgv_PresPreChekInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle122;
  1779. this.dgv_PresPreChekInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1780. dataGridViewCellStyle123.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1781. dataGridViewCellStyle123.BackColor = System.Drawing.Color.White;
  1782. dataGridViewCellStyle123.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1783. dataGridViewCellStyle123.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1784. dataGridViewCellStyle123.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1785. dataGridViewCellStyle123.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1786. dataGridViewCellStyle123.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1787. this.dgv_PresPreChekInfo.DefaultCellStyle = dataGridViewCellStyle123;
  1788. this.dgv_PresPreChekInfo.Dock = System.Windows.Forms.DockStyle.Fill;
  1789. this.dgv_PresPreChekInfo.EnableHeadersVisualStyles = false;
  1790. this.dgv_PresPreChekInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1791. this.dgv_PresPreChekInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1792. this.dgv_PresPreChekInfo.Location = new System.Drawing.Point(0, 32);
  1793. this.dgv_PresPreChekInfo.Name = "dgv_PresPreChekInfo";
  1794. dataGridViewCellStyle124.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1795. dataGridViewCellStyle124.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1796. dataGridViewCellStyle124.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1797. dataGridViewCellStyle124.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1798. dataGridViewCellStyle124.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1799. dataGridViewCellStyle124.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1800. dataGridViewCellStyle124.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1801. this.dgv_PresPreChekInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle124;
  1802. dataGridViewCellStyle125.BackColor = System.Drawing.Color.White;
  1803. dataGridViewCellStyle125.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1804. dataGridViewCellStyle125.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1805. dataGridViewCellStyle125.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1806. dataGridViewCellStyle125.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1807. this.dgv_PresPreChekInfo.RowsDefaultCellStyle = dataGridViewCellStyle125;
  1808. this.dgv_PresPreChekInfo.RowTemplate.Height = 23;
  1809. this.dgv_PresPreChekInfo.SelectedIndex = -1;
  1810. this.dgv_PresPreChekInfo.Size = new System.Drawing.Size(1365, 236);
  1811. this.dgv_PresPreChekInfo.TabIndex = 0;
  1812. this.dgv_PresPreChekInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1813. //
  1814. // uiPanel4
  1815. //
  1816. this.uiPanel4.Controls.Add(this.tb_QueryPresPreCheck);
  1817. this.uiPanel4.Controls.Add(this.uiButton6);
  1818. this.uiPanel4.Controls.Add(this.btn_InsuQuery);
  1819. this.uiPanel4.Controls.Add(this.uiLabel7);
  1820. this.uiPanel4.Controls.Add(this.uiLabel8);
  1821. this.uiPanel4.Controls.Add(this.dt_ET_PPC);
  1822. this.uiPanel4.Controls.Add(this.dt_ST_PPC);
  1823. this.uiPanel4.Controls.Add(this.tb_PresCertNo);
  1824. this.uiPanel4.Dock = System.Windows.Forms.DockStyle.Bottom;
  1825. this.uiPanel4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1826. this.uiPanel4.Location = new System.Drawing.Point(0, 580);
  1827. this.uiPanel4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1828. this.uiPanel4.MinimumSize = new System.Drawing.Size(1, 1);
  1829. this.uiPanel4.Name = "uiPanel4";
  1830. this.uiPanel4.Size = new System.Drawing.Size(1365, 97);
  1831. this.uiPanel4.TabIndex = 9;
  1832. this.uiPanel4.Text = null;
  1833. this.uiPanel4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1834. this.uiPanel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1835. //
  1836. // tb_QueryPresPreCheck
  1837. //
  1838. this.tb_QueryPresPreCheck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  1839. this.tb_QueryPresPreCheck.Cursor = System.Windows.Forms.Cursors.Hand;
  1840. this.tb_QueryPresPreCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1841. this.tb_QueryPresPreCheck.Location = new System.Drawing.Point(795, 13);
  1842. this.tb_QueryPresPreCheck.MinimumSize = new System.Drawing.Size(1, 1);
  1843. this.tb_QueryPresPreCheck.Name = "tb_QueryPresPreCheck";
  1844. this.tb_QueryPresPreCheck.Size = new System.Drawing.Size(150, 69);
  1845. this.tb_QueryPresPreCheck.TabIndex = 53;
  1846. this.tb_QueryPresPreCheck.Text = "1.预核验记录查询";
  1847. this.tb_QueryPresPreCheck.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1848. this.tb_QueryPresPreCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1849. this.tb_QueryPresPreCheck.Click += new System.EventHandler(this.tb_QueryPresPreCheck_Click);
  1850. //
  1851. // uiButton6
  1852. //
  1853. this.uiButton6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  1854. this.uiButton6.Cursor = System.Windows.Forms.Cursors.Hand;
  1855. this.uiButton6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1856. this.uiButton6.Location = new System.Drawing.Point(1251, 13);
  1857. this.uiButton6.MinimumSize = new System.Drawing.Size(1, 1);
  1858. this.uiButton6.Name = "uiButton6";
  1859. this.uiButton6.Size = new System.Drawing.Size(109, 69);
  1860. this.uiButton6.TabIndex = 52;
  1861. this.uiButton6.Text = "退 出";
  1862. this.uiButton6.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1863. this.uiButton6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1864. this.uiButton6.Click += new System.EventHandler(this.btnClose_Click);
  1865. //
  1866. // btn_InsuQuery
  1867. //
  1868. this.btn_InsuQuery.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  1869. this.btn_InsuQuery.Cursor = System.Windows.Forms.Cursors.Hand;
  1870. this.btn_InsuQuery.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1871. this.btn_InsuQuery.Location = new System.Drawing.Point(948, 13);
  1872. this.btn_InsuQuery.MinimumSize = new System.Drawing.Size(1, 1);
  1873. this.btn_InsuQuery.Name = "btn_InsuQuery";
  1874. this.btn_InsuQuery.Size = new System.Drawing.Size(300, 69);
  1875. this.btn_InsuQuery.TabIndex = 51;
  1876. this.btn_InsuQuery.Text = "2.选中预核验信息查电子处方详细信息";
  1877. this.btn_InsuQuery.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1878. this.btn_InsuQuery.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1879. this.btn_InsuQuery.Click += new System.EventHandler(this.btn_InsuQuery_Click);
  1880. //
  1881. // uiLabel7
  1882. //
  1883. this.uiLabel7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1884. this.uiLabel7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1885. this.uiLabel7.Location = new System.Drawing.Point(312, 14);
  1886. this.uiLabel7.Name = "uiLabel7";
  1887. this.uiLabel7.Size = new System.Drawing.Size(90, 23);
  1888. this.uiLabel7.TabIndex = 47;
  1889. this.uiLabel7.Text = "身份证号:";
  1890. this.uiLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1891. this.uiLabel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1892. //
  1893. // uiLabel8
  1894. //
  1895. this.uiLabel8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1896. this.uiLabel8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1897. this.uiLabel8.Location = new System.Drawing.Point(18, 14);
  1898. this.uiLabel8.Name = "uiLabel8";
  1899. this.uiLabel8.Size = new System.Drawing.Size(90, 23);
  1900. this.uiLabel8.TabIndex = 46;
  1901. this.uiLabel8.Text = "查询时间:";
  1902. this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1903. this.uiLabel8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1904. //
  1905. // dt_ET_PPC
  1906. //
  1907. this.dt_ET_PPC.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1908. this.dt_ET_PPC.FillColor = System.Drawing.Color.White;
  1909. this.dt_ET_PPC.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1910. this.dt_ET_PPC.Location = new System.Drawing.Point(113, 53);
  1911. this.dt_ET_PPC.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1912. this.dt_ET_PPC.MaxLength = 19;
  1913. this.dt_ET_PPC.MinimumSize = new System.Drawing.Size(63, 0);
  1914. this.dt_ET_PPC.Name = "dt_ET_PPC";
  1915. this.dt_ET_PPC.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1916. this.dt_ET_PPC.Size = new System.Drawing.Size(183, 29);
  1917. this.dt_ET_PPC.SymbolDropDown = 61555;
  1918. this.dt_ET_PPC.SymbolNormal = 61555;
  1919. this.dt_ET_PPC.TabIndex = 45;
  1920. this.dt_ET_PPC.Text = "2023-06-15 00:00:00";
  1921. this.dt_ET_PPC.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1922. this.dt_ET_PPC.Value = new System.DateTime(2023, 6, 15, 0, 0, 0, 0);
  1923. this.dt_ET_PPC.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1924. //
  1925. // dt_ST_PPC
  1926. //
  1927. this.dt_ST_PPC.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1928. this.dt_ST_PPC.FillColor = System.Drawing.Color.White;
  1929. this.dt_ST_PPC.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1930. this.dt_ST_PPC.Location = new System.Drawing.Point(113, 14);
  1931. this.dt_ST_PPC.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1932. this.dt_ST_PPC.MaxLength = 19;
  1933. this.dt_ST_PPC.MinimumSize = new System.Drawing.Size(63, 0);
  1934. this.dt_ST_PPC.Name = "dt_ST_PPC";
  1935. this.dt_ST_PPC.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1936. this.dt_ST_PPC.Size = new System.Drawing.Size(183, 29);
  1937. this.dt_ST_PPC.SymbolDropDown = 61555;
  1938. this.dt_ST_PPC.SymbolNormal = 61555;
  1939. this.dt_ST_PPC.TabIndex = 44;
  1940. this.dt_ST_PPC.Text = "2023-06-14 00:00:00";
  1941. this.dt_ST_PPC.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1942. this.dt_ST_PPC.Value = new System.DateTime(2023, 6, 14, 0, 0, 0, 0);
  1943. this.dt_ST_PPC.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1944. //
  1945. // tb_PresCertNo
  1946. //
  1947. this.tb_PresCertNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1948. this.tb_PresCertNo.Cursor = System.Windows.Forms.Cursors.IBeam;
  1949. this.tb_PresCertNo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1950. this.tb_PresCertNo.Location = new System.Drawing.Point(311, 53);
  1951. this.tb_PresCertNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1952. this.tb_PresCertNo.MinimumSize = new System.Drawing.Size(1, 16);
  1953. this.tb_PresCertNo.Name = "tb_PresCertNo";
  1954. this.tb_PresCertNo.ShowText = false;
  1955. this.tb_PresCertNo.Size = new System.Drawing.Size(183, 29);
  1956. this.tb_PresCertNo.TabIndex = 43;
  1957. this.tb_PresCertNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1958. this.tb_PresCertNo.Watermark = "请输入身份证号";
  1959. this.tb_PresCertNo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1960. //
  1961. // tb_QueryDrug
  1962. //
  1963. this.tb_QueryDrug.Controls.Add(this.gbStoreAndDrug);
  1964. this.tb_QueryDrug.Controls.Add(this.uiPanel5);
  1965. this.tb_QueryDrug.Controls.Add(this.gbRxInfo);
  1966. this.tb_QueryDrug.Location = new System.Drawing.Point(0, 40);
  1967. this.tb_QueryDrug.Name = "tb_QueryDrug";
  1968. this.tb_QueryDrug.Size = new System.Drawing.Size(1365, 677);
  1969. this.tb_QueryDrug.TabIndex = 4;
  1970. this.tb_QueryDrug.Text = "查询药店&药品信息";
  1971. this.tb_QueryDrug.UseVisualStyleBackColor = true;
  1972. //
  1973. // gbStoreAndDrug
  1974. //
  1975. this.gbStoreAndDrug.Controls.Add(this.uiTabControl1);
  1976. this.gbStoreAndDrug.Dock = System.Windows.Forms.DockStyle.Bottom;
  1977. this.gbStoreAndDrug.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1978. this.gbStoreAndDrug.Location = new System.Drawing.Point(0, 297);
  1979. this.gbStoreAndDrug.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1980. this.gbStoreAndDrug.MinimumSize = new System.Drawing.Size(1, 1);
  1981. this.gbStoreAndDrug.Name = "gbStoreAndDrug";
  1982. this.gbStoreAndDrug.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1983. this.gbStoreAndDrug.Size = new System.Drawing.Size(1365, 294);
  1984. this.gbStoreAndDrug.TabIndex = 20;
  1985. this.gbStoreAndDrug.Text = "药店&库存信息";
  1986. this.gbStoreAndDrug.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1987. this.gbStoreAndDrug.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1988. //
  1989. // uiTabControl1
  1990. //
  1991. this.uiTabControl1.Controls.Add(this.tabPage1);
  1992. this.uiTabControl1.Controls.Add(this.tabPage2);
  1993. this.uiTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  1994. this.uiTabControl1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1995. this.uiTabControl1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1996. this.uiTabControl1.ItemSize = new System.Drawing.Size(150, 40);
  1997. this.uiTabControl1.Location = new System.Drawing.Point(0, 32);
  1998. this.uiTabControl1.MainPage = "";
  1999. this.uiTabControl1.Name = "uiTabControl1";
  2000. this.uiTabControl1.SelectedIndex = 0;
  2001. this.uiTabControl1.Size = new System.Drawing.Size(1365, 262);
  2002. this.uiTabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  2003. this.uiTabControl1.TabIndex = 1;
  2004. this.uiTabControl1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2005. this.uiTabControl1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2006. //
  2007. // tabPage1
  2008. //
  2009. this.tabPage1.Controls.Add(this.dgvStore);
  2010. this.tabPage1.Location = new System.Drawing.Point(0, 40);
  2011. this.tabPage1.Name = "tabPage1";
  2012. this.tabPage1.Size = new System.Drawing.Size(1365, 222);
  2013. this.tabPage1.TabIndex = 0;
  2014. this.tabPage1.Text = "药店信息";
  2015. this.tabPage1.UseVisualStyleBackColor = true;
  2016. //
  2017. // dgvStore
  2018. //
  2019. this.dgvStore.AllowUserToAddRows = false;
  2020. dataGridViewCellStyle126.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  2021. this.dgvStore.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle126;
  2022. this.dgvStore.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  2023. this.dgvStore.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  2024. dataGridViewCellStyle127.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2025. dataGridViewCellStyle127.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2026. dataGridViewCellStyle127.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2027. dataGridViewCellStyle127.ForeColor = System.Drawing.Color.White;
  2028. dataGridViewCellStyle127.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2029. dataGridViewCellStyle127.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2030. dataGridViewCellStyle127.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2031. this.dgvStore.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle127;
  2032. this.dgvStore.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  2033. dataGridViewCellStyle128.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2034. dataGridViewCellStyle128.BackColor = System.Drawing.Color.White;
  2035. dataGridViewCellStyle128.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2036. dataGridViewCellStyle128.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2037. dataGridViewCellStyle128.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  2038. dataGridViewCellStyle128.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2039. dataGridViewCellStyle128.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  2040. this.dgvStore.DefaultCellStyle = dataGridViewCellStyle128;
  2041. this.dgvStore.Dock = System.Windows.Forms.DockStyle.Fill;
  2042. this.dgvStore.EnableHeadersVisualStyles = false;
  2043. this.dgvStore.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2044. this.dgvStore.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  2045. this.dgvStore.Location = new System.Drawing.Point(0, 0);
  2046. this.dgvStore.Name = "dgvStore";
  2047. dataGridViewCellStyle129.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2048. dataGridViewCellStyle129.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  2049. dataGridViewCellStyle129.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2050. dataGridViewCellStyle129.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2051. dataGridViewCellStyle129.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2052. dataGridViewCellStyle129.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2053. dataGridViewCellStyle129.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2054. this.dgvStore.RowHeadersDefaultCellStyle = dataGridViewCellStyle129;
  2055. dataGridViewCellStyle130.BackColor = System.Drawing.Color.White;
  2056. dataGridViewCellStyle130.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2057. dataGridViewCellStyle130.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2058. dataGridViewCellStyle130.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  2059. dataGridViewCellStyle130.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2060. this.dgvStore.RowsDefaultCellStyle = dataGridViewCellStyle130;
  2061. this.dgvStore.RowTemplate.Height = 23;
  2062. this.dgvStore.SelectedIndex = -1;
  2063. this.dgvStore.Size = new System.Drawing.Size(1365, 222);
  2064. this.dgvStore.TabIndex = 1;
  2065. this.dgvStore.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2066. //
  2067. // tabPage2
  2068. //
  2069. this.tabPage2.Controls.Add(this.dgvInventory);
  2070. this.tabPage2.Location = new System.Drawing.Point(0, 40);
  2071. this.tabPage2.Name = "tabPage2";
  2072. this.tabPage2.Size = new System.Drawing.Size(1365, 222);
  2073. this.tabPage2.TabIndex = 1;
  2074. this.tabPage2.Text = "库存信息";
  2075. this.tabPage2.UseVisualStyleBackColor = true;
  2076. //
  2077. // dgvInventory
  2078. //
  2079. this.dgvInventory.AllowUserToAddRows = false;
  2080. dataGridViewCellStyle131.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  2081. this.dgvInventory.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle131;
  2082. this.dgvInventory.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  2083. this.dgvInventory.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  2084. dataGridViewCellStyle132.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2085. dataGridViewCellStyle132.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2086. dataGridViewCellStyle132.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2087. dataGridViewCellStyle132.ForeColor = System.Drawing.Color.White;
  2088. dataGridViewCellStyle132.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2089. dataGridViewCellStyle132.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2090. dataGridViewCellStyle132.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2091. this.dgvInventory.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle132;
  2092. this.dgvInventory.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  2093. dataGridViewCellStyle133.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2094. dataGridViewCellStyle133.BackColor = System.Drawing.Color.White;
  2095. dataGridViewCellStyle133.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2096. dataGridViewCellStyle133.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2097. dataGridViewCellStyle133.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  2098. dataGridViewCellStyle133.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2099. dataGridViewCellStyle133.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  2100. this.dgvInventory.DefaultCellStyle = dataGridViewCellStyle133;
  2101. this.dgvInventory.Dock = System.Windows.Forms.DockStyle.Fill;
  2102. this.dgvInventory.EnableHeadersVisualStyles = false;
  2103. this.dgvInventory.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2104. this.dgvInventory.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  2105. this.dgvInventory.Location = new System.Drawing.Point(0, 0);
  2106. this.dgvInventory.Name = "dgvInventory";
  2107. dataGridViewCellStyle134.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2108. dataGridViewCellStyle134.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  2109. dataGridViewCellStyle134.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2110. dataGridViewCellStyle134.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2111. dataGridViewCellStyle134.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2112. dataGridViewCellStyle134.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2113. dataGridViewCellStyle134.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2114. this.dgvInventory.RowHeadersDefaultCellStyle = dataGridViewCellStyle134;
  2115. dataGridViewCellStyle135.BackColor = System.Drawing.Color.White;
  2116. dataGridViewCellStyle135.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2117. dataGridViewCellStyle135.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2118. dataGridViewCellStyle135.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  2119. dataGridViewCellStyle135.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2120. this.dgvInventory.RowsDefaultCellStyle = dataGridViewCellStyle135;
  2121. this.dgvInventory.RowTemplate.Height = 23;
  2122. this.dgvInventory.SelectedIndex = -1;
  2123. this.dgvInventory.Size = new System.Drawing.Size(1365, 222);
  2124. this.dgvInventory.TabIndex = 1;
  2125. this.dgvInventory.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2126. //
  2127. // uiPanel5
  2128. //
  2129. this.uiPanel5.Controls.Add(this.btnQueryRxInfo);
  2130. this.uiPanel5.Controls.Add(this.btnClose_5);
  2131. this.uiPanel5.Controls.Add(this.btnQueryDrugStoreInfo);
  2132. this.uiPanel5.Controls.Add(this.tbHiRxno);
  2133. this.uiPanel5.Controls.Add(this.uiLabel9);
  2134. this.uiPanel5.Dock = System.Windows.Forms.DockStyle.Bottom;
  2135. this.uiPanel5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2136. this.uiPanel5.Location = new System.Drawing.Point(0, 591);
  2137. this.uiPanel5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2138. this.uiPanel5.MinimumSize = new System.Drawing.Size(1, 1);
  2139. this.uiPanel5.Name = "uiPanel5";
  2140. this.uiPanel5.Size = new System.Drawing.Size(1365, 86);
  2141. this.uiPanel5.TabIndex = 19;
  2142. this.uiPanel5.Text = null;
  2143. this.uiPanel5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2144. this.uiPanel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2145. //
  2146. // btnQueryRxInfo
  2147. //
  2148. this.btnQueryRxInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  2149. this.btnQueryRxInfo.Cursor = System.Windows.Forms.Cursors.Hand;
  2150. this.btnQueryRxInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2151. this.btnQueryRxInfo.Location = new System.Drawing.Point(940, 12);
  2152. this.btnQueryRxInfo.MinimumSize = new System.Drawing.Size(1, 1);
  2153. this.btnQueryRxInfo.Name = "btnQueryRxInfo";
  2154. this.btnQueryRxInfo.Size = new System.Drawing.Size(151, 62);
  2155. this.btnQueryRxInfo.TabIndex = 46;
  2156. this.btnQueryRxInfo.Text = "1.查询处方信息";
  2157. this.btnQueryRxInfo.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2158. this.btnQueryRxInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2159. this.btnQueryRxInfo.Click += new System.EventHandler(this.btnQueryRxInfo_Click);
  2160. //
  2161. // btnClose_5
  2162. //
  2163. this.btnClose_5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  2164. this.btnClose_5.Cursor = System.Windows.Forms.Cursors.Hand;
  2165. this.btnClose_5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2166. this.btnClose_5.Location = new System.Drawing.Point(1252, 12);
  2167. this.btnClose_5.MinimumSize = new System.Drawing.Size(1, 1);
  2168. this.btnClose_5.Name = "btnClose_5";
  2169. this.btnClose_5.Size = new System.Drawing.Size(107, 62);
  2170. this.btnClose_5.TabIndex = 45;
  2171. this.btnClose_5.Text = "退 出";
  2172. this.btnClose_5.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2173. this.btnClose_5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2174. this.btnClose_5.Click += new System.EventHandler(this.btnClose_Click);
  2175. //
  2176. // btnQueryDrugStoreInfo
  2177. //
  2178. this.btnQueryDrugStoreInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  2179. this.btnQueryDrugStoreInfo.Cursor = System.Windows.Forms.Cursors.Hand;
  2180. this.btnQueryDrugStoreInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2181. this.btnQueryDrugStoreInfo.Location = new System.Drawing.Point(1095, 12);
  2182. this.btnQueryDrugStoreInfo.MinimumSize = new System.Drawing.Size(1, 1);
  2183. this.btnQueryDrugStoreInfo.Name = "btnQueryDrugStoreInfo";
  2184. this.btnQueryDrugStoreInfo.Size = new System.Drawing.Size(153, 62);
  2185. this.btnQueryDrugStoreInfo.TabIndex = 44;
  2186. this.btnQueryDrugStoreInfo.Text = "2.药店库存查询";
  2187. this.btnQueryDrugStoreInfo.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2188. this.btnQueryDrugStoreInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2189. this.btnQueryDrugStoreInfo.Click += new System.EventHandler(this.btnQueryDrugStoreInfo_Click);
  2190. //
  2191. // tbHiRxno
  2192. //
  2193. this.tbHiRxno.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  2194. this.tbHiRxno.Cursor = System.Windows.Forms.Cursors.IBeam;
  2195. this.tbHiRxno.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2196. this.tbHiRxno.Location = new System.Drawing.Point(143, 28);
  2197. this.tbHiRxno.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2198. this.tbHiRxno.MinimumSize = new System.Drawing.Size(1, 16);
  2199. this.tbHiRxno.Name = "tbHiRxno";
  2200. this.tbHiRxno.ShowText = false;
  2201. this.tbHiRxno.Size = new System.Drawing.Size(292, 29);
  2202. this.tbHiRxno.TabIndex = 9;
  2203. this.tbHiRxno.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2204. this.tbHiRxno.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2205. //
  2206. // uiLabel9
  2207. //
  2208. this.uiLabel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  2209. this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2210. this.uiLabel9.Location = new System.Drawing.Point(12, 29);
  2211. this.uiLabel9.Name = "uiLabel9";
  2212. this.uiLabel9.Size = new System.Drawing.Size(124, 23);
  2213. this.uiLabel9.TabIndex = 8;
  2214. this.uiLabel9.Text = "医保处方编号:";
  2215. this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2216. this.uiLabel9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2217. //
  2218. // gbRxInfo
  2219. //
  2220. this.gbRxInfo.Controls.Add(this.dgvRxDetail);
  2221. this.gbRxInfo.Dock = System.Windows.Forms.DockStyle.Fill;
  2222. this.gbRxInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2223. this.gbRxInfo.Location = new System.Drawing.Point(0, 0);
  2224. this.gbRxInfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2225. this.gbRxInfo.MinimumSize = new System.Drawing.Size(1, 1);
  2226. this.gbRxInfo.Name = "gbRxInfo";
  2227. this.gbRxInfo.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  2228. this.gbRxInfo.Size = new System.Drawing.Size(1365, 677);
  2229. this.gbRxInfo.TabIndex = 18;
  2230. this.gbRxInfo.Text = "处方信息";
  2231. this.gbRxInfo.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2232. this.gbRxInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2233. //
  2234. // dgvRxDetail
  2235. //
  2236. this.dgvRxDetail.AllowUserToAddRows = false;
  2237. dataGridViewCellStyle136.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  2238. this.dgvRxDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle136;
  2239. this.dgvRxDetail.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  2240. this.dgvRxDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  2241. dataGridViewCellStyle137.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2242. dataGridViewCellStyle137.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2243. dataGridViewCellStyle137.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2244. dataGridViewCellStyle137.ForeColor = System.Drawing.Color.White;
  2245. dataGridViewCellStyle137.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2246. dataGridViewCellStyle137.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2247. dataGridViewCellStyle137.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2248. this.dgvRxDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle137;
  2249. this.dgvRxDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  2250. dataGridViewCellStyle138.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2251. dataGridViewCellStyle138.BackColor = System.Drawing.Color.White;
  2252. dataGridViewCellStyle138.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2253. dataGridViewCellStyle138.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2254. dataGridViewCellStyle138.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  2255. dataGridViewCellStyle138.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2256. dataGridViewCellStyle138.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  2257. this.dgvRxDetail.DefaultCellStyle = dataGridViewCellStyle138;
  2258. this.dgvRxDetail.Dock = System.Windows.Forms.DockStyle.Fill;
  2259. this.dgvRxDetail.EnableHeadersVisualStyles = false;
  2260. this.dgvRxDetail.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2261. this.dgvRxDetail.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  2262. this.dgvRxDetail.Location = new System.Drawing.Point(0, 32);
  2263. this.dgvRxDetail.Name = "dgvRxDetail";
  2264. dataGridViewCellStyle139.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2265. dataGridViewCellStyle139.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  2266. dataGridViewCellStyle139.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2267. dataGridViewCellStyle139.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2268. dataGridViewCellStyle139.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2269. dataGridViewCellStyle139.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2270. dataGridViewCellStyle139.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2271. this.dgvRxDetail.RowHeadersDefaultCellStyle = dataGridViewCellStyle139;
  2272. dataGridViewCellStyle140.BackColor = System.Drawing.Color.White;
  2273. dataGridViewCellStyle140.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2274. dataGridViewCellStyle140.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2275. dataGridViewCellStyle140.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  2276. dataGridViewCellStyle140.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2277. this.dgvRxDetail.RowsDefaultCellStyle = dataGridViewCellStyle140;
  2278. this.dgvRxDetail.RowTemplate.Height = 23;
  2279. this.dgvRxDetail.SelectedIndex = -1;
  2280. this.dgvRxDetail.Size = new System.Drawing.Size(1365, 645);
  2281. this.dgvRxDetail.TabIndex = 1;
  2282. this.dgvRxDetail.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2283. //
  2284. // PrescriptionCirculation
  2285. //
  2286. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  2287. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2288. this.ClientSize = new System.Drawing.Size(1365, 717);
  2289. this.Controls.Add(this.tc_Main);
  2290. this.Name = "PrescriptionCirculation";
  2291. this.Text = "医保处方流转";
  2292. this.Load += new System.EventHandler(this.PrescriptionCirculation_Load);
  2293. this.Shown += new System.EventHandler(this.PrescriptionCirculation_Shown);
  2294. this.tc_Main.ResumeLayout(false);
  2295. this.tb_PresUpload.ResumeLayout(false);
  2296. this.gb_HISInsuReg.ResumeLayout(false);
  2297. ((System.ComponentModel.ISupportInitialize)(this.dgv_HISRegInfo)).EndInit();
  2298. this.gb_Prescription.ResumeLayout(false);
  2299. ((System.ComponentModel.ISupportInitialize)(this.dgv_PrescriptionInfo)).EndInit();
  2300. this.uiPanel1.ResumeLayout(false);
  2301. this.tb_CancelPres.ResumeLayout(false);
  2302. this.uiPanel2.ResumeLayout(false);
  2303. this.uiPanel2.PerformLayout();
  2304. ((System.ComponentModel.ISupportInitialize)(this.dgv_Master)).EndInit();
  2305. this.tb_PresToExaInfo.ResumeLayout(false);
  2306. this.uiPanel3.ResumeLayout(false);
  2307. this.uiGroupBox2.ResumeLayout(false);
  2308. this.tbc_3.ResumeLayout(false);
  2309. this.tpAuthResult.ResumeLayout(false);
  2310. ((System.ComponentModel.ISupportInitialize)(this.dgv_PresAuditResults)).EndInit();
  2311. this.tpTakeDrugResult.ResumeLayout(false);
  2312. ((System.ComponentModel.ISupportInitialize)(this.dgvTakeDrugResult)).EndInit();
  2313. this.panel1.ResumeLayout(false);
  2314. this.uiGroupBox1.ResumeLayout(false);
  2315. ((System.ComponentModel.ISupportInitialize)(this.dgv_PresUploadInfo)).EndInit();
  2316. this.tb_PresInfo.ResumeLayout(false);
  2317. this.uiGroupBox4.ResumeLayout(false);
  2318. this.uiTabControl2.ResumeLayout(false);
  2319. this.tp_PresMain.ResumeLayout(false);
  2320. ((System.ComponentModel.ISupportInitialize)(this.dgv_Main_tb)).EndInit();
  2321. this.tp_DetlList.ResumeLayout(false);
  2322. ((System.ComponentModel.ISupportInitialize)(this.dgv_DetlList_tb)).EndInit();
  2323. this.tp_Otpinfo.ResumeLayout(false);
  2324. ((System.ComponentModel.ISupportInitialize)(this.dgv_Otpinfo_tb)).EndInit();
  2325. this.tp_DiseList.ResumeLayout(false);
  2326. ((System.ComponentModel.ISupportInitialize)(this.dgv_DiseList_tb)).EndInit();
  2327. this.uiGroupBox3.ResumeLayout(false);
  2328. ((System.ComponentModel.ISupportInitialize)(this.dgv_PresPreChekInfo)).EndInit();
  2329. this.uiPanel4.ResumeLayout(false);
  2330. this.tb_QueryDrug.ResumeLayout(false);
  2331. this.gbStoreAndDrug.ResumeLayout(false);
  2332. this.uiTabControl1.ResumeLayout(false);
  2333. this.tabPage1.ResumeLayout(false);
  2334. ((System.ComponentModel.ISupportInitialize)(this.dgvStore)).EndInit();
  2335. this.tabPage2.ResumeLayout(false);
  2336. ((System.ComponentModel.ISupportInitialize)(this.dgvInventory)).EndInit();
  2337. this.uiPanel5.ResumeLayout(false);
  2338. this.gbRxInfo.ResumeLayout(false);
  2339. ((System.ComponentModel.ISupportInitialize)(this.dgvRxDetail)).EndInit();
  2340. this.ResumeLayout(false);
  2341. }
  2342. #endregion
  2343. private Sunny.UI.UITabControl tc_Main;
  2344. private System.Windows.Forms.TabPage tb_PresUpload;
  2345. private Sunny.UI.UIPanel uiPanel1;
  2346. private Sunny.UI.UIButton btnClose;
  2347. private Sunny.UI.UIButton btnPresUpload;
  2348. private System.Windows.Forms.TabPage tb_CancelPres;
  2349. private System.Windows.Forms.TabPage tb_PresInfo;
  2350. private System.Windows.Forms.TabPage tb_PresToExaInfo;
  2351. private Sunny.UI.UIButton btnUpload_Pre;
  2352. private Sunny.UI.UIButton btnGetInfo;
  2353. private Sunny.UI.UIGroupBox gb_Prescription;
  2354. private Sunny.UI.UITextBox tb_CertNo;
  2355. private Sunny.UI.UILabel uiLabel2;
  2356. private Sunny.UI.UILabel uiLabel1;
  2357. private Sunny.UI.UIDatetimePicker dtED;
  2358. private Sunny.UI.UIDatetimePicker dtST;
  2359. private Sunny.UI.UIDataGridView dgv_PrescriptionInfo;
  2360. private Sunny.UI.UIGroupBox gb_HISInsuReg;
  2361. private Sunny.UI.UIDataGridView dgv_Master;
  2362. private Sunny.UI.UIButton btnElcSign;
  2363. private Sunny.UI.UIGroupBox uiGroupBox1;
  2364. private Sunny.UI.UIDataGridView dgv_PresUploadInfo;
  2365. private Sunny.UI.UIGroupBox uiGroupBox4;
  2366. private Sunny.UI.UITabControl uiTabControl2;
  2367. private System.Windows.Forms.TabPage tp_PresMain;
  2368. private Sunny.UI.UIDataGridView dgv_Main_tb;
  2369. private System.Windows.Forms.TabPage tp_DetlList;
  2370. private Sunny.UI.UIDataGridView dgv_DetlList_tb;
  2371. private System.Windows.Forms.TabPage tp_Otpinfo;
  2372. private Sunny.UI.UIDataGridView dgv_Otpinfo_tb;
  2373. private System.Windows.Forms.TabPage tp_DiseList;
  2374. private Sunny.UI.UIDataGridView dgv_DiseList_tb;
  2375. private Sunny.UI.UIGroupBox uiGroupBox3;
  2376. private Sunny.UI.UIDataGridView dgv_PresPreChekInfo;
  2377. private Sunny.UI.UIPanel uiPanel4;
  2378. private System.Windows.Forms.TabPage tb_QueryDrug;
  2379. private Sunny.UI.UIPanel uiPanel2;
  2380. public PTControl.DBLookupCombox cbx_DocInfo;
  2381. private System.Windows.Forms.Label label4;
  2382. private Sunny.UI.UIRichTextBox rtb_CancelReason;
  2383. private Sunny.UI.UIRadioButtonGroup rg_type;
  2384. private Sunny.UI.UILabel uiLabel3;
  2385. private Sunny.UI.UILabel uiLabel4;
  2386. private Sunny.UI.UIDatetimePicker dt_Et;
  2387. private Sunny.UI.UIDatetimePicker dt_St;
  2388. private Sunny.UI.UITextBox tb_CertnoQuery;
  2389. private Sunny.UI.UIButton btnQuery;
  2390. private Sunny.UI.UIButton uiButton3;
  2391. private Sunny.UI.UIButton btnCancel;
  2392. private Sunny.UI.UILabel uiLabel7;
  2393. private Sunny.UI.UILabel uiLabel8;
  2394. private Sunny.UI.UIDatetimePicker dt_ET_PPC;
  2395. private Sunny.UI.UIDatetimePicker dt_ST_PPC;
  2396. private Sunny.UI.UITextBox tb_PresCertNo;
  2397. private Sunny.UI.UIPanel uiPanel3;
  2398. private Sunny.UI.UIButton btnTakeDrug;
  2399. private Sunny.UI.UIButton btn_QueryUploadInfo;
  2400. private Sunny.UI.UIButton uiButton4;
  2401. private Sunny.UI.UIButton uiButton5;
  2402. private Sunny.UI.UIGroupBox uiGroupBox2;
  2403. private Sunny.UI.UITabControl tbc_3;
  2404. private System.Windows.Forms.TabPage tpAuthResult;
  2405. private Sunny.UI.UIDataGridView dgv_PresAuditResults;
  2406. private System.Windows.Forms.TabPage tpTakeDrugResult;
  2407. private Sunny.UI.UIDataGridView dgvTakeDrugResult;
  2408. private System.Windows.Forms.Panel panel1;
  2409. private Sunny.UI.UILabel uiLabel17;
  2410. private Sunny.UI.UITextBox tbRxUseStateName_3;
  2411. private Sunny.UI.UILabel uiLabel16;
  2412. private Sunny.UI.UITextBox tbRxUseStateNO_3;
  2413. private Sunny.UI.UILabel label111;
  2414. private Sunny.UI.UITextBox tbRxStateName_3;
  2415. private Sunny.UI.UILabel uiLabel14;
  2416. private Sunny.UI.UITextBox tbRxStateCode;
  2417. private Sunny.UI.UILabel uiLabel13;
  2418. private Sunny.UI.UITextBox tbSettlTime_3;
  2419. private Sunny.UI.UILabel uiLabel12;
  2420. private Sunny.UI.UITextBox tbHiRxNO_3;
  2421. private Sunny.UI.UILabel uiLabel5;
  2422. private Sunny.UI.UILabel uiLabel6;
  2423. private Sunny.UI.UIDatetimePicker dt_ET_Process;
  2424. private Sunny.UI.UIDatetimePicker dt_ST_Process;
  2425. private Sunny.UI.UITextBox uiTextBox1;
  2426. private Sunny.UI.UIButton tb_QueryPresPreCheck;
  2427. private Sunny.UI.UIButton uiButton6;
  2428. private Sunny.UI.UIButton btn_InsuQuery;
  2429. private Sunny.UI.UIGroupBox gbStoreAndDrug;
  2430. private Sunny.UI.UITabControl uiTabControl1;
  2431. private System.Windows.Forms.TabPage tabPage1;
  2432. private Sunny.UI.UIDataGridView dgvStore;
  2433. private System.Windows.Forms.TabPage tabPage2;
  2434. private Sunny.UI.UIDataGridView dgvInventory;
  2435. private Sunny.UI.UIPanel uiPanel5;
  2436. private Sunny.UI.UITextBox tbHiRxno;
  2437. private Sunny.UI.UILabel uiLabel9;
  2438. private Sunny.UI.UIGroupBox gbRxInfo;
  2439. private Sunny.UI.UIDataGridView dgvRxDetail;
  2440. private Sunny.UI.UIDataGridView dgv_HISRegInfo;
  2441. private Sunny.UI.UIButton btnQueryRxInfo;
  2442. private Sunny.UI.UIButton btnClose_5;
  2443. private Sunny.UI.UIButton btnQueryDrugStoreInfo;
  2444. }
  2445. }