PrescriptionCirculation.designer.cs 154 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980
  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 dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  35. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
  36. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
  37. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
  38. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
  39. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
  40. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
  41. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
  42. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
  43. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
  44. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
  45. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
  46. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
  47. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
  48. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
  49. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
  50. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
  51. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
  52. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
  53. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
  54. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
  55. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
  56. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
  57. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
  58. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
  59. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
  60. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
  61. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
  62. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
  63. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
  64. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
  65. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
  66. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
  67. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
  68. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
  69. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
  70. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
  71. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
  72. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
  73. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
  74. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle46 = new System.Windows.Forms.DataGridViewCellStyle();
  75. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle47 = new System.Windows.Forms.DataGridViewCellStyle();
  76. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle48 = new System.Windows.Forms.DataGridViewCellStyle();
  77. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle49 = new System.Windows.Forms.DataGridViewCellStyle();
  78. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle50 = new System.Windows.Forms.DataGridViewCellStyle();
  79. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle51 = new System.Windows.Forms.DataGridViewCellStyle();
  80. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle52 = new System.Windows.Forms.DataGridViewCellStyle();
  81. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle53 = new System.Windows.Forms.DataGridViewCellStyle();
  82. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle54 = new System.Windows.Forms.DataGridViewCellStyle();
  83. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle55 = new System.Windows.Forms.DataGridViewCellStyle();
  84. this.tc_Main = new Sunny.UI.UITabControl();
  85. this.tb_PresUpload = new System.Windows.Forms.TabPage();
  86. this.gb_HISInsuReg = new Sunny.UI.UIGroupBox();
  87. this.dgv_HISRegInfo = new Sunny.UI.UIDataGridView();
  88. this.gb_Prescription = new Sunny.UI.UIGroupBox();
  89. this.dgv_PrescriptionInfo = new Sunny.UI.UIDataGridView();
  90. this.uiPanel1 = new Sunny.UI.UIPanel();
  91. this.btnElcSign = new Sunny.UI.UIButton();
  92. this.uiLabel2 = new Sunny.UI.UILabel();
  93. this.uiLabel1 = new Sunny.UI.UILabel();
  94. this.dtED = new Sunny.UI.UIDatetimePicker();
  95. this.dtST = new Sunny.UI.UIDatetimePicker();
  96. this.tb_CertNo = new Sunny.UI.UITextBox();
  97. this.btnGetInfo = new Sunny.UI.UIButton();
  98. this.btnUpload_Pre = new Sunny.UI.UIButton();
  99. this.btnClose = new Sunny.UI.UIButton();
  100. this.btnPresUpload = new Sunny.UI.UIButton();
  101. this.tb_CancelPres = new System.Windows.Forms.TabPage();
  102. this.uiPanel2 = new Sunny.UI.UIPanel();
  103. this.cbx_DocInfo = new PTControl.DBLookupCombox();
  104. this.label4 = new System.Windows.Forms.Label();
  105. this.rtb_CancelReason = new Sunny.UI.UIRichTextBox();
  106. this.rg_type = new Sunny.UI.UIRadioButtonGroup();
  107. this.uiLabel3 = new Sunny.UI.UILabel();
  108. this.uiLabel4 = new Sunny.UI.UILabel();
  109. this.dt_Et = new Sunny.UI.UIDatetimePicker();
  110. this.dt_St = new Sunny.UI.UIDatetimePicker();
  111. this.tb_CertnoQuery = new Sunny.UI.UITextBox();
  112. this.btnQuery = new Sunny.UI.UIButton();
  113. this.uiButton3 = new Sunny.UI.UIButton();
  114. this.btnCancel = new Sunny.UI.UIButton();
  115. this.dgv_Master = new Sunny.UI.UIDataGridView();
  116. this.tb_PresToExaInfo = new System.Windows.Forms.TabPage();
  117. this.uiGroupBox2 = new Sunny.UI.UIGroupBox();
  118. this.dgv_PresAuditResults = new Sunny.UI.UIDataGridView();
  119. this.uiGroupBox1 = new Sunny.UI.UIGroupBox();
  120. this.dgv_PresUploadInfo = new Sunny.UI.UIDataGridView();
  121. this.uiPanel3 = new Sunny.UI.UIPanel();
  122. this.uiLabel5 = new Sunny.UI.UILabel();
  123. this.uiLabel6 = new Sunny.UI.UILabel();
  124. this.dt_ET_Process = new Sunny.UI.UIDatetimePicker();
  125. this.dt_ST_Process = new Sunny.UI.UIDatetimePicker();
  126. this.uiTextBox1 = new Sunny.UI.UITextBox();
  127. this.btn_QueryUploadInfo = new Sunny.UI.UIButton();
  128. this.uiButton4 = new Sunny.UI.UIButton();
  129. this.uiButton5 = new Sunny.UI.UIButton();
  130. this.tb_PresInfo = new System.Windows.Forms.TabPage();
  131. this.uiGroupBox4 = new Sunny.UI.UIGroupBox();
  132. this.uiTabControl2 = new Sunny.UI.UITabControl();
  133. this.tp_PresMain = new System.Windows.Forms.TabPage();
  134. this.dgv_Main_tb = new Sunny.UI.UIDataGridView();
  135. this.tp_DetlList = new System.Windows.Forms.TabPage();
  136. this.dgv_DetlList_tb = new Sunny.UI.UIDataGridView();
  137. this.tp_Otpinfo = new System.Windows.Forms.TabPage();
  138. this.dgv_Otpinfo_tb = new Sunny.UI.UIDataGridView();
  139. this.tp_DiseList = new System.Windows.Forms.TabPage();
  140. this.dgv_DiseList_tb = new Sunny.UI.UIDataGridView();
  141. this.uiGroupBox3 = new Sunny.UI.UIGroupBox();
  142. this.dgv_PresPreChekInfo = new Sunny.UI.UIDataGridView();
  143. this.uiPanel4 = new Sunny.UI.UIPanel();
  144. this.uiLabel7 = new Sunny.UI.UILabel();
  145. this.uiLabel8 = new Sunny.UI.UILabel();
  146. this.dt_ET_PPC = new Sunny.UI.UIDatetimePicker();
  147. this.dt_ST_PPC = new Sunny.UI.UIDatetimePicker();
  148. this.tb_PresCertNo = new Sunny.UI.UITextBox();
  149. this.tb_QueryPresPreCheck = new Sunny.UI.UIButton();
  150. this.uiButton6 = new Sunny.UI.UIButton();
  151. this.btn_InsuQuery = new Sunny.UI.UIButton();
  152. this.tab_InsuDrugList = new System.Windows.Forms.TabPage();
  153. this.uiGroupBox5 = new Sunny.UI.UIGroupBox();
  154. this.dgv_InsuDrugList = new Sunny.UI.UIDataGridView();
  155. this.uiPanel5 = new Sunny.UI.UIPanel();
  156. this.uiLabel10 = new Sunny.UI.UILabel();
  157. this.edt_PageSize = new Sunny.UI.UITextBox();
  158. this.uiLabel9 = new Sunny.UI.UILabel();
  159. this.edt_PageNum = new Sunny.UI.UITextBox();
  160. this.uiButton8 = new Sunny.UI.UIButton();
  161. this.btn_InsuDrugList = new Sunny.UI.UIButton();
  162. this.uiLabel11 = new Sunny.UI.UILabel();
  163. this.edt_InsuCode = new Sunny.UI.UITextBox();
  164. this.tc_Main.SuspendLayout();
  165. this.tb_PresUpload.SuspendLayout();
  166. this.gb_HISInsuReg.SuspendLayout();
  167. ((System.ComponentModel.ISupportInitialize)(this.dgv_HISRegInfo)).BeginInit();
  168. this.gb_Prescription.SuspendLayout();
  169. ((System.ComponentModel.ISupportInitialize)(this.dgv_PrescriptionInfo)).BeginInit();
  170. this.uiPanel1.SuspendLayout();
  171. this.tb_CancelPres.SuspendLayout();
  172. this.uiPanel2.SuspendLayout();
  173. ((System.ComponentModel.ISupportInitialize)(this.dgv_Master)).BeginInit();
  174. this.tb_PresToExaInfo.SuspendLayout();
  175. this.uiGroupBox2.SuspendLayout();
  176. ((System.ComponentModel.ISupportInitialize)(this.dgv_PresAuditResults)).BeginInit();
  177. this.uiGroupBox1.SuspendLayout();
  178. ((System.ComponentModel.ISupportInitialize)(this.dgv_PresUploadInfo)).BeginInit();
  179. this.uiPanel3.SuspendLayout();
  180. this.tb_PresInfo.SuspendLayout();
  181. this.uiGroupBox4.SuspendLayout();
  182. this.uiTabControl2.SuspendLayout();
  183. this.tp_PresMain.SuspendLayout();
  184. ((System.ComponentModel.ISupportInitialize)(this.dgv_Main_tb)).BeginInit();
  185. this.tp_DetlList.SuspendLayout();
  186. ((System.ComponentModel.ISupportInitialize)(this.dgv_DetlList_tb)).BeginInit();
  187. this.tp_Otpinfo.SuspendLayout();
  188. ((System.ComponentModel.ISupportInitialize)(this.dgv_Otpinfo_tb)).BeginInit();
  189. this.tp_DiseList.SuspendLayout();
  190. ((System.ComponentModel.ISupportInitialize)(this.dgv_DiseList_tb)).BeginInit();
  191. this.uiGroupBox3.SuspendLayout();
  192. ((System.ComponentModel.ISupportInitialize)(this.dgv_PresPreChekInfo)).BeginInit();
  193. this.uiPanel4.SuspendLayout();
  194. this.tab_InsuDrugList.SuspendLayout();
  195. this.uiGroupBox5.SuspendLayout();
  196. ((System.ComponentModel.ISupportInitialize)(this.dgv_InsuDrugList)).BeginInit();
  197. this.uiPanel5.SuspendLayout();
  198. this.SuspendLayout();
  199. //
  200. // tc_Main
  201. //
  202. this.tc_Main.Controls.Add(this.tb_PresUpload);
  203. this.tc_Main.Controls.Add(this.tb_CancelPres);
  204. this.tc_Main.Controls.Add(this.tb_PresToExaInfo);
  205. this.tc_Main.Controls.Add(this.tb_PresInfo);
  206. this.tc_Main.Controls.Add(this.tab_InsuDrugList);
  207. this.tc_Main.Dock = System.Windows.Forms.DockStyle.Fill;
  208. this.tc_Main.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  209. this.tc_Main.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  210. this.tc_Main.ItemSize = new System.Drawing.Size(180, 40);
  211. this.tc_Main.Location = new System.Drawing.Point(0, 0);
  212. this.tc_Main.MainPage = "";
  213. this.tc_Main.Name = "tc_Main";
  214. this.tc_Main.SelectedIndex = 0;
  215. this.tc_Main.Size = new System.Drawing.Size(1434, 744);
  216. this.tc_Main.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  217. this.tc_Main.TabIndex = 0;
  218. this.tc_Main.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  219. this.tc_Main.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  220. //
  221. // tb_PresUpload
  222. //
  223. this.tb_PresUpload.Controls.Add(this.gb_HISInsuReg);
  224. this.tb_PresUpload.Controls.Add(this.gb_Prescription);
  225. this.tb_PresUpload.Controls.Add(this.uiPanel1);
  226. this.tb_PresUpload.Location = new System.Drawing.Point(0, 40);
  227. this.tb_PresUpload.Name = "tb_PresUpload";
  228. this.tb_PresUpload.Size = new System.Drawing.Size(1434, 704);
  229. this.tb_PresUpload.TabIndex = 0;
  230. this.tb_PresUpload.Text = "电子处方上传";
  231. this.tb_PresUpload.UseVisualStyleBackColor = true;
  232. //
  233. // gb_HISInsuReg
  234. //
  235. this.gb_HISInsuReg.Controls.Add(this.dgv_HISRegInfo);
  236. this.gb_HISInsuReg.Dock = System.Windows.Forms.DockStyle.Fill;
  237. this.gb_HISInsuReg.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  238. this.gb_HISInsuReg.Location = new System.Drawing.Point(0, 0);
  239. this.gb_HISInsuReg.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  240. this.gb_HISInsuReg.MinimumSize = new System.Drawing.Size(1, 1);
  241. this.gb_HISInsuReg.Name = "gb_HISInsuReg";
  242. this.gb_HISInsuReg.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  243. this.gb_HISInsuReg.Size = new System.Drawing.Size(1434, 227);
  244. this.gb_HISInsuReg.TabIndex = 9;
  245. this.gb_HISInsuReg.Text = "HIS就诊信息(点击查看处方明细)";
  246. this.gb_HISInsuReg.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  247. this.gb_HISInsuReg.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  248. //
  249. // dgv_HISRegInfo
  250. //
  251. this.dgv_HISRegInfo.AllowUserToAddRows = false;
  252. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  253. this.dgv_HISRegInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  254. this.dgv_HISRegInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  255. this.dgv_HISRegInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  256. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  257. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  258. dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  259. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
  260. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  261. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  262. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  263. this.dgv_HISRegInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  264. this.dgv_HISRegInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  265. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  266. dataGridViewCellStyle3.BackColor = System.Drawing.Color.White;
  267. dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  268. dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  269. dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  270. dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  271. dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  272. this.dgv_HISRegInfo.DefaultCellStyle = dataGridViewCellStyle3;
  273. this.dgv_HISRegInfo.Dock = System.Windows.Forms.DockStyle.Fill;
  274. this.dgv_HISRegInfo.EnableHeadersVisualStyles = false;
  275. this.dgv_HISRegInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  276. this.dgv_HISRegInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  277. this.dgv_HISRegInfo.Location = new System.Drawing.Point(0, 32);
  278. this.dgv_HISRegInfo.Name = "dgv_HISRegInfo";
  279. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  280. dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  281. dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  282. dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  283. dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  284. dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  285. dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  286. this.dgv_HISRegInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
  287. dataGridViewCellStyle5.BackColor = System.Drawing.Color.White;
  288. dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  289. dataGridViewCellStyle5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  290. dataGridViewCellStyle5.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  291. dataGridViewCellStyle5.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  292. this.dgv_HISRegInfo.RowsDefaultCellStyle = dataGridViewCellStyle5;
  293. this.dgv_HISRegInfo.RowTemplate.Height = 23;
  294. this.dgv_HISRegInfo.SelectedIndex = -1;
  295. this.dgv_HISRegInfo.Size = new System.Drawing.Size(1434, 195);
  296. this.dgv_HISRegInfo.TabIndex = 4;
  297. this.dgv_HISRegInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  298. this.dgv_HISRegInfo.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_HISRegInfo_CellClick);
  299. //
  300. // gb_Prescription
  301. //
  302. this.gb_Prescription.Controls.Add(this.dgv_PrescriptionInfo);
  303. this.gb_Prescription.Dock = System.Windows.Forms.DockStyle.Bottom;
  304. this.gb_Prescription.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  305. this.gb_Prescription.Location = new System.Drawing.Point(0, 227);
  306. this.gb_Prescription.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  307. this.gb_Prescription.MinimumSize = new System.Drawing.Size(1, 1);
  308. this.gb_Prescription.Name = "gb_Prescription";
  309. this.gb_Prescription.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  310. this.gb_Prescription.Size = new System.Drawing.Size(1434, 394);
  311. this.gb_Prescription.TabIndex = 6;
  312. this.gb_Prescription.Text = "处方信息";
  313. this.gb_Prescription.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  314. this.gb_Prescription.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  315. //
  316. // dgv_PrescriptionInfo
  317. //
  318. this.dgv_PrescriptionInfo.AllowUserToAddRows = false;
  319. dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  320. this.dgv_PrescriptionInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle6;
  321. this.dgv_PrescriptionInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  322. this.dgv_PrescriptionInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  323. dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  324. dataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  325. dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  326. dataGridViewCellStyle7.ForeColor = System.Drawing.Color.White;
  327. dataGridViewCellStyle7.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  328. dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  329. dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  330. this.dgv_PrescriptionInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
  331. this.dgv_PrescriptionInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  332. dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  333. dataGridViewCellStyle8.BackColor = System.Drawing.Color.White;
  334. dataGridViewCellStyle8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  335. dataGridViewCellStyle8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  336. dataGridViewCellStyle8.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  337. dataGridViewCellStyle8.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  338. dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  339. this.dgv_PrescriptionInfo.DefaultCellStyle = dataGridViewCellStyle8;
  340. this.dgv_PrescriptionInfo.Dock = System.Windows.Forms.DockStyle.Fill;
  341. this.dgv_PrescriptionInfo.EnableHeadersVisualStyles = false;
  342. this.dgv_PrescriptionInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  343. this.dgv_PrescriptionInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  344. this.dgv_PrescriptionInfo.Location = new System.Drawing.Point(0, 32);
  345. this.dgv_PrescriptionInfo.Name = "dgv_PrescriptionInfo";
  346. dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  347. dataGridViewCellStyle9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  348. dataGridViewCellStyle9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  349. dataGridViewCellStyle9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  350. dataGridViewCellStyle9.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  351. dataGridViewCellStyle9.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  352. dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  353. this.dgv_PrescriptionInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle9;
  354. dataGridViewCellStyle10.BackColor = System.Drawing.Color.White;
  355. dataGridViewCellStyle10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  356. dataGridViewCellStyle10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  357. dataGridViewCellStyle10.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  358. dataGridViewCellStyle10.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  359. this.dgv_PrescriptionInfo.RowsDefaultCellStyle = dataGridViewCellStyle10;
  360. this.dgv_PrescriptionInfo.RowTemplate.Height = 23;
  361. this.dgv_PrescriptionInfo.SelectedIndex = -1;
  362. this.dgv_PrescriptionInfo.Size = new System.Drawing.Size(1434, 362);
  363. this.dgv_PrescriptionInfo.TabIndex = 5;
  364. this.dgv_PrescriptionInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  365. this.dgv_PrescriptionInfo.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_PrescriptionInfo_CellContentClick);
  366. //
  367. // uiPanel1
  368. //
  369. this.uiPanel1.Controls.Add(this.btnElcSign);
  370. this.uiPanel1.Controls.Add(this.uiLabel2);
  371. this.uiPanel1.Controls.Add(this.uiLabel1);
  372. this.uiPanel1.Controls.Add(this.dtED);
  373. this.uiPanel1.Controls.Add(this.dtST);
  374. this.uiPanel1.Controls.Add(this.tb_CertNo);
  375. this.uiPanel1.Controls.Add(this.btnGetInfo);
  376. this.uiPanel1.Controls.Add(this.btnUpload_Pre);
  377. this.uiPanel1.Controls.Add(this.btnClose);
  378. this.uiPanel1.Controls.Add(this.btnPresUpload);
  379. this.uiPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
  380. this.uiPanel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  381. this.uiPanel1.Location = new System.Drawing.Point(0, 621);
  382. this.uiPanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  383. this.uiPanel1.MinimumSize = new System.Drawing.Size(1, 1);
  384. this.uiPanel1.Name = "uiPanel1";
  385. this.uiPanel1.Size = new System.Drawing.Size(1434, 83);
  386. this.uiPanel1.TabIndex = 0;
  387. this.uiPanel1.Text = null;
  388. this.uiPanel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  389. this.uiPanel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  390. //
  391. // btnElcSign
  392. //
  393. this.btnElcSign.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  394. this.btnElcSign.Cursor = System.Windows.Forms.Cursors.Hand;
  395. this.btnElcSign.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  396. this.btnElcSign.Location = new System.Drawing.Point(1101, 11);
  397. this.btnElcSign.MinimumSize = new System.Drawing.Size(1, 1);
  398. this.btnElcSign.Name = "btnElcSign";
  399. this.btnElcSign.Size = new System.Drawing.Size(107, 62);
  400. this.btnElcSign.TabIndex = 40;
  401. this.btnElcSign.Text = "3.电子签名";
  402. this.btnElcSign.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  403. this.btnElcSign.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  404. this.btnElcSign.Click += new System.EventHandler(this.btnElcSign_Click);
  405. //
  406. // uiLabel2
  407. //
  408. this.uiLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  409. this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  410. this.uiLabel2.Location = new System.Drawing.Point(309, 11);
  411. this.uiLabel2.Name = "uiLabel2";
  412. this.uiLabel2.Size = new System.Drawing.Size(90, 23);
  413. this.uiLabel2.TabIndex = 39;
  414. this.uiLabel2.Text = "身份证号:";
  415. this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  416. this.uiLabel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  417. //
  418. // uiLabel1
  419. //
  420. this.uiLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  421. this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  422. this.uiLabel1.Location = new System.Drawing.Point(16, 11);
  423. this.uiLabel1.Name = "uiLabel1";
  424. this.uiLabel1.Size = new System.Drawing.Size(90, 23);
  425. this.uiLabel1.TabIndex = 38;
  426. this.uiLabel1.Text = "查询时间:";
  427. this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  428. this.uiLabel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  429. //
  430. // dtED
  431. //
  432. this.dtED.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  433. this.dtED.FillColor = System.Drawing.Color.White;
  434. this.dtED.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  435. this.dtED.Location = new System.Drawing.Point(109, 44);
  436. this.dtED.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  437. this.dtED.MaxLength = 19;
  438. this.dtED.MinimumSize = new System.Drawing.Size(63, 0);
  439. this.dtED.Name = "dtED";
  440. this.dtED.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  441. this.dtED.Size = new System.Drawing.Size(183, 29);
  442. this.dtED.SymbolDropDown = 61555;
  443. this.dtED.SymbolNormal = 61555;
  444. this.dtED.TabIndex = 37;
  445. this.dtED.Text = "2023-06-15 00:00:00";
  446. this.dtED.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  447. this.dtED.Value = new System.DateTime(2023, 6, 15, 0, 0, 0, 0);
  448. this.dtED.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  449. //
  450. // dtST
  451. //
  452. this.dtST.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  453. this.dtST.FillColor = System.Drawing.Color.White;
  454. this.dtST.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  455. this.dtST.Location = new System.Drawing.Point(109, 9);
  456. this.dtST.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  457. this.dtST.MaxLength = 19;
  458. this.dtST.MinimumSize = new System.Drawing.Size(63, 0);
  459. this.dtST.Name = "dtST";
  460. this.dtST.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  461. this.dtST.Size = new System.Drawing.Size(183, 29);
  462. this.dtST.SymbolDropDown = 61555;
  463. this.dtST.SymbolNormal = 61555;
  464. this.dtST.TabIndex = 36;
  465. this.dtST.Text = "2023-06-14 00:00:00";
  466. this.dtST.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  467. this.dtST.Value = new System.DateTime(2023, 6, 14, 0, 0, 0, 0);
  468. this.dtST.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  469. //
  470. // tb_CertNo
  471. //
  472. this.tb_CertNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  473. this.tb_CertNo.Cursor = System.Windows.Forms.Cursors.IBeam;
  474. this.tb_CertNo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  475. this.tb_CertNo.Location = new System.Drawing.Point(307, 44);
  476. this.tb_CertNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  477. this.tb_CertNo.MinimumSize = new System.Drawing.Size(1, 16);
  478. this.tb_CertNo.Name = "tb_CertNo";
  479. this.tb_CertNo.ShowText = false;
  480. this.tb_CertNo.Size = new System.Drawing.Size(175, 29);
  481. this.tb_CertNo.TabIndex = 30;
  482. this.tb_CertNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  483. this.tb_CertNo.Watermark = "请输入身份证号";
  484. this.tb_CertNo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  485. //
  486. // btnGetInfo
  487. //
  488. this.btnGetInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  489. this.btnGetInfo.Cursor = System.Windows.Forms.Cursors.Hand;
  490. this.btnGetInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  491. this.btnGetInfo.Location = new System.Drawing.Point(499, 11);
  492. this.btnGetInfo.MinimumSize = new System.Drawing.Size(1, 1);
  493. this.btnGetInfo.Name = "btnGetInfo";
  494. this.btnGetInfo.Size = new System.Drawing.Size(111, 62);
  495. this.btnGetInfo.TabIndex = 29;
  496. this.btnGetInfo.Text = "1.查 询";
  497. this.btnGetInfo.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  498. this.btnGetInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  499. this.btnGetInfo.Click += new System.EventHandler(this.btnReadCard_Click);
  500. //
  501. // btnUpload_Pre
  502. //
  503. this.btnUpload_Pre.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  504. this.btnUpload_Pre.Cursor = System.Windows.Forms.Cursors.Hand;
  505. this.btnUpload_Pre.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  506. this.btnUpload_Pre.Location = new System.Drawing.Point(991, 11);
  507. this.btnUpload_Pre.MinimumSize = new System.Drawing.Size(1, 1);
  508. this.btnUpload_Pre.Name = "btnUpload_Pre";
  509. this.btnUpload_Pre.Size = new System.Drawing.Size(107, 62);
  510. this.btnUpload_Pre.TabIndex = 2;
  511. this.btnUpload_Pre.Text = "2.预核验";
  512. this.btnUpload_Pre.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  513. this.btnUpload_Pre.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  514. this.btnUpload_Pre.Click += new System.EventHandler(this.btnUpload_Pre_Click);
  515. //
  516. // btnClose
  517. //
  518. this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  519. this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand;
  520. this.btnClose.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  521. this.btnClose.Location = new System.Drawing.Point(1321, 11);
  522. this.btnClose.MinimumSize = new System.Drawing.Size(1, 1);
  523. this.btnClose.Name = "btnClose";
  524. this.btnClose.Size = new System.Drawing.Size(107, 62);
  525. this.btnClose.TabIndex = 1;
  526. this.btnClose.Text = "退 出";
  527. this.btnClose.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  528. this.btnClose.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  529. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  530. //
  531. // btnPresUpload
  532. //
  533. this.btnPresUpload.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  534. this.btnPresUpload.Cursor = System.Windows.Forms.Cursors.Hand;
  535. this.btnPresUpload.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  536. this.btnPresUpload.Location = new System.Drawing.Point(1211, 11);
  537. this.btnPresUpload.MinimumSize = new System.Drawing.Size(1, 1);
  538. this.btnPresUpload.Name = "btnPresUpload";
  539. this.btnPresUpload.Size = new System.Drawing.Size(107, 62);
  540. this.btnPresUpload.TabIndex = 0;
  541. this.btnPresUpload.Text = "4.确认上传";
  542. this.btnPresUpload.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  543. this.btnPresUpload.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  544. this.btnPresUpload.Click += new System.EventHandler(this.btnPresUpload_Click);
  545. //
  546. // tb_CancelPres
  547. //
  548. this.tb_CancelPres.Controls.Add(this.uiPanel2);
  549. this.tb_CancelPres.Controls.Add(this.dgv_Master);
  550. this.tb_CancelPres.Location = new System.Drawing.Point(0, 40);
  551. this.tb_CancelPres.Name = "tb_CancelPres";
  552. this.tb_CancelPres.Size = new System.Drawing.Size(1434, 704);
  553. this.tb_CancelPres.TabIndex = 1;
  554. this.tb_CancelPres.Text = "电子处方撤销";
  555. this.tb_CancelPres.UseVisualStyleBackColor = true;
  556. //
  557. // uiPanel2
  558. //
  559. this.uiPanel2.Controls.Add(this.cbx_DocInfo);
  560. this.uiPanel2.Controls.Add(this.label4);
  561. this.uiPanel2.Controls.Add(this.rtb_CancelReason);
  562. this.uiPanel2.Controls.Add(this.rg_type);
  563. this.uiPanel2.Controls.Add(this.uiLabel3);
  564. this.uiPanel2.Controls.Add(this.uiLabel4);
  565. this.uiPanel2.Controls.Add(this.dt_Et);
  566. this.uiPanel2.Controls.Add(this.dt_St);
  567. this.uiPanel2.Controls.Add(this.tb_CertnoQuery);
  568. this.uiPanel2.Controls.Add(this.btnQuery);
  569. this.uiPanel2.Controls.Add(this.uiButton3);
  570. this.uiPanel2.Controls.Add(this.btnCancel);
  571. this.uiPanel2.Dock = System.Windows.Forms.DockStyle.Bottom;
  572. this.uiPanel2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  573. this.uiPanel2.Location = new System.Drawing.Point(0, 603);
  574. this.uiPanel2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  575. this.uiPanel2.MinimumSize = new System.Drawing.Size(1, 1);
  576. this.uiPanel2.Name = "uiPanel2";
  577. this.uiPanel2.Size = new System.Drawing.Size(1434, 101);
  578. this.uiPanel2.TabIndex = 7;
  579. this.uiPanel2.Text = null;
  580. this.uiPanel2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  581. this.uiPanel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  582. //
  583. // cbx_DocInfo
  584. //
  585. this.cbx_DocInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  586. this.cbx_DocInfo.FormattingEnabled = true;
  587. this.cbx_DocInfo.Location = new System.Drawing.Point(649, 7);
  588. this.cbx_DocInfo.Name = "cbx_DocInfo";
  589. this.cbx_DocInfo.NullValue = "";
  590. this.cbx_DocInfo.PopupGridAutoSize = false;
  591. this.cbx_DocInfo.RowFilterVisible = false;
  592. this.cbx_DocInfo.sDisplayField = "";
  593. this.cbx_DocInfo.sDisplayMember = "";
  594. this.cbx_DocInfo.SeparatorChar = "|";
  595. this.cbx_DocInfo.Size = new System.Drawing.Size(230, 29);
  596. this.cbx_DocInfo.sKeyWords = "";
  597. this.cbx_DocInfo.sValueMember = "";
  598. this.cbx_DocInfo.TabIndex = 43;
  599. this.cbx_DocInfo.Value = "";
  600. this.cbx_DocInfo.AfterSelector += new PTControl.AfterSelectorEventHandler(this.cbx_DocInfo_AfterSelector);
  601. //
  602. // label4
  603. //
  604. this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  605. this.label4.AutoSize = true;
  606. this.label4.ForeColor = System.Drawing.SystemColors.InfoText;
  607. this.label4.Location = new System.Drawing.Point(552, 11);
  608. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  609. this.label4.Name = "label4";
  610. this.label4.Size = new System.Drawing.Size(90, 21);
  611. this.label4.TabIndex = 42;
  612. this.label4.Text = "撤销医师:";
  613. //
  614. // rtb_CancelReason
  615. //
  616. this.rtb_CancelReason.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  617. this.rtb_CancelReason.FillColor = System.Drawing.Color.White;
  618. this.rtb_CancelReason.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  619. this.rtb_CancelReason.Location = new System.Drawing.Point(552, 37);
  620. this.rtb_CancelReason.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  621. this.rtb_CancelReason.MinimumSize = new System.Drawing.Size(1, 1);
  622. this.rtb_CancelReason.Name = "rtb_CancelReason";
  623. this.rtb_CancelReason.Padding = new System.Windows.Forms.Padding(2);
  624. this.rtb_CancelReason.ShowText = false;
  625. this.rtb_CancelReason.Size = new System.Drawing.Size(328, 58);
  626. this.rtb_CancelReason.TabIndex = 41;
  627. this.rtb_CancelReason.Text = "请输入撤销原因";
  628. this.rtb_CancelReason.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  629. this.rtb_CancelReason.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  630. //
  631. // rg_type
  632. //
  633. this.rg_type.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  634. | System.Windows.Forms.AnchorStyles.Left)));
  635. this.rg_type.ColumnCount = 2;
  636. this.rg_type.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  637. this.rg_type.Items.AddRange(new object[] {
  638. "全部",
  639. "已上传",
  640. "已撤销"});
  641. this.rg_type.ItemSize = new System.Drawing.Size(100, 35);
  642. this.rg_type.Location = new System.Drawing.Point(321, 1);
  643. this.rg_type.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  644. this.rg_type.MinimumSize = new System.Drawing.Size(1, 1);
  645. this.rg_type.Name = "rg_type";
  646. this.rg_type.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  647. this.rg_type.Size = new System.Drawing.Size(222, 95);
  648. this.rg_type.TabIndex = 40;
  649. this.rg_type.Text = "上传状态";
  650. this.rg_type.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  651. this.rg_type.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  652. //
  653. // uiLabel3
  654. //
  655. this.uiLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  656. this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  657. this.uiLabel3.Location = new System.Drawing.Point(17, 70);
  658. this.uiLabel3.Name = "uiLabel3";
  659. this.uiLabel3.Size = new System.Drawing.Size(90, 23);
  660. this.uiLabel3.TabIndex = 39;
  661. this.uiLabel3.Text = "身份证号:";
  662. this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  663. this.uiLabel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  664. //
  665. // uiLabel4
  666. //
  667. this.uiLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  668. this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  669. this.uiLabel4.Location = new System.Drawing.Point(17, 10);
  670. this.uiLabel4.Name = "uiLabel4";
  671. this.uiLabel4.Size = new System.Drawing.Size(90, 23);
  672. this.uiLabel4.TabIndex = 38;
  673. this.uiLabel4.Text = "查询时间:";
  674. this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  675. this.uiLabel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  676. //
  677. // dt_Et
  678. //
  679. this.dt_Et.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  680. this.dt_Et.FillColor = System.Drawing.Color.White;
  681. this.dt_Et.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  682. this.dt_Et.Location = new System.Drawing.Point(113, 37);
  683. this.dt_Et.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  684. this.dt_Et.MaxLength = 19;
  685. this.dt_Et.MinimumSize = new System.Drawing.Size(63, 0);
  686. this.dt_Et.Name = "dt_Et";
  687. this.dt_Et.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  688. this.dt_Et.Size = new System.Drawing.Size(198, 29);
  689. this.dt_Et.SymbolDropDown = 61555;
  690. this.dt_Et.SymbolNormal = 61555;
  691. this.dt_Et.TabIndex = 37;
  692. this.dt_Et.Text = "2023-06-15 00:00:00";
  693. this.dt_Et.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  694. this.dt_Et.Value = new System.DateTime(2023, 6, 15, 0, 0, 0, 0);
  695. this.dt_Et.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  696. //
  697. // dt_St
  698. //
  699. this.dt_St.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  700. this.dt_St.FillColor = System.Drawing.Color.White;
  701. this.dt_St.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  702. this.dt_St.Location = new System.Drawing.Point(113, 7);
  703. this.dt_St.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  704. this.dt_St.MaxLength = 19;
  705. this.dt_St.MinimumSize = new System.Drawing.Size(63, 0);
  706. this.dt_St.Name = "dt_St";
  707. this.dt_St.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  708. this.dt_St.Size = new System.Drawing.Size(198, 29);
  709. this.dt_St.SymbolDropDown = 61555;
  710. this.dt_St.SymbolNormal = 61555;
  711. this.dt_St.TabIndex = 36;
  712. this.dt_St.Text = "2023-06-14 00:00:00";
  713. this.dt_St.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  714. this.dt_St.Value = new System.DateTime(2023, 6, 14, 0, 0, 0, 0);
  715. this.dt_St.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  716. //
  717. // tb_CertnoQuery
  718. //
  719. this.tb_CertnoQuery.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  720. this.tb_CertnoQuery.Cursor = System.Windows.Forms.Cursors.IBeam;
  721. this.tb_CertnoQuery.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  722. this.tb_CertnoQuery.Location = new System.Drawing.Point(113, 67);
  723. this.tb_CertnoQuery.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  724. this.tb_CertnoQuery.MinimumSize = new System.Drawing.Size(1, 16);
  725. this.tb_CertnoQuery.Name = "tb_CertnoQuery";
  726. this.tb_CertnoQuery.ShowText = false;
  727. this.tb_CertnoQuery.Size = new System.Drawing.Size(198, 29);
  728. this.tb_CertnoQuery.TabIndex = 30;
  729. this.tb_CertnoQuery.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  730. this.tb_CertnoQuery.Watermark = "请输入身份证号";
  731. this.tb_CertnoQuery.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  732. //
  733. // btnQuery
  734. //
  735. this.btnQuery.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  736. this.btnQuery.Cursor = System.Windows.Forms.Cursors.Hand;
  737. this.btnQuery.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  738. this.btnQuery.Location = new System.Drawing.Point(1093, 13);
  739. this.btnQuery.MinimumSize = new System.Drawing.Size(1, 1);
  740. this.btnQuery.Name = "btnQuery";
  741. this.btnQuery.Size = new System.Drawing.Size(114, 75);
  742. this.btnQuery.TabIndex = 29;
  743. this.btnQuery.Text = "查 询";
  744. this.btnQuery.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  745. this.btnQuery.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  746. this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
  747. //
  748. // uiButton3
  749. //
  750. this.uiButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  751. this.uiButton3.Cursor = System.Windows.Forms.Cursors.Hand;
  752. this.uiButton3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  753. this.uiButton3.Location = new System.Drawing.Point(1323, 13);
  754. this.uiButton3.MinimumSize = new System.Drawing.Size(1, 1);
  755. this.uiButton3.Name = "uiButton3";
  756. this.uiButton3.Size = new System.Drawing.Size(106, 75);
  757. this.uiButton3.TabIndex = 1;
  758. this.uiButton3.Text = "退 出";
  759. this.uiButton3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  760. this.uiButton3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  761. this.uiButton3.Click += new System.EventHandler(this.btnClose_Click);
  762. //
  763. // btnCancel
  764. //
  765. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  766. this.btnCancel.Cursor = System.Windows.Forms.Cursors.Hand;
  767. this.btnCancel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  768. this.btnCancel.Location = new System.Drawing.Point(1208, 13);
  769. this.btnCancel.MinimumSize = new System.Drawing.Size(1, 1);
  770. this.btnCancel.Name = "btnCancel";
  771. this.btnCancel.Size = new System.Drawing.Size(114, 75);
  772. this.btnCancel.TabIndex = 0;
  773. this.btnCancel.Text = "确认撤销";
  774. this.btnCancel.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  775. this.btnCancel.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  776. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  777. //
  778. // dgv_Master
  779. //
  780. this.dgv_Master.AllowUserToAddRows = false;
  781. dataGridViewCellStyle11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  782. this.dgv_Master.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle11;
  783. this.dgv_Master.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  784. this.dgv_Master.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  785. dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  786. dataGridViewCellStyle12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  787. dataGridViewCellStyle12.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  788. dataGridViewCellStyle12.ForeColor = System.Drawing.Color.White;
  789. dataGridViewCellStyle12.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  790. dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  791. dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  792. this.dgv_Master.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle12;
  793. this.dgv_Master.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  794. dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  795. dataGridViewCellStyle13.BackColor = System.Drawing.Color.White;
  796. dataGridViewCellStyle13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  797. dataGridViewCellStyle13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  798. dataGridViewCellStyle13.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  799. dataGridViewCellStyle13.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  800. dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  801. this.dgv_Master.DefaultCellStyle = dataGridViewCellStyle13;
  802. this.dgv_Master.Dock = System.Windows.Forms.DockStyle.Fill;
  803. this.dgv_Master.EnableHeadersVisualStyles = false;
  804. this.dgv_Master.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  805. this.dgv_Master.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  806. this.dgv_Master.Location = new System.Drawing.Point(0, 0);
  807. this.dgv_Master.Name = "dgv_Master";
  808. dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  809. dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  810. dataGridViewCellStyle14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  811. dataGridViewCellStyle14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  812. dataGridViewCellStyle14.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  813. dataGridViewCellStyle14.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  814. dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  815. this.dgv_Master.RowHeadersDefaultCellStyle = dataGridViewCellStyle14;
  816. dataGridViewCellStyle15.BackColor = System.Drawing.Color.White;
  817. dataGridViewCellStyle15.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  818. dataGridViewCellStyle15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  819. dataGridViewCellStyle15.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  820. dataGridViewCellStyle15.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  821. this.dgv_Master.RowsDefaultCellStyle = dataGridViewCellStyle15;
  822. this.dgv_Master.RowTemplate.Height = 23;
  823. this.dgv_Master.SelectedIndex = -1;
  824. this.dgv_Master.Size = new System.Drawing.Size(1434, 704);
  825. this.dgv_Master.TabIndex = 6;
  826. this.dgv_Master.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  827. //
  828. // tb_PresToExaInfo
  829. //
  830. this.tb_PresToExaInfo.Controls.Add(this.uiGroupBox2);
  831. this.tb_PresToExaInfo.Controls.Add(this.uiGroupBox1);
  832. this.tb_PresToExaInfo.Controls.Add(this.uiPanel3);
  833. this.tb_PresToExaInfo.Location = new System.Drawing.Point(0, 40);
  834. this.tb_PresToExaInfo.Name = "tb_PresToExaInfo";
  835. this.tb_PresToExaInfo.Size = new System.Drawing.Size(1434, 704);
  836. this.tb_PresToExaInfo.TabIndex = 3;
  837. this.tb_PresToExaInfo.Text = "电子处方审核结果查询";
  838. this.tb_PresToExaInfo.UseVisualStyleBackColor = true;
  839. //
  840. // uiGroupBox2
  841. //
  842. this.uiGroupBox2.Controls.Add(this.dgv_PresAuditResults);
  843. this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
  844. this.uiGroupBox2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  845. this.uiGroupBox2.Location = new System.Drawing.Point(0, 430);
  846. this.uiGroupBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  847. this.uiGroupBox2.MinimumSize = new System.Drawing.Size(1, 1);
  848. this.uiGroupBox2.Name = "uiGroupBox2";
  849. this.uiGroupBox2.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  850. this.uiGroupBox2.Size = new System.Drawing.Size(1434, 186);
  851. this.uiGroupBox2.TabIndex = 11;
  852. this.uiGroupBox2.Text = "电子处方审核结果";
  853. this.uiGroupBox2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  854. this.uiGroupBox2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  855. //
  856. // dgv_PresAuditResults
  857. //
  858. this.dgv_PresAuditResults.AllowUserToAddRows = false;
  859. dataGridViewCellStyle16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  860. this.dgv_PresAuditResults.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle16;
  861. this.dgv_PresAuditResults.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  862. this.dgv_PresAuditResults.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  863. dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  864. dataGridViewCellStyle17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  865. dataGridViewCellStyle17.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  866. dataGridViewCellStyle17.ForeColor = System.Drawing.Color.White;
  867. dataGridViewCellStyle17.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  868. dataGridViewCellStyle17.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  869. dataGridViewCellStyle17.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  870. this.dgv_PresAuditResults.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle17;
  871. this.dgv_PresAuditResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  872. dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  873. dataGridViewCellStyle18.BackColor = System.Drawing.Color.White;
  874. dataGridViewCellStyle18.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  875. dataGridViewCellStyle18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  876. dataGridViewCellStyle18.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  877. dataGridViewCellStyle18.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  878. dataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  879. this.dgv_PresAuditResults.DefaultCellStyle = dataGridViewCellStyle18;
  880. this.dgv_PresAuditResults.Dock = System.Windows.Forms.DockStyle.Fill;
  881. this.dgv_PresAuditResults.EnableHeadersVisualStyles = false;
  882. this.dgv_PresAuditResults.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  883. this.dgv_PresAuditResults.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  884. this.dgv_PresAuditResults.Location = new System.Drawing.Point(0, 32);
  885. this.dgv_PresAuditResults.Name = "dgv_PresAuditResults";
  886. dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  887. dataGridViewCellStyle19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  888. dataGridViewCellStyle19.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  889. dataGridViewCellStyle19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  890. dataGridViewCellStyle19.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  891. dataGridViewCellStyle19.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  892. dataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  893. this.dgv_PresAuditResults.RowHeadersDefaultCellStyle = dataGridViewCellStyle19;
  894. dataGridViewCellStyle20.BackColor = System.Drawing.Color.White;
  895. dataGridViewCellStyle20.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  896. dataGridViewCellStyle20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  897. dataGridViewCellStyle20.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  898. dataGridViewCellStyle20.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  899. this.dgv_PresAuditResults.RowsDefaultCellStyle = dataGridViewCellStyle20;
  900. this.dgv_PresAuditResults.RowTemplate.Height = 23;
  901. this.dgv_PresAuditResults.SelectedIndex = -1;
  902. this.dgv_PresAuditResults.Size = new System.Drawing.Size(1434, 154);
  903. this.dgv_PresAuditResults.TabIndex = 12;
  904. this.dgv_PresAuditResults.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  905. //
  906. // uiGroupBox1
  907. //
  908. this.uiGroupBox1.Controls.Add(this.dgv_PresUploadInfo);
  909. this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
  910. this.uiGroupBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  911. this.uiGroupBox1.Location = new System.Drawing.Point(0, 0);
  912. this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  913. this.uiGroupBox1.MinimumSize = new System.Drawing.Size(1, 1);
  914. this.uiGroupBox1.Name = "uiGroupBox1";
  915. this.uiGroupBox1.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  916. this.uiGroupBox1.Size = new System.Drawing.Size(1434, 430);
  917. this.uiGroupBox1.TabIndex = 10;
  918. this.uiGroupBox1.Text = "电子处方上传记录";
  919. this.uiGroupBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  920. this.uiGroupBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  921. //
  922. // dgv_PresUploadInfo
  923. //
  924. this.dgv_PresUploadInfo.AllowUserToAddRows = false;
  925. dataGridViewCellStyle21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  926. this.dgv_PresUploadInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle21;
  927. this.dgv_PresUploadInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  928. this.dgv_PresUploadInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  929. dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  930. dataGridViewCellStyle22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  931. dataGridViewCellStyle22.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  932. dataGridViewCellStyle22.ForeColor = System.Drawing.Color.White;
  933. dataGridViewCellStyle22.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  934. dataGridViewCellStyle22.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  935. dataGridViewCellStyle22.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  936. this.dgv_PresUploadInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle22;
  937. this.dgv_PresUploadInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  938. dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  939. dataGridViewCellStyle23.BackColor = System.Drawing.Color.White;
  940. dataGridViewCellStyle23.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  941. dataGridViewCellStyle23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  942. dataGridViewCellStyle23.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  943. dataGridViewCellStyle23.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  944. dataGridViewCellStyle23.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  945. this.dgv_PresUploadInfo.DefaultCellStyle = dataGridViewCellStyle23;
  946. this.dgv_PresUploadInfo.Dock = System.Windows.Forms.DockStyle.Fill;
  947. this.dgv_PresUploadInfo.EnableHeadersVisualStyles = false;
  948. this.dgv_PresUploadInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  949. this.dgv_PresUploadInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  950. this.dgv_PresUploadInfo.Location = new System.Drawing.Point(0, 32);
  951. this.dgv_PresUploadInfo.Name = "dgv_PresUploadInfo";
  952. dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  953. dataGridViewCellStyle24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  954. dataGridViewCellStyle24.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  955. dataGridViewCellStyle24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  956. dataGridViewCellStyle24.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  957. dataGridViewCellStyle24.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  958. dataGridViewCellStyle24.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  959. this.dgv_PresUploadInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle24;
  960. dataGridViewCellStyle25.BackColor = System.Drawing.Color.White;
  961. dataGridViewCellStyle25.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  962. dataGridViewCellStyle25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  963. dataGridViewCellStyle25.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  964. dataGridViewCellStyle25.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  965. this.dgv_PresUploadInfo.RowsDefaultCellStyle = dataGridViewCellStyle25;
  966. this.dgv_PresUploadInfo.RowTemplate.Height = 23;
  967. this.dgv_PresUploadInfo.SelectedIndex = -1;
  968. this.dgv_PresUploadInfo.Size = new System.Drawing.Size(1434, 398);
  969. this.dgv_PresUploadInfo.TabIndex = 11;
  970. this.dgv_PresUploadInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  971. //
  972. // uiPanel3
  973. //
  974. this.uiPanel3.Controls.Add(this.uiLabel5);
  975. this.uiPanel3.Controls.Add(this.uiLabel6);
  976. this.uiPanel3.Controls.Add(this.dt_ET_Process);
  977. this.uiPanel3.Controls.Add(this.dt_ST_Process);
  978. this.uiPanel3.Controls.Add(this.uiTextBox1);
  979. this.uiPanel3.Controls.Add(this.btn_QueryUploadInfo);
  980. this.uiPanel3.Controls.Add(this.uiButton4);
  981. this.uiPanel3.Controls.Add(this.uiButton5);
  982. this.uiPanel3.Dock = System.Windows.Forms.DockStyle.Bottom;
  983. this.uiPanel3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  984. this.uiPanel3.Location = new System.Drawing.Point(0, 616);
  985. this.uiPanel3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  986. this.uiPanel3.MinimumSize = new System.Drawing.Size(1, 1);
  987. this.uiPanel3.Name = "uiPanel3";
  988. this.uiPanel3.Size = new System.Drawing.Size(1434, 88);
  989. this.uiPanel3.TabIndex = 8;
  990. this.uiPanel3.Text = null;
  991. this.uiPanel3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  992. this.uiPanel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  993. //
  994. // uiLabel5
  995. //
  996. this.uiLabel5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  997. this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  998. this.uiLabel5.Location = new System.Drawing.Point(494, 35);
  999. this.uiLabel5.Name = "uiLabel5";
  1000. this.uiLabel5.Size = new System.Drawing.Size(90, 23);
  1001. this.uiLabel5.TabIndex = 39;
  1002. this.uiLabel5.Text = "身份证号:";
  1003. this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1004. this.uiLabel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1005. //
  1006. // uiLabel6
  1007. //
  1008. this.uiLabel6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1009. this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1010. this.uiLabel6.Location = new System.Drawing.Point(16, 35);
  1011. this.uiLabel6.Name = "uiLabel6";
  1012. this.uiLabel6.Size = new System.Drawing.Size(90, 23);
  1013. this.uiLabel6.TabIndex = 38;
  1014. this.uiLabel6.Text = "查询时间:";
  1015. this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1016. this.uiLabel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1017. //
  1018. // dt_ET_Process
  1019. //
  1020. this.dt_ET_Process.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1021. this.dt_ET_Process.FillColor = System.Drawing.Color.White;
  1022. this.dt_ET_Process.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1023. this.dt_ET_Process.Location = new System.Drawing.Point(296, 33);
  1024. this.dt_ET_Process.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1025. this.dt_ET_Process.MaxLength = 19;
  1026. this.dt_ET_Process.MinimumSize = new System.Drawing.Size(63, 0);
  1027. this.dt_ET_Process.Name = "dt_ET_Process";
  1028. this.dt_ET_Process.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1029. this.dt_ET_Process.Size = new System.Drawing.Size(183, 29);
  1030. this.dt_ET_Process.SymbolDropDown = 61555;
  1031. this.dt_ET_Process.SymbolNormal = 61555;
  1032. this.dt_ET_Process.TabIndex = 37;
  1033. this.dt_ET_Process.Text = "2023-06-15 00:00:00";
  1034. this.dt_ET_Process.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1035. this.dt_ET_Process.Value = new System.DateTime(2023, 6, 15, 0, 0, 0, 0);
  1036. this.dt_ET_Process.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1037. //
  1038. // dt_ST_Process
  1039. //
  1040. this.dt_ST_Process.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1041. this.dt_ST_Process.FillColor = System.Drawing.Color.White;
  1042. this.dt_ST_Process.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1043. this.dt_ST_Process.Location = new System.Drawing.Point(111, 33);
  1044. this.dt_ST_Process.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1045. this.dt_ST_Process.MaxLength = 19;
  1046. this.dt_ST_Process.MinimumSize = new System.Drawing.Size(63, 0);
  1047. this.dt_ST_Process.Name = "dt_ST_Process";
  1048. this.dt_ST_Process.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1049. this.dt_ST_Process.Size = new System.Drawing.Size(183, 29);
  1050. this.dt_ST_Process.SymbolDropDown = 61555;
  1051. this.dt_ST_Process.SymbolNormal = 61555;
  1052. this.dt_ST_Process.TabIndex = 36;
  1053. this.dt_ST_Process.Text = "2023-06-14 00:00:00";
  1054. this.dt_ST_Process.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1055. this.dt_ST_Process.Value = new System.DateTime(2023, 6, 14, 0, 0, 0, 0);
  1056. this.dt_ST_Process.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1057. //
  1058. // uiTextBox1
  1059. //
  1060. this.uiTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1061. this.uiTextBox1.Cursor = System.Windows.Forms.Cursors.IBeam;
  1062. this.uiTextBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1063. this.uiTextBox1.Location = new System.Drawing.Point(586, 33);
  1064. this.uiTextBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1065. this.uiTextBox1.MinimumSize = new System.Drawing.Size(1, 16);
  1066. this.uiTextBox1.Name = "uiTextBox1";
  1067. this.uiTextBox1.ShowText = false;
  1068. this.uiTextBox1.Size = new System.Drawing.Size(183, 29);
  1069. this.uiTextBox1.TabIndex = 30;
  1070. this.uiTextBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1071. this.uiTextBox1.Watermark = "请输入身份证号";
  1072. this.uiTextBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1073. //
  1074. // btn_QueryUploadInfo
  1075. //
  1076. this.btn_QueryUploadInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1077. | System.Windows.Forms.AnchorStyles.Left)));
  1078. this.btn_QueryUploadInfo.Cursor = System.Windows.Forms.Cursors.Hand;
  1079. this.btn_QueryUploadInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1080. this.btn_QueryUploadInfo.Location = new System.Drawing.Point(792, 11);
  1081. this.btn_QueryUploadInfo.MinimumSize = new System.Drawing.Size(1, 1);
  1082. this.btn_QueryUploadInfo.Name = "btn_QueryUploadInfo";
  1083. this.btn_QueryUploadInfo.Size = new System.Drawing.Size(189, 66);
  1084. this.btn_QueryUploadInfo.TabIndex = 29;
  1085. this.btn_QueryUploadInfo.Text = "1.电子处方上传记录查询";
  1086. this.btn_QueryUploadInfo.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1087. this.btn_QueryUploadInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1088. this.btn_QueryUploadInfo.Click += new System.EventHandler(this.btn_QueryUploadInfo_Click);
  1089. //
  1090. // uiButton4
  1091. //
  1092. this.uiButton4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1093. | System.Windows.Forms.AnchorStyles.Right)));
  1094. this.uiButton4.Cursor = System.Windows.Forms.Cursors.Hand;
  1095. this.uiButton4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1096. this.uiButton4.Location = new System.Drawing.Point(1322, 11);
  1097. this.uiButton4.MinimumSize = new System.Drawing.Size(1, 1);
  1098. this.uiButton4.Name = "uiButton4";
  1099. this.uiButton4.Size = new System.Drawing.Size(106, 66);
  1100. this.uiButton4.TabIndex = 1;
  1101. this.uiButton4.Text = "退 出";
  1102. this.uiButton4.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1103. this.uiButton4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1104. this.uiButton4.Click += new System.EventHandler(this.btnClose_Click);
  1105. //
  1106. // uiButton5
  1107. //
  1108. this.uiButton5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1109. | System.Windows.Forms.AnchorStyles.Right)));
  1110. this.uiButton5.Cursor = System.Windows.Forms.Cursors.Hand;
  1111. this.uiButton5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1112. this.uiButton5.Location = new System.Drawing.Point(1094, 11);
  1113. this.uiButton5.MinimumSize = new System.Drawing.Size(1, 1);
  1114. this.uiButton5.Name = "uiButton5";
  1115. this.uiButton5.Size = new System.Drawing.Size(226, 66);
  1116. this.uiButton5.TabIndex = 0;
  1117. this.uiButton5.Text = "2.选中上传记录查询审核结果";
  1118. this.uiButton5.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1119. this.uiButton5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1120. this.uiButton5.Click += new System.EventHandler(this.uiButton5_Click);
  1121. //
  1122. // tb_PresInfo
  1123. //
  1124. this.tb_PresInfo.Controls.Add(this.uiGroupBox4);
  1125. this.tb_PresInfo.Controls.Add(this.uiGroupBox3);
  1126. this.tb_PresInfo.Controls.Add(this.uiPanel4);
  1127. this.tb_PresInfo.Location = new System.Drawing.Point(0, 40);
  1128. this.tb_PresInfo.Name = "tb_PresInfo";
  1129. this.tb_PresInfo.Size = new System.Drawing.Size(1434, 704);
  1130. this.tb_PresInfo.TabIndex = 2;
  1131. this.tb_PresInfo.Text = "电子处方信息查询";
  1132. this.tb_PresInfo.UseVisualStyleBackColor = true;
  1133. //
  1134. // uiGroupBox4
  1135. //
  1136. this.uiGroupBox4.Controls.Add(this.uiTabControl2);
  1137. this.uiGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
  1138. this.uiGroupBox4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1139. this.uiGroupBox4.Location = new System.Drawing.Point(0, 268);
  1140. this.uiGroupBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1141. this.uiGroupBox4.MinimumSize = new System.Drawing.Size(1, 1);
  1142. this.uiGroupBox4.Name = "uiGroupBox4";
  1143. this.uiGroupBox4.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1144. this.uiGroupBox4.Size = new System.Drawing.Size(1434, 348);
  1145. this.uiGroupBox4.TabIndex = 11;
  1146. this.uiGroupBox4.Text = "医保电子处方中心返回信息";
  1147. this.uiGroupBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1148. this.uiGroupBox4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1149. //
  1150. // uiTabControl2
  1151. //
  1152. this.uiTabControl2.Controls.Add(this.tp_PresMain);
  1153. this.uiTabControl2.Controls.Add(this.tp_DetlList);
  1154. this.uiTabControl2.Controls.Add(this.tp_Otpinfo);
  1155. this.uiTabControl2.Controls.Add(this.tp_DiseList);
  1156. this.uiTabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
  1157. this.uiTabControl2.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1158. this.uiTabControl2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1159. this.uiTabControl2.ItemSize = new System.Drawing.Size(150, 40);
  1160. this.uiTabControl2.Location = new System.Drawing.Point(0, 32);
  1161. this.uiTabControl2.MainPage = "";
  1162. this.uiTabControl2.Name = "uiTabControl2";
  1163. this.uiTabControl2.SelectedIndex = 0;
  1164. this.uiTabControl2.Size = new System.Drawing.Size(1434, 316);
  1165. this.uiTabControl2.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  1166. this.uiTabControl2.TabIndex = 0;
  1167. this.uiTabControl2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1168. this.uiTabControl2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1169. //
  1170. // tp_PresMain
  1171. //
  1172. this.tp_PresMain.Controls.Add(this.dgv_Main_tb);
  1173. this.tp_PresMain.Location = new System.Drawing.Point(0, 40);
  1174. this.tp_PresMain.Name = "tp_PresMain";
  1175. this.tp_PresMain.Size = new System.Drawing.Size(1434, 276);
  1176. this.tp_PresMain.TabIndex = 0;
  1177. this.tp_PresMain.Text = "处方信息";
  1178. this.tp_PresMain.UseVisualStyleBackColor = true;
  1179. //
  1180. // dgv_Main_tb
  1181. //
  1182. this.dgv_Main_tb.AllowUserToAddRows = false;
  1183. dataGridViewCellStyle26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1184. this.dgv_Main_tb.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle26;
  1185. this.dgv_Main_tb.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1186. this.dgv_Main_tb.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1187. dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1188. dataGridViewCellStyle27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1189. dataGridViewCellStyle27.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1190. dataGridViewCellStyle27.ForeColor = System.Drawing.Color.White;
  1191. dataGridViewCellStyle27.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1192. dataGridViewCellStyle27.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1193. dataGridViewCellStyle27.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1194. this.dgv_Main_tb.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle27;
  1195. this.dgv_Main_tb.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1196. dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1197. dataGridViewCellStyle28.BackColor = System.Drawing.Color.White;
  1198. dataGridViewCellStyle28.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1199. dataGridViewCellStyle28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1200. dataGridViewCellStyle28.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1201. dataGridViewCellStyle28.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1202. dataGridViewCellStyle28.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1203. this.dgv_Main_tb.DefaultCellStyle = dataGridViewCellStyle28;
  1204. this.dgv_Main_tb.Dock = System.Windows.Forms.DockStyle.Fill;
  1205. this.dgv_Main_tb.EnableHeadersVisualStyles = false;
  1206. this.dgv_Main_tb.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1207. this.dgv_Main_tb.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1208. this.dgv_Main_tb.Location = new System.Drawing.Point(0, 0);
  1209. this.dgv_Main_tb.Name = "dgv_Main_tb";
  1210. dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1211. dataGridViewCellStyle29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1212. dataGridViewCellStyle29.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1213. dataGridViewCellStyle29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1214. dataGridViewCellStyle29.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1215. dataGridViewCellStyle29.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1216. dataGridViewCellStyle29.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1217. this.dgv_Main_tb.RowHeadersDefaultCellStyle = dataGridViewCellStyle29;
  1218. dataGridViewCellStyle30.BackColor = System.Drawing.Color.White;
  1219. dataGridViewCellStyle30.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1220. dataGridViewCellStyle30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1221. dataGridViewCellStyle30.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1222. dataGridViewCellStyle30.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1223. this.dgv_Main_tb.RowsDefaultCellStyle = dataGridViewCellStyle30;
  1224. this.dgv_Main_tb.RowTemplate.Height = 23;
  1225. this.dgv_Main_tb.SelectedIndex = -1;
  1226. this.dgv_Main_tb.Size = new System.Drawing.Size(1434, 276);
  1227. this.dgv_Main_tb.TabIndex = 1;
  1228. this.dgv_Main_tb.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1229. //
  1230. // tp_DetlList
  1231. //
  1232. this.tp_DetlList.Controls.Add(this.dgv_DetlList_tb);
  1233. this.tp_DetlList.Location = new System.Drawing.Point(0, 40);
  1234. this.tp_DetlList.Name = "tp_DetlList";
  1235. this.tp_DetlList.Size = new System.Drawing.Size(200, 0);
  1236. this.tp_DetlList.TabIndex = 1;
  1237. this.tp_DetlList.Text = "处方明细信息";
  1238. this.tp_DetlList.UseVisualStyleBackColor = true;
  1239. //
  1240. // dgv_DetlList_tb
  1241. //
  1242. this.dgv_DetlList_tb.AllowUserToAddRows = false;
  1243. dataGridViewCellStyle31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1244. this.dgv_DetlList_tb.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle31;
  1245. this.dgv_DetlList_tb.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1246. this.dgv_DetlList_tb.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1247. dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1248. dataGridViewCellStyle32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1249. dataGridViewCellStyle32.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1250. dataGridViewCellStyle32.ForeColor = System.Drawing.Color.White;
  1251. dataGridViewCellStyle32.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1252. dataGridViewCellStyle32.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1253. dataGridViewCellStyle32.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1254. this.dgv_DetlList_tb.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle32;
  1255. this.dgv_DetlList_tb.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1256. dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1257. dataGridViewCellStyle33.BackColor = System.Drawing.Color.White;
  1258. dataGridViewCellStyle33.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1259. dataGridViewCellStyle33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1260. dataGridViewCellStyle33.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1261. dataGridViewCellStyle33.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1262. dataGridViewCellStyle33.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1263. this.dgv_DetlList_tb.DefaultCellStyle = dataGridViewCellStyle33;
  1264. this.dgv_DetlList_tb.Dock = System.Windows.Forms.DockStyle.Fill;
  1265. this.dgv_DetlList_tb.EnableHeadersVisualStyles = false;
  1266. this.dgv_DetlList_tb.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1267. this.dgv_DetlList_tb.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1268. this.dgv_DetlList_tb.Location = new System.Drawing.Point(0, 0);
  1269. this.dgv_DetlList_tb.Name = "dgv_DetlList_tb";
  1270. dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1271. dataGridViewCellStyle34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1272. dataGridViewCellStyle34.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1273. dataGridViewCellStyle34.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1274. dataGridViewCellStyle34.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1275. dataGridViewCellStyle34.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1276. dataGridViewCellStyle34.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1277. this.dgv_DetlList_tb.RowHeadersDefaultCellStyle = dataGridViewCellStyle34;
  1278. dataGridViewCellStyle35.BackColor = System.Drawing.Color.White;
  1279. dataGridViewCellStyle35.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1280. dataGridViewCellStyle35.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1281. dataGridViewCellStyle35.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1282. dataGridViewCellStyle35.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1283. this.dgv_DetlList_tb.RowsDefaultCellStyle = dataGridViewCellStyle35;
  1284. this.dgv_DetlList_tb.RowTemplate.Height = 23;
  1285. this.dgv_DetlList_tb.SelectedIndex = -1;
  1286. this.dgv_DetlList_tb.Size = new System.Drawing.Size(200, 0);
  1287. this.dgv_DetlList_tb.TabIndex = 1;
  1288. this.dgv_DetlList_tb.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1289. //
  1290. // tp_Otpinfo
  1291. //
  1292. this.tp_Otpinfo.Controls.Add(this.dgv_Otpinfo_tb);
  1293. this.tp_Otpinfo.Location = new System.Drawing.Point(0, 40);
  1294. this.tp_Otpinfo.Name = "tp_Otpinfo";
  1295. this.tp_Otpinfo.Size = new System.Drawing.Size(200, 0);
  1296. this.tp_Otpinfo.TabIndex = 2;
  1297. this.tp_Otpinfo.Text = "就诊信息";
  1298. this.tp_Otpinfo.UseVisualStyleBackColor = true;
  1299. //
  1300. // dgv_Otpinfo_tb
  1301. //
  1302. this.dgv_Otpinfo_tb.AllowUserToAddRows = false;
  1303. dataGridViewCellStyle36.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1304. this.dgv_Otpinfo_tb.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle36;
  1305. this.dgv_Otpinfo_tb.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1306. this.dgv_Otpinfo_tb.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1307. dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1308. dataGridViewCellStyle37.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1309. dataGridViewCellStyle37.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1310. dataGridViewCellStyle37.ForeColor = System.Drawing.Color.White;
  1311. dataGridViewCellStyle37.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1312. dataGridViewCellStyle37.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1313. dataGridViewCellStyle37.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1314. this.dgv_Otpinfo_tb.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle37;
  1315. this.dgv_Otpinfo_tb.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1316. dataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1317. dataGridViewCellStyle38.BackColor = System.Drawing.Color.White;
  1318. dataGridViewCellStyle38.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1319. dataGridViewCellStyle38.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1320. dataGridViewCellStyle38.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1321. dataGridViewCellStyle38.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1322. dataGridViewCellStyle38.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1323. this.dgv_Otpinfo_tb.DefaultCellStyle = dataGridViewCellStyle38;
  1324. this.dgv_Otpinfo_tb.Dock = System.Windows.Forms.DockStyle.Fill;
  1325. this.dgv_Otpinfo_tb.EnableHeadersVisualStyles = false;
  1326. this.dgv_Otpinfo_tb.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1327. this.dgv_Otpinfo_tb.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1328. this.dgv_Otpinfo_tb.Location = new System.Drawing.Point(0, 0);
  1329. this.dgv_Otpinfo_tb.Name = "dgv_Otpinfo_tb";
  1330. dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1331. dataGridViewCellStyle39.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1332. dataGridViewCellStyle39.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1333. dataGridViewCellStyle39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1334. dataGridViewCellStyle39.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1335. dataGridViewCellStyle39.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1336. dataGridViewCellStyle39.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1337. this.dgv_Otpinfo_tb.RowHeadersDefaultCellStyle = dataGridViewCellStyle39;
  1338. dataGridViewCellStyle40.BackColor = System.Drawing.Color.White;
  1339. dataGridViewCellStyle40.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1340. dataGridViewCellStyle40.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1341. dataGridViewCellStyle40.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1342. dataGridViewCellStyle40.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1343. this.dgv_Otpinfo_tb.RowsDefaultCellStyle = dataGridViewCellStyle40;
  1344. this.dgv_Otpinfo_tb.RowTemplate.Height = 23;
  1345. this.dgv_Otpinfo_tb.SelectedIndex = -1;
  1346. this.dgv_Otpinfo_tb.Size = new System.Drawing.Size(200, 0);
  1347. this.dgv_Otpinfo_tb.TabIndex = 1;
  1348. this.dgv_Otpinfo_tb.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1349. //
  1350. // tp_DiseList
  1351. //
  1352. this.tp_DiseList.Controls.Add(this.dgv_DiseList_tb);
  1353. this.tp_DiseList.Location = new System.Drawing.Point(0, 40);
  1354. this.tp_DiseList.Name = "tp_DiseList";
  1355. this.tp_DiseList.Size = new System.Drawing.Size(200, 0);
  1356. this.tp_DiseList.TabIndex = 3;
  1357. this.tp_DiseList.Text = "诊断信息";
  1358. this.tp_DiseList.UseVisualStyleBackColor = true;
  1359. //
  1360. // dgv_DiseList_tb
  1361. //
  1362. this.dgv_DiseList_tb.AllowUserToAddRows = false;
  1363. dataGridViewCellStyle41.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1364. this.dgv_DiseList_tb.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle41;
  1365. this.dgv_DiseList_tb.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1366. this.dgv_DiseList_tb.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1367. dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1368. dataGridViewCellStyle42.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1369. dataGridViewCellStyle42.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1370. dataGridViewCellStyle42.ForeColor = System.Drawing.Color.White;
  1371. dataGridViewCellStyle42.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1372. dataGridViewCellStyle42.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1373. dataGridViewCellStyle42.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1374. this.dgv_DiseList_tb.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle42;
  1375. this.dgv_DiseList_tb.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1376. dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1377. dataGridViewCellStyle43.BackColor = System.Drawing.Color.White;
  1378. dataGridViewCellStyle43.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1379. dataGridViewCellStyle43.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1380. dataGridViewCellStyle43.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1381. dataGridViewCellStyle43.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1382. dataGridViewCellStyle43.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1383. this.dgv_DiseList_tb.DefaultCellStyle = dataGridViewCellStyle43;
  1384. this.dgv_DiseList_tb.Dock = System.Windows.Forms.DockStyle.Fill;
  1385. this.dgv_DiseList_tb.EnableHeadersVisualStyles = false;
  1386. this.dgv_DiseList_tb.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1387. this.dgv_DiseList_tb.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1388. this.dgv_DiseList_tb.Location = new System.Drawing.Point(0, 0);
  1389. this.dgv_DiseList_tb.Name = "dgv_DiseList_tb";
  1390. dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1391. dataGridViewCellStyle44.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1392. dataGridViewCellStyle44.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1393. dataGridViewCellStyle44.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1394. dataGridViewCellStyle44.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1395. dataGridViewCellStyle44.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1396. dataGridViewCellStyle44.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1397. this.dgv_DiseList_tb.RowHeadersDefaultCellStyle = dataGridViewCellStyle44;
  1398. dataGridViewCellStyle45.BackColor = System.Drawing.Color.White;
  1399. dataGridViewCellStyle45.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1400. dataGridViewCellStyle45.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1401. dataGridViewCellStyle45.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1402. dataGridViewCellStyle45.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1403. this.dgv_DiseList_tb.RowsDefaultCellStyle = dataGridViewCellStyle45;
  1404. this.dgv_DiseList_tb.RowTemplate.Height = 23;
  1405. this.dgv_DiseList_tb.SelectedIndex = -1;
  1406. this.dgv_DiseList_tb.Size = new System.Drawing.Size(200, 0);
  1407. this.dgv_DiseList_tb.TabIndex = 1;
  1408. this.dgv_DiseList_tb.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1409. //
  1410. // uiGroupBox3
  1411. //
  1412. this.uiGroupBox3.Controls.Add(this.dgv_PresPreChekInfo);
  1413. this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Top;
  1414. this.uiGroupBox3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1415. this.uiGroupBox3.Location = new System.Drawing.Point(0, 0);
  1416. this.uiGroupBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1417. this.uiGroupBox3.MinimumSize = new System.Drawing.Size(1, 1);
  1418. this.uiGroupBox3.Name = "uiGroupBox3";
  1419. this.uiGroupBox3.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1420. this.uiGroupBox3.Size = new System.Drawing.Size(1434, 268);
  1421. this.uiGroupBox3.TabIndex = 10;
  1422. this.uiGroupBox3.Text = "电子处方预核验信息(包含未上传和已上传电子处方)";
  1423. this.uiGroupBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1424. this.uiGroupBox3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1425. //
  1426. // dgv_PresPreChekInfo
  1427. //
  1428. this.dgv_PresPreChekInfo.AllowUserToAddRows = false;
  1429. dataGridViewCellStyle46.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1430. this.dgv_PresPreChekInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle46;
  1431. this.dgv_PresPreChekInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1432. this.dgv_PresPreChekInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1433. dataGridViewCellStyle47.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1434. dataGridViewCellStyle47.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1435. dataGridViewCellStyle47.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1436. dataGridViewCellStyle47.ForeColor = System.Drawing.Color.White;
  1437. dataGridViewCellStyle47.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1438. dataGridViewCellStyle47.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1439. dataGridViewCellStyle47.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1440. this.dgv_PresPreChekInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle47;
  1441. this.dgv_PresPreChekInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1442. dataGridViewCellStyle48.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1443. dataGridViewCellStyle48.BackColor = System.Drawing.Color.White;
  1444. dataGridViewCellStyle48.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1445. dataGridViewCellStyle48.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1446. dataGridViewCellStyle48.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1447. dataGridViewCellStyle48.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1448. dataGridViewCellStyle48.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1449. this.dgv_PresPreChekInfo.DefaultCellStyle = dataGridViewCellStyle48;
  1450. this.dgv_PresPreChekInfo.Dock = System.Windows.Forms.DockStyle.Fill;
  1451. this.dgv_PresPreChekInfo.EnableHeadersVisualStyles = false;
  1452. this.dgv_PresPreChekInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1453. this.dgv_PresPreChekInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1454. this.dgv_PresPreChekInfo.Location = new System.Drawing.Point(0, 32);
  1455. this.dgv_PresPreChekInfo.Name = "dgv_PresPreChekInfo";
  1456. dataGridViewCellStyle49.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1457. dataGridViewCellStyle49.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1458. dataGridViewCellStyle49.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1459. dataGridViewCellStyle49.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1460. dataGridViewCellStyle49.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1461. dataGridViewCellStyle49.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1462. dataGridViewCellStyle49.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1463. this.dgv_PresPreChekInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle49;
  1464. dataGridViewCellStyle50.BackColor = System.Drawing.Color.White;
  1465. dataGridViewCellStyle50.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1466. dataGridViewCellStyle50.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1467. dataGridViewCellStyle50.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1468. dataGridViewCellStyle50.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1469. this.dgv_PresPreChekInfo.RowsDefaultCellStyle = dataGridViewCellStyle50;
  1470. this.dgv_PresPreChekInfo.RowTemplate.Height = 23;
  1471. this.dgv_PresPreChekInfo.SelectedIndex = -1;
  1472. this.dgv_PresPreChekInfo.Size = new System.Drawing.Size(1434, 236);
  1473. this.dgv_PresPreChekInfo.TabIndex = 0;
  1474. this.dgv_PresPreChekInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1475. //
  1476. // uiPanel4
  1477. //
  1478. this.uiPanel4.Controls.Add(this.uiLabel7);
  1479. this.uiPanel4.Controls.Add(this.uiLabel8);
  1480. this.uiPanel4.Controls.Add(this.dt_ET_PPC);
  1481. this.uiPanel4.Controls.Add(this.dt_ST_PPC);
  1482. this.uiPanel4.Controls.Add(this.tb_PresCertNo);
  1483. this.uiPanel4.Controls.Add(this.tb_QueryPresPreCheck);
  1484. this.uiPanel4.Controls.Add(this.uiButton6);
  1485. this.uiPanel4.Controls.Add(this.btn_InsuQuery);
  1486. this.uiPanel4.Dock = System.Windows.Forms.DockStyle.Bottom;
  1487. this.uiPanel4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1488. this.uiPanel4.Location = new System.Drawing.Point(0, 616);
  1489. this.uiPanel4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1490. this.uiPanel4.MinimumSize = new System.Drawing.Size(1, 1);
  1491. this.uiPanel4.Name = "uiPanel4";
  1492. this.uiPanel4.Size = new System.Drawing.Size(1434, 88);
  1493. this.uiPanel4.TabIndex = 9;
  1494. this.uiPanel4.Text = null;
  1495. this.uiPanel4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1496. this.uiPanel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1497. //
  1498. // uiLabel7
  1499. //
  1500. this.uiLabel7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1501. this.uiLabel7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1502. this.uiLabel7.Location = new System.Drawing.Point(308, 11);
  1503. this.uiLabel7.Name = "uiLabel7";
  1504. this.uiLabel7.Size = new System.Drawing.Size(90, 23);
  1505. this.uiLabel7.TabIndex = 39;
  1506. this.uiLabel7.Text = "身份证号:";
  1507. this.uiLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1508. this.uiLabel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1509. //
  1510. // uiLabel8
  1511. //
  1512. this.uiLabel8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1513. this.uiLabel8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1514. this.uiLabel8.Location = new System.Drawing.Point(14, 11);
  1515. this.uiLabel8.Name = "uiLabel8";
  1516. this.uiLabel8.Size = new System.Drawing.Size(90, 23);
  1517. this.uiLabel8.TabIndex = 38;
  1518. this.uiLabel8.Text = "查询时间:";
  1519. this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1520. this.uiLabel8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1521. //
  1522. // dt_ET_PPC
  1523. //
  1524. this.dt_ET_PPC.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1525. this.dt_ET_PPC.FillColor = System.Drawing.Color.White;
  1526. this.dt_ET_PPC.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1527. this.dt_ET_PPC.Location = new System.Drawing.Point(109, 50);
  1528. this.dt_ET_PPC.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1529. this.dt_ET_PPC.MaxLength = 19;
  1530. this.dt_ET_PPC.MinimumSize = new System.Drawing.Size(63, 0);
  1531. this.dt_ET_PPC.Name = "dt_ET_PPC";
  1532. this.dt_ET_PPC.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1533. this.dt_ET_PPC.Size = new System.Drawing.Size(183, 29);
  1534. this.dt_ET_PPC.SymbolDropDown = 61555;
  1535. this.dt_ET_PPC.SymbolNormal = 61555;
  1536. this.dt_ET_PPC.TabIndex = 37;
  1537. this.dt_ET_PPC.Text = "2023-06-15 00:00:00";
  1538. this.dt_ET_PPC.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1539. this.dt_ET_PPC.Value = new System.DateTime(2023, 6, 15, 0, 0, 0, 0);
  1540. this.dt_ET_PPC.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1541. //
  1542. // dt_ST_PPC
  1543. //
  1544. this.dt_ST_PPC.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1545. this.dt_ST_PPC.FillColor = System.Drawing.Color.White;
  1546. this.dt_ST_PPC.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1547. this.dt_ST_PPC.Location = new System.Drawing.Point(109, 11);
  1548. this.dt_ST_PPC.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1549. this.dt_ST_PPC.MaxLength = 19;
  1550. this.dt_ST_PPC.MinimumSize = new System.Drawing.Size(63, 0);
  1551. this.dt_ST_PPC.Name = "dt_ST_PPC";
  1552. this.dt_ST_PPC.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1553. this.dt_ST_PPC.Size = new System.Drawing.Size(183, 29);
  1554. this.dt_ST_PPC.SymbolDropDown = 61555;
  1555. this.dt_ST_PPC.SymbolNormal = 61555;
  1556. this.dt_ST_PPC.TabIndex = 36;
  1557. this.dt_ST_PPC.Text = "2023-06-14 00:00:00";
  1558. this.dt_ST_PPC.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1559. this.dt_ST_PPC.Value = new System.DateTime(2023, 6, 14, 0, 0, 0, 0);
  1560. this.dt_ST_PPC.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1561. //
  1562. // tb_PresCertNo
  1563. //
  1564. this.tb_PresCertNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1565. this.tb_PresCertNo.Cursor = System.Windows.Forms.Cursors.IBeam;
  1566. this.tb_PresCertNo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1567. this.tb_PresCertNo.Location = new System.Drawing.Point(307, 50);
  1568. this.tb_PresCertNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1569. this.tb_PresCertNo.MinimumSize = new System.Drawing.Size(1, 16);
  1570. this.tb_PresCertNo.Name = "tb_PresCertNo";
  1571. this.tb_PresCertNo.ShowText = false;
  1572. this.tb_PresCertNo.Size = new System.Drawing.Size(183, 29);
  1573. this.tb_PresCertNo.TabIndex = 30;
  1574. this.tb_PresCertNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1575. this.tb_PresCertNo.Watermark = "请输入身份证号";
  1576. this.tb_PresCertNo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1577. //
  1578. // tb_QueryPresPreCheck
  1579. //
  1580. this.tb_QueryPresPreCheck.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1581. | System.Windows.Forms.AnchorStyles.Left)));
  1582. this.tb_QueryPresPreCheck.Cursor = System.Windows.Forms.Cursors.Hand;
  1583. this.tb_QueryPresPreCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1584. this.tb_QueryPresPreCheck.Location = new System.Drawing.Point(505, 13);
  1585. this.tb_QueryPresPreCheck.MinimumSize = new System.Drawing.Size(1, 1);
  1586. this.tb_QueryPresPreCheck.Name = "tb_QueryPresPreCheck";
  1587. this.tb_QueryPresPreCheck.Size = new System.Drawing.Size(144, 66);
  1588. this.tb_QueryPresPreCheck.TabIndex = 29;
  1589. this.tb_QueryPresPreCheck.Text = "1.预核验记录查询";
  1590. this.tb_QueryPresPreCheck.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1591. this.tb_QueryPresPreCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1592. this.tb_QueryPresPreCheck.Click += new System.EventHandler(this.tb_QueryPresPreCheck_Click);
  1593. //
  1594. // uiButton6
  1595. //
  1596. this.uiButton6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1597. | System.Windows.Forms.AnchorStyles.Right)));
  1598. this.uiButton6.Cursor = System.Windows.Forms.Cursors.Hand;
  1599. this.uiButton6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1600. this.uiButton6.Location = new System.Drawing.Point(1322, 11);
  1601. this.uiButton6.MinimumSize = new System.Drawing.Size(1, 1);
  1602. this.uiButton6.Name = "uiButton6";
  1603. this.uiButton6.Size = new System.Drawing.Size(106, 66);
  1604. this.uiButton6.TabIndex = 1;
  1605. this.uiButton6.Text = "退 出";
  1606. this.uiButton6.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1607. this.uiButton6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1608. this.uiButton6.Click += new System.EventHandler(this.btnClose_Click);
  1609. //
  1610. // btn_InsuQuery
  1611. //
  1612. this.btn_InsuQuery.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1613. | System.Windows.Forms.AnchorStyles.Right)));
  1614. this.btn_InsuQuery.Cursor = System.Windows.Forms.Cursors.Hand;
  1615. this.btn_InsuQuery.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1616. this.btn_InsuQuery.Location = new System.Drawing.Point(1038, 11);
  1617. this.btn_InsuQuery.MinimumSize = new System.Drawing.Size(1, 1);
  1618. this.btn_InsuQuery.Name = "btn_InsuQuery";
  1619. this.btn_InsuQuery.Size = new System.Drawing.Size(281, 66);
  1620. this.btn_InsuQuery.TabIndex = 0;
  1621. this.btn_InsuQuery.Text = "2.选中预核验信息查电子处方详细信息";
  1622. this.btn_InsuQuery.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1623. this.btn_InsuQuery.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1624. this.btn_InsuQuery.Click += new System.EventHandler(this.btn_InsuQuery_Click);
  1625. //
  1626. // tab_InsuDrugList
  1627. //
  1628. this.tab_InsuDrugList.Controls.Add(this.uiGroupBox5);
  1629. this.tab_InsuDrugList.Controls.Add(this.uiPanel5);
  1630. this.tab_InsuDrugList.Location = new System.Drawing.Point(0, 40);
  1631. this.tab_InsuDrugList.Name = "tab_InsuDrugList";
  1632. this.tab_InsuDrugList.Size = new System.Drawing.Size(1434, 704);
  1633. this.tab_InsuDrugList.TabIndex = 4;
  1634. this.tab_InsuDrugList.Text = "电子处方药品目录查询";
  1635. this.tab_InsuDrugList.UseVisualStyleBackColor = true;
  1636. //
  1637. // uiGroupBox5
  1638. //
  1639. this.uiGroupBox5.Controls.Add(this.dgv_InsuDrugList);
  1640. this.uiGroupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
  1641. this.uiGroupBox5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1642. this.uiGroupBox5.Location = new System.Drawing.Point(0, 0);
  1643. this.uiGroupBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1644. this.uiGroupBox5.MinimumSize = new System.Drawing.Size(1, 1);
  1645. this.uiGroupBox5.Name = "uiGroupBox5";
  1646. this.uiGroupBox5.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1647. this.uiGroupBox5.Size = new System.Drawing.Size(1434, 621);
  1648. this.uiGroupBox5.TabIndex = 11;
  1649. this.uiGroupBox5.Text = "电子处方药品目录";
  1650. this.uiGroupBox5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1651. this.uiGroupBox5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1652. //
  1653. // dgv_InsuDrugList
  1654. //
  1655. this.dgv_InsuDrugList.AllowUserToAddRows = false;
  1656. dataGridViewCellStyle51.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1657. this.dgv_InsuDrugList.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle51;
  1658. this.dgv_InsuDrugList.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1659. this.dgv_InsuDrugList.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1660. dataGridViewCellStyle52.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1661. dataGridViewCellStyle52.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1662. dataGridViewCellStyle52.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1663. dataGridViewCellStyle52.ForeColor = System.Drawing.Color.White;
  1664. dataGridViewCellStyle52.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1665. dataGridViewCellStyle52.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1666. dataGridViewCellStyle52.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1667. this.dgv_InsuDrugList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle52;
  1668. this.dgv_InsuDrugList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1669. dataGridViewCellStyle53.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1670. dataGridViewCellStyle53.BackColor = System.Drawing.Color.White;
  1671. dataGridViewCellStyle53.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1672. dataGridViewCellStyle53.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1673. dataGridViewCellStyle53.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1674. dataGridViewCellStyle53.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1675. dataGridViewCellStyle53.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1676. this.dgv_InsuDrugList.DefaultCellStyle = dataGridViewCellStyle53;
  1677. this.dgv_InsuDrugList.Dock = System.Windows.Forms.DockStyle.Fill;
  1678. this.dgv_InsuDrugList.EnableHeadersVisualStyles = false;
  1679. this.dgv_InsuDrugList.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1680. this.dgv_InsuDrugList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1681. this.dgv_InsuDrugList.Location = new System.Drawing.Point(0, 32);
  1682. this.dgv_InsuDrugList.Name = "dgv_InsuDrugList";
  1683. dataGridViewCellStyle54.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1684. dataGridViewCellStyle54.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1685. dataGridViewCellStyle54.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1686. dataGridViewCellStyle54.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1687. dataGridViewCellStyle54.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1688. dataGridViewCellStyle54.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1689. dataGridViewCellStyle54.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1690. this.dgv_InsuDrugList.RowHeadersDefaultCellStyle = dataGridViewCellStyle54;
  1691. dataGridViewCellStyle55.BackColor = System.Drawing.Color.White;
  1692. dataGridViewCellStyle55.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1693. dataGridViewCellStyle55.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1694. dataGridViewCellStyle55.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1695. dataGridViewCellStyle55.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1696. this.dgv_InsuDrugList.RowsDefaultCellStyle = dataGridViewCellStyle55;
  1697. this.dgv_InsuDrugList.RowTemplate.Height = 23;
  1698. this.dgv_InsuDrugList.SelectedIndex = -1;
  1699. this.dgv_InsuDrugList.Size = new System.Drawing.Size(1434, 589);
  1700. this.dgv_InsuDrugList.TabIndex = 12;
  1701. this.dgv_InsuDrugList.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1702. //
  1703. // uiPanel5
  1704. //
  1705. this.uiPanel5.Controls.Add(this.uiLabel11);
  1706. this.uiPanel5.Controls.Add(this.edt_InsuCode);
  1707. this.uiPanel5.Controls.Add(this.uiLabel10);
  1708. this.uiPanel5.Controls.Add(this.edt_PageSize);
  1709. this.uiPanel5.Controls.Add(this.uiLabel9);
  1710. this.uiPanel5.Controls.Add(this.edt_PageNum);
  1711. this.uiPanel5.Controls.Add(this.uiButton8);
  1712. this.uiPanel5.Controls.Add(this.btn_InsuDrugList);
  1713. this.uiPanel5.Dock = System.Windows.Forms.DockStyle.Bottom;
  1714. this.uiPanel5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1715. this.uiPanel5.Location = new System.Drawing.Point(0, 621);
  1716. this.uiPanel5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1717. this.uiPanel5.MinimumSize = new System.Drawing.Size(1, 1);
  1718. this.uiPanel5.Name = "uiPanel5";
  1719. this.uiPanel5.Size = new System.Drawing.Size(1434, 83);
  1720. this.uiPanel5.TabIndex = 1;
  1721. this.uiPanel5.Text = null;
  1722. this.uiPanel5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1723. this.uiPanel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1724. //
  1725. // uiLabel10
  1726. //
  1727. this.uiLabel10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1728. this.uiLabel10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1729. this.uiLabel10.Location = new System.Drawing.Point(228, 31);
  1730. this.uiLabel10.Name = "uiLabel10";
  1731. this.uiLabel10.Size = new System.Drawing.Size(90, 23);
  1732. this.uiLabel10.TabIndex = 42;
  1733. this.uiLabel10.Text = "分页大小:";
  1734. this.uiLabel10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1735. this.uiLabel10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1736. //
  1737. // edt_PageSize
  1738. //
  1739. this.edt_PageSize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1740. this.edt_PageSize.Cursor = System.Windows.Forms.Cursors.IBeam;
  1741. this.edt_PageSize.DoubleValue = 20D;
  1742. this.edt_PageSize.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1743. this.edt_PageSize.IntValue = 20;
  1744. this.edt_PageSize.Location = new System.Drawing.Point(321, 29);
  1745. this.edt_PageSize.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1746. this.edt_PageSize.MinimumSize = new System.Drawing.Size(1, 16);
  1747. this.edt_PageSize.Name = "edt_PageSize";
  1748. this.edt_PageSize.ShowText = false;
  1749. this.edt_PageSize.Size = new System.Drawing.Size(111, 29);
  1750. this.edt_PageSize.TabIndex = 41;
  1751. this.edt_PageSize.Text = "20";
  1752. this.edt_PageSize.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1753. this.edt_PageSize.Watermark = "";
  1754. this.edt_PageSize.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1755. //
  1756. // uiLabel9
  1757. //
  1758. this.uiLabel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1759. this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1760. this.uiLabel9.Location = new System.Drawing.Point(11, 31);
  1761. this.uiLabel9.Name = "uiLabel9";
  1762. this.uiLabel9.Size = new System.Drawing.Size(90, 23);
  1763. this.uiLabel9.TabIndex = 39;
  1764. this.uiLabel9.Text = "分页码值:";
  1765. this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1766. this.uiLabel9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1767. //
  1768. // edt_PageNum
  1769. //
  1770. this.edt_PageNum.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1771. this.edt_PageNum.Cursor = System.Windows.Forms.Cursors.IBeam;
  1772. this.edt_PageNum.DoubleValue = 1D;
  1773. this.edt_PageNum.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1774. this.edt_PageNum.IntValue = 1;
  1775. this.edt_PageNum.Location = new System.Drawing.Point(105, 29);
  1776. this.edt_PageNum.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1777. this.edt_PageNum.MinimumSize = new System.Drawing.Size(1, 16);
  1778. this.edt_PageNum.Name = "edt_PageNum";
  1779. this.edt_PageNum.ShowText = false;
  1780. this.edt_PageNum.Size = new System.Drawing.Size(111, 29);
  1781. this.edt_PageNum.TabIndex = 30;
  1782. this.edt_PageNum.Text = "1";
  1783. this.edt_PageNum.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1784. this.edt_PageNum.Watermark = "";
  1785. this.edt_PageNum.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1786. //
  1787. // uiButton8
  1788. //
  1789. this.uiButton8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  1790. this.uiButton8.Cursor = System.Windows.Forms.Cursors.Hand;
  1791. this.uiButton8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1792. this.uiButton8.Location = new System.Drawing.Point(1321, 11);
  1793. this.uiButton8.MinimumSize = new System.Drawing.Size(1, 1);
  1794. this.uiButton8.Name = "uiButton8";
  1795. this.uiButton8.Size = new System.Drawing.Size(107, 62);
  1796. this.uiButton8.TabIndex = 1;
  1797. this.uiButton8.Text = "退 出";
  1798. this.uiButton8.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1799. this.uiButton8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1800. this.uiButton8.Click += new System.EventHandler(this.btnClose_Click);
  1801. //
  1802. // btn_InsuDrugList
  1803. //
  1804. this.btn_InsuDrugList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  1805. this.btn_InsuDrugList.Cursor = System.Windows.Forms.Cursors.Hand;
  1806. this.btn_InsuDrugList.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1807. this.btn_InsuDrugList.Location = new System.Drawing.Point(1211, 11);
  1808. this.btn_InsuDrugList.MinimumSize = new System.Drawing.Size(1, 1);
  1809. this.btn_InsuDrugList.Name = "btn_InsuDrugList";
  1810. this.btn_InsuDrugList.Size = new System.Drawing.Size(107, 62);
  1811. this.btn_InsuDrugList.TabIndex = 0;
  1812. this.btn_InsuDrugList.Text = "查 询";
  1813. this.btn_InsuDrugList.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1814. this.btn_InsuDrugList.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1815. this.btn_InsuDrugList.Click += new System.EventHandler(this.btn_InsuDrugList_Click);
  1816. //
  1817. // uiLabel11
  1818. //
  1819. this.uiLabel11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1820. this.uiLabel11.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1821. this.uiLabel11.Location = new System.Drawing.Point(450, 31);
  1822. this.uiLabel11.Name = "uiLabel11";
  1823. this.uiLabel11.Size = new System.Drawing.Size(123, 23);
  1824. this.uiLabel11.TabIndex = 44;
  1825. this.uiLabel11.Text = "医保目录编码:";
  1826. this.uiLabel11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1827. this.uiLabel11.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1828. //
  1829. // edt_InsuCode
  1830. //
  1831. this.edt_InsuCode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1832. this.edt_InsuCode.Cursor = System.Windows.Forms.Cursors.IBeam;
  1833. this.edt_InsuCode.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1834. this.edt_InsuCode.Location = new System.Drawing.Point(577, 29);
  1835. this.edt_InsuCode.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1836. this.edt_InsuCode.MinimumSize = new System.Drawing.Size(1, 16);
  1837. this.edt_InsuCode.Name = "edt_InsuCode";
  1838. this.edt_InsuCode.ShowText = false;
  1839. this.edt_InsuCode.Size = new System.Drawing.Size(229, 29);
  1840. this.edt_InsuCode.TabIndex = 43;
  1841. this.edt_InsuCode.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1842. this.edt_InsuCode.Watermark = "";
  1843. this.edt_InsuCode.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1844. //
  1845. // PrescriptionCirculation
  1846. //
  1847. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1848. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1849. this.ClientSize = new System.Drawing.Size(1434, 744);
  1850. this.Controls.Add(this.tc_Main);
  1851. this.Name = "PrescriptionCirculation";
  1852. this.Text = "医保处方流转";
  1853. this.Load += new System.EventHandler(this.PrescriptionCirculation_Load);
  1854. this.Shown += new System.EventHandler(this.PrescriptionCirculation_Shown);
  1855. this.tc_Main.ResumeLayout(false);
  1856. this.tb_PresUpload.ResumeLayout(false);
  1857. this.gb_HISInsuReg.ResumeLayout(false);
  1858. ((System.ComponentModel.ISupportInitialize)(this.dgv_HISRegInfo)).EndInit();
  1859. this.gb_Prescription.ResumeLayout(false);
  1860. ((System.ComponentModel.ISupportInitialize)(this.dgv_PrescriptionInfo)).EndInit();
  1861. this.uiPanel1.ResumeLayout(false);
  1862. this.tb_CancelPres.ResumeLayout(false);
  1863. this.uiPanel2.ResumeLayout(false);
  1864. this.uiPanel2.PerformLayout();
  1865. ((System.ComponentModel.ISupportInitialize)(this.dgv_Master)).EndInit();
  1866. this.tb_PresToExaInfo.ResumeLayout(false);
  1867. this.uiGroupBox2.ResumeLayout(false);
  1868. ((System.ComponentModel.ISupportInitialize)(this.dgv_PresAuditResults)).EndInit();
  1869. this.uiGroupBox1.ResumeLayout(false);
  1870. ((System.ComponentModel.ISupportInitialize)(this.dgv_PresUploadInfo)).EndInit();
  1871. this.uiPanel3.ResumeLayout(false);
  1872. this.tb_PresInfo.ResumeLayout(false);
  1873. this.uiGroupBox4.ResumeLayout(false);
  1874. this.uiTabControl2.ResumeLayout(false);
  1875. this.tp_PresMain.ResumeLayout(false);
  1876. ((System.ComponentModel.ISupportInitialize)(this.dgv_Main_tb)).EndInit();
  1877. this.tp_DetlList.ResumeLayout(false);
  1878. ((System.ComponentModel.ISupportInitialize)(this.dgv_DetlList_tb)).EndInit();
  1879. this.tp_Otpinfo.ResumeLayout(false);
  1880. ((System.ComponentModel.ISupportInitialize)(this.dgv_Otpinfo_tb)).EndInit();
  1881. this.tp_DiseList.ResumeLayout(false);
  1882. ((System.ComponentModel.ISupportInitialize)(this.dgv_DiseList_tb)).EndInit();
  1883. this.uiGroupBox3.ResumeLayout(false);
  1884. ((System.ComponentModel.ISupportInitialize)(this.dgv_PresPreChekInfo)).EndInit();
  1885. this.uiPanel4.ResumeLayout(false);
  1886. this.tab_InsuDrugList.ResumeLayout(false);
  1887. this.uiGroupBox5.ResumeLayout(false);
  1888. ((System.ComponentModel.ISupportInitialize)(this.dgv_InsuDrugList)).EndInit();
  1889. this.uiPanel5.ResumeLayout(false);
  1890. this.ResumeLayout(false);
  1891. }
  1892. #endregion
  1893. private Sunny.UI.UITabControl tc_Main;
  1894. private System.Windows.Forms.TabPage tb_PresUpload;
  1895. private Sunny.UI.UIPanel uiPanel1;
  1896. private Sunny.UI.UIButton btnClose;
  1897. private Sunny.UI.UIButton btnPresUpload;
  1898. private System.Windows.Forms.TabPage tb_CancelPres;
  1899. private System.Windows.Forms.TabPage tb_PresInfo;
  1900. private System.Windows.Forms.TabPage tb_PresToExaInfo;
  1901. private Sunny.UI.UIButton btnUpload_Pre;
  1902. private Sunny.UI.UIButton btnGetInfo;
  1903. private Sunny.UI.UIGroupBox gb_Prescription;
  1904. private Sunny.UI.UITextBox tb_CertNo;
  1905. private Sunny.UI.UILabel uiLabel2;
  1906. private Sunny.UI.UILabel uiLabel1;
  1907. private Sunny.UI.UIDatetimePicker dtED;
  1908. private Sunny.UI.UIDatetimePicker dtST;
  1909. private Sunny.UI.UIDataGridView dgv_PrescriptionInfo;
  1910. private Sunny.UI.UIGroupBox gb_HISInsuReg;
  1911. private Sunny.UI.UIDataGridView dgv_HISRegInfo;
  1912. private Sunny.UI.UIPanel uiPanel2;
  1913. private Sunny.UI.UILabel uiLabel3;
  1914. private Sunny.UI.UILabel uiLabel4;
  1915. private Sunny.UI.UIDatetimePicker dt_Et;
  1916. private Sunny.UI.UIDatetimePicker dt_St;
  1917. private Sunny.UI.UITextBox tb_CertnoQuery;
  1918. private Sunny.UI.UIButton btnQuery;
  1919. private Sunny.UI.UIButton uiButton3;
  1920. private Sunny.UI.UIButton btnCancel;
  1921. private Sunny.UI.UIDataGridView dgv_Master;
  1922. private Sunny.UI.UIButton btnElcSign;
  1923. private Sunny.UI.UIRadioButtonGroup rg_type;
  1924. private Sunny.UI.UIRichTextBox rtb_CancelReason;
  1925. public PTControl.DBLookupCombox cbx_DocInfo;
  1926. private System.Windows.Forms.Label label4;
  1927. private Sunny.UI.UIPanel uiPanel3;
  1928. private Sunny.UI.UILabel uiLabel5;
  1929. private Sunny.UI.UILabel uiLabel6;
  1930. private Sunny.UI.UIDatetimePicker dt_ET_Process;
  1931. private Sunny.UI.UIDatetimePicker dt_ST_Process;
  1932. private Sunny.UI.UITextBox uiTextBox1;
  1933. private Sunny.UI.UIButton btn_QueryUploadInfo;
  1934. private Sunny.UI.UIButton uiButton4;
  1935. private Sunny.UI.UIButton uiButton5;
  1936. private Sunny.UI.UIGroupBox uiGroupBox2;
  1937. private Sunny.UI.UIDataGridView dgv_PresAuditResults;
  1938. private Sunny.UI.UIGroupBox uiGroupBox1;
  1939. private Sunny.UI.UIDataGridView dgv_PresUploadInfo;
  1940. private Sunny.UI.UIGroupBox uiGroupBox4;
  1941. private Sunny.UI.UITabControl uiTabControl2;
  1942. private System.Windows.Forms.TabPage tp_PresMain;
  1943. private Sunny.UI.UIDataGridView dgv_Main_tb;
  1944. private System.Windows.Forms.TabPage tp_DetlList;
  1945. private Sunny.UI.UIDataGridView dgv_DetlList_tb;
  1946. private System.Windows.Forms.TabPage tp_Otpinfo;
  1947. private Sunny.UI.UIDataGridView dgv_Otpinfo_tb;
  1948. private System.Windows.Forms.TabPage tp_DiseList;
  1949. private Sunny.UI.UIDataGridView dgv_DiseList_tb;
  1950. private Sunny.UI.UIGroupBox uiGroupBox3;
  1951. private Sunny.UI.UIDataGridView dgv_PresPreChekInfo;
  1952. private Sunny.UI.UIPanel uiPanel4;
  1953. private Sunny.UI.UILabel uiLabel7;
  1954. private Sunny.UI.UILabel uiLabel8;
  1955. private Sunny.UI.UIDatetimePicker dt_ET_PPC;
  1956. private Sunny.UI.UIDatetimePicker dt_ST_PPC;
  1957. private Sunny.UI.UITextBox tb_PresCertNo;
  1958. private Sunny.UI.UIButton tb_QueryPresPreCheck;
  1959. private Sunny.UI.UIButton uiButton6;
  1960. private Sunny.UI.UIButton btn_InsuQuery;
  1961. private System.Windows.Forms.TabPage tab_InsuDrugList;
  1962. private Sunny.UI.UIGroupBox uiGroupBox5;
  1963. private Sunny.UI.UIDataGridView dgv_InsuDrugList;
  1964. private Sunny.UI.UIPanel uiPanel5;
  1965. private Sunny.UI.UILabel uiLabel10;
  1966. private Sunny.UI.UITextBox edt_PageSize;
  1967. private Sunny.UI.UILabel uiLabel9;
  1968. private Sunny.UI.UITextBox edt_PageNum;
  1969. private Sunny.UI.UIButton uiButton8;
  1970. private Sunny.UI.UIButton btn_InsuDrugList;
  1971. private Sunny.UI.UILabel uiLabel11;
  1972. private Sunny.UI.UITextBox edt_InsuCode;
  1973. }
  1974. }