PrescriptionCirculation.designer.cs 155 KB

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