SettlementForm.designer.cs 84 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349
  1. /******************************************************************************
  2. * 文件名称: InvokeHelper.cs
  3. * 文件说明: 调用助手,调用方法的封装
  4. * 当前版本: V1.0
  5. * 创建日期: 2022-04-12
  6. *
  7. * 2020-04-12: 增加 businessDLLInvoke 方法
  8. * 2020-04-12: 增加 writeLog 方法
  9. * 2020-04-14: 增加 businessDLLInvoke(重载) 方法
  10. * 2020-04-14: 增加 irisServiceInvoke 方法
  11. ******************************************************************************/
  12. namespace PTMedicalInsurance.Forms
  13. {
  14. partial class SettlementForm
  15. {
  16. /// <summary>
  17. /// Required designer variable.
  18. /// </summary>
  19. private System.ComponentModel.IContainer components = null;
  20. /// <summary>
  21. /// Clean up any resources being used.
  22. /// </summary>
  23. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  24. protected override void Dispose(bool disposing)
  25. {
  26. if (disposing && (components != null))
  27. {
  28. components.Dispose();
  29. }
  30. base.Dispose(disposing);
  31. }
  32. #region Windows Form Designer generated code
  33. /// <summary>
  34. /// Required method for Designer support - do not modify
  35. /// the contents of this method with the code editor.
  36. /// </summary>
  37. private void InitializeComponent()
  38. {
  39. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  40. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  41. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  42. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  43. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  44. this.pnlBottom = new Sunny.UI.UIPanel();
  45. this.uiButton2 = new Sunny.UI.UIButton();
  46. this.uiButton1 = new Sunny.UI.UIButton();
  47. this.pnlClient = new Sunny.UI.UIPanel();
  48. this.gbSetlinfo = new Sunny.UI.UIGroupBox();
  49. this.pnlPayInfo = new Sunny.UI.UIPanel();
  50. this.tbAccountMutualAidAmount = new Sunny.UI.UITextBox();
  51. this.uiLabel22 = new Sunny.UI.UILabel();
  52. this.tbBalc = new Sunny.UI.UITextBox();
  53. this.tbHospitalPartAmount = new Sunny.UI.UITextBox();
  54. this.uiLabel23 = new Sunny.UI.UILabel();
  55. this.uiLabel24 = new Sunny.UI.UILabel();
  56. this.tbPsnCashPay = new Sunny.UI.UITextBox();
  57. this.uiLabel13 = new Sunny.UI.UILabel();
  58. this.tbPsnAccountPaySummat = new Sunny.UI.UITextBox();
  59. this.tbPsnSummat = new Sunny.UI.UITextBox();
  60. this.uiLabel14 = new Sunny.UI.UILabel();
  61. this.uiLabel15 = new Sunny.UI.UILabel();
  62. this.tbFundPaySummat = new Sunny.UI.UITextBox();
  63. this.uiLabel16 = new Sunny.UI.UILabel();
  64. this.tbOtherPay = new Sunny.UI.UITextBox();
  65. this.tbAssian = new Sunny.UI.UITextBox();
  66. this.uiLabel17 = new Sunny.UI.UILabel();
  67. this.uiLabel18 = new Sunny.UI.UILabel();
  68. this.tbWorkerLargeMedical = new Sunny.UI.UITextBox();
  69. this.uiLabel7 = new Sunny.UI.UILabel();
  70. this.tbHifmi_pay = new Sunny.UI.UITextBox();
  71. this.tbHifes_pay = new Sunny.UI.UITextBox();
  72. this.uiLabel8 = new Sunny.UI.UILabel();
  73. this.uiLabel9 = new Sunny.UI.UILabel();
  74. this.tbCvlserv_pay = new Sunny.UI.UITextBox();
  75. this.uiLabel10 = new Sunny.UI.UILabel();
  76. this.tbInsuFundPayRito = new Sunny.UI.UITextBox();
  77. this.tbInsuFundPay = new Sunny.UI.UITextBox();
  78. this.uiLabel11 = new Sunny.UI.UILabel();
  79. this.uiLabel12 = new Sunny.UI.UILabel();
  80. this.tbActualPayDeduLine = new Sunny.UI.UITextBox();
  81. this.uiLabel4 = new Sunny.UI.UILabel();
  82. this.tbInScopyAmount = new Sunny.UI.UITextBox();
  83. this.tbPreSelfPay = new Sunny.UI.UITextBox();
  84. this.uiLabel5 = new Sunny.UI.UILabel();
  85. this.uiLabel6 = new Sunny.UI.UILabel();
  86. this.tbOverLimitOwnPay = new Sunny.UI.UITextBox();
  87. this.uiLabel3 = new Sunny.UI.UILabel();
  88. this.tbFullOwnPay = new Sunny.UI.UITextBox();
  89. this.tbSumamt = new Sunny.UI.UITextBox();
  90. this.uiLabel2 = new Sunny.UI.UILabel();
  91. this.uiLabel1 = new Sunny.UI.UILabel();
  92. this.pnlSetlBaseInfo = new Sunny.UI.UIPanel();
  93. this.tbClearingType = new Sunny.UI.UITextBox();
  94. this.tbClearingWay = new Sunny.UI.UITextBox();
  95. this.uiLabel29 = new Sunny.UI.UILabel();
  96. this.uiLabel19 = new Sunny.UI.UILabel();
  97. this.tbPersonType = new Sunny.UI.UITextBox();
  98. this.tbInsuType = new Sunny.UI.UITextBox();
  99. this.uiLabel27 = new Sunny.UI.UILabel();
  100. this.uiLabel28 = new Sunny.UI.UILabel();
  101. this.tbPsnCertNO = new Sunny.UI.UITextBox();
  102. this.tbPsnCertType = new Sunny.UI.UITextBox();
  103. this.uiLabel25 = new Sunny.UI.UILabel();
  104. this.uiLabel26 = new Sunny.UI.UILabel();
  105. this.tbMedType = new Sunny.UI.UITextBox();
  106. this.tbAdmCertType = new Sunny.UI.UITextBox();
  107. this.uiLabel20 = new Sunny.UI.UILabel();
  108. this.uiLabel21 = new Sunny.UI.UILabel();
  109. this.uiLabel30 = new Sunny.UI.UILabel();
  110. this.gbSetldetail = new Sunny.UI.UIGroupBox();
  111. this.dgvSetlDetail = new Sunny.UI.UIDataGridView();
  112. this.tbMedInsWalletPay = new Sunny.UI.UITextBox();
  113. this.uiLabel34 = new Sunny.UI.UILabel();
  114. this.tbMedInsWalletBalance = new Sunny.UI.UITextBox();
  115. this.uiLabel35 = new Sunny.UI.UILabel();
  116. this.tbHifdmPay = new Sunny.UI.UITextBox();
  117. this.uiLabel33 = new Sunny.UI.UILabel();
  118. this.tbCommercialReimamt = new Sunny.UI.UITextBox();
  119. this.uiLabel32 = new Sunny.UI.UILabel();
  120. this.tbCommercialRenflag = new Sunny.UI.UITextBox();
  121. this.uiLabel31 = new Sunny.UI.UILabel();
  122. this.pnlBottom.SuspendLayout();
  123. this.pnlClient.SuspendLayout();
  124. this.gbSetlinfo.SuspendLayout();
  125. this.pnlPayInfo.SuspendLayout();
  126. this.pnlSetlBaseInfo.SuspendLayout();
  127. this.gbSetldetail.SuspendLayout();
  128. ((System.ComponentModel.ISupportInitialize)(this.dgvSetlDetail)).BeginInit();
  129. this.SuspendLayout();
  130. //
  131. // pnlBottom
  132. //
  133. this.pnlBottom.Controls.Add(this.uiButton2);
  134. this.pnlBottom.Controls.Add(this.uiButton1);
  135. this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
  136. this.pnlBottom.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  137. this.pnlBottom.Location = new System.Drawing.Point(0, 570);
  138. this.pnlBottom.Margin = new System.Windows.Forms.Padding(6, 8, 6, 8);
  139. this.pnlBottom.MinimumSize = new System.Drawing.Size(2, 2);
  140. this.pnlBottom.Name = "pnlBottom";
  141. this.pnlBottom.Size = new System.Drawing.Size(1077, 98);
  142. this.pnlBottom.TabIndex = 0;
  143. this.pnlBottom.Text = null;
  144. this.pnlBottom.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  145. this.pnlBottom.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  146. //
  147. // uiButton2
  148. //
  149. this.uiButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  150. this.uiButton2.Cursor = System.Windows.Forms.Cursors.Hand;
  151. this.uiButton2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  152. this.uiButton2.Location = new System.Drawing.Point(380, 16);
  153. this.uiButton2.MinimumSize = new System.Drawing.Size(1, 1);
  154. this.uiButton2.Name = "uiButton2";
  155. this.uiButton2.Size = new System.Drawing.Size(100, 38);
  156. this.uiButton2.TabIndex = 1;
  157. this.uiButton2.Text = "放弃";
  158. this.uiButton2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  159. this.uiButton2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  160. this.uiButton2.Click += new System.EventHandler(this.uiButton2_Click);
  161. //
  162. // uiButton1
  163. //
  164. this.uiButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  165. this.uiButton1.Cursor = System.Windows.Forms.Cursors.Hand;
  166. this.uiButton1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  167. this.uiButton1.Location = new System.Drawing.Point(566, 16);
  168. this.uiButton1.MinimumSize = new System.Drawing.Size(1, 1);
  169. this.uiButton1.Name = "uiButton1";
  170. this.uiButton1.Size = new System.Drawing.Size(100, 38);
  171. this.uiButton1.TabIndex = 0;
  172. this.uiButton1.Text = "结算";
  173. this.uiButton1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  174. this.uiButton1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  175. this.uiButton1.Click += new System.EventHandler(this.uiButton1_Click);
  176. //
  177. // pnlClient
  178. //
  179. this.pnlClient.Controls.Add(this.gbSetlinfo);
  180. this.pnlClient.Controls.Add(this.gbSetldetail);
  181. this.pnlClient.Dock = System.Windows.Forms.DockStyle.Fill;
  182. this.pnlClient.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  183. this.pnlClient.Location = new System.Drawing.Point(0, 0);
  184. this.pnlClient.Margin = new System.Windows.Forms.Padding(6, 8, 6, 8);
  185. this.pnlClient.MinimumSize = new System.Drawing.Size(2, 2);
  186. this.pnlClient.Name = "pnlClient";
  187. this.pnlClient.Size = new System.Drawing.Size(1077, 570);
  188. this.pnlClient.TabIndex = 1;
  189. this.pnlClient.Text = null;
  190. this.pnlClient.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  191. this.pnlClient.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  192. //
  193. // gbSetlinfo
  194. //
  195. this.gbSetlinfo.Controls.Add(this.pnlPayInfo);
  196. this.gbSetlinfo.Controls.Add(this.pnlSetlBaseInfo);
  197. this.gbSetlinfo.Controls.Add(this.uiLabel30);
  198. this.gbSetlinfo.Dock = System.Windows.Forms.DockStyle.Fill;
  199. this.gbSetlinfo.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  200. this.gbSetlinfo.Location = new System.Drawing.Point(0, 0);
  201. this.gbSetlinfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  202. this.gbSetlinfo.MinimumSize = new System.Drawing.Size(1, 1);
  203. this.gbSetlinfo.Name = "gbSetlinfo";
  204. this.gbSetlinfo.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  205. this.gbSetlinfo.Size = new System.Drawing.Size(1077, 418);
  206. this.gbSetlinfo.TabIndex = 2;
  207. this.gbSetlinfo.Text = "结算信息";
  208. this.gbSetlinfo.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  209. this.gbSetlinfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  210. //
  211. // pnlPayInfo
  212. //
  213. this.pnlPayInfo.Controls.Add(this.tbMedInsWalletPay);
  214. this.pnlPayInfo.Controls.Add(this.uiLabel34);
  215. this.pnlPayInfo.Controls.Add(this.tbMedInsWalletBalance);
  216. this.pnlPayInfo.Controls.Add(this.uiLabel35);
  217. this.pnlPayInfo.Controls.Add(this.tbHifdmPay);
  218. this.pnlPayInfo.Controls.Add(this.uiLabel33);
  219. this.pnlPayInfo.Controls.Add(this.tbCommercialReimamt);
  220. this.pnlPayInfo.Controls.Add(this.uiLabel32);
  221. this.pnlPayInfo.Controls.Add(this.tbCommercialRenflag);
  222. this.pnlPayInfo.Controls.Add(this.uiLabel31);
  223. this.pnlPayInfo.Controls.Add(this.tbAccountMutualAidAmount);
  224. this.pnlPayInfo.Controls.Add(this.uiLabel22);
  225. this.pnlPayInfo.Controls.Add(this.tbBalc);
  226. this.pnlPayInfo.Controls.Add(this.tbHospitalPartAmount);
  227. this.pnlPayInfo.Controls.Add(this.uiLabel23);
  228. this.pnlPayInfo.Controls.Add(this.uiLabel24);
  229. this.pnlPayInfo.Controls.Add(this.tbPsnCashPay);
  230. this.pnlPayInfo.Controls.Add(this.uiLabel13);
  231. this.pnlPayInfo.Controls.Add(this.tbPsnAccountPaySummat);
  232. this.pnlPayInfo.Controls.Add(this.tbPsnSummat);
  233. this.pnlPayInfo.Controls.Add(this.uiLabel14);
  234. this.pnlPayInfo.Controls.Add(this.uiLabel15);
  235. this.pnlPayInfo.Controls.Add(this.tbFundPaySummat);
  236. this.pnlPayInfo.Controls.Add(this.uiLabel16);
  237. this.pnlPayInfo.Controls.Add(this.tbOtherPay);
  238. this.pnlPayInfo.Controls.Add(this.tbAssian);
  239. this.pnlPayInfo.Controls.Add(this.uiLabel17);
  240. this.pnlPayInfo.Controls.Add(this.uiLabel18);
  241. this.pnlPayInfo.Controls.Add(this.tbWorkerLargeMedical);
  242. this.pnlPayInfo.Controls.Add(this.uiLabel7);
  243. this.pnlPayInfo.Controls.Add(this.tbHifmi_pay);
  244. this.pnlPayInfo.Controls.Add(this.tbHifes_pay);
  245. this.pnlPayInfo.Controls.Add(this.uiLabel8);
  246. this.pnlPayInfo.Controls.Add(this.uiLabel9);
  247. this.pnlPayInfo.Controls.Add(this.tbCvlserv_pay);
  248. this.pnlPayInfo.Controls.Add(this.uiLabel10);
  249. this.pnlPayInfo.Controls.Add(this.tbInsuFundPayRito);
  250. this.pnlPayInfo.Controls.Add(this.tbInsuFundPay);
  251. this.pnlPayInfo.Controls.Add(this.uiLabel11);
  252. this.pnlPayInfo.Controls.Add(this.uiLabel12);
  253. this.pnlPayInfo.Controls.Add(this.tbActualPayDeduLine);
  254. this.pnlPayInfo.Controls.Add(this.uiLabel4);
  255. this.pnlPayInfo.Controls.Add(this.tbInScopyAmount);
  256. this.pnlPayInfo.Controls.Add(this.tbPreSelfPay);
  257. this.pnlPayInfo.Controls.Add(this.uiLabel5);
  258. this.pnlPayInfo.Controls.Add(this.uiLabel6);
  259. this.pnlPayInfo.Controls.Add(this.tbOverLimitOwnPay);
  260. this.pnlPayInfo.Controls.Add(this.uiLabel3);
  261. this.pnlPayInfo.Controls.Add(this.tbFullOwnPay);
  262. this.pnlPayInfo.Controls.Add(this.tbSumamt);
  263. this.pnlPayInfo.Controls.Add(this.uiLabel2);
  264. this.pnlPayInfo.Controls.Add(this.uiLabel1);
  265. this.pnlPayInfo.Dock = System.Windows.Forms.DockStyle.Fill;
  266. this.pnlPayInfo.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  267. this.pnlPayInfo.Location = new System.Drawing.Point(0, 121);
  268. this.pnlPayInfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  269. this.pnlPayInfo.MinimumSize = new System.Drawing.Size(1, 1);
  270. this.pnlPayInfo.Name = "pnlPayInfo";
  271. this.pnlPayInfo.Size = new System.Drawing.Size(1077, 297);
  272. this.pnlPayInfo.TabIndex = 1;
  273. this.pnlPayInfo.Text = null;
  274. this.pnlPayInfo.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  275. this.pnlPayInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  276. this.pnlPayInfo.Click += new System.EventHandler(this.pnlPayInfo_Click);
  277. //
  278. // tbAccountMutualAidAmount
  279. //
  280. this.tbAccountMutualAidAmount.Cursor = System.Windows.Forms.Cursors.IBeam;
  281. this.tbAccountMutualAidAmount.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  282. this.tbAccountMutualAidAmount.Location = new System.Drawing.Point(877, 105);
  283. this.tbAccountMutualAidAmount.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  284. this.tbAccountMutualAidAmount.MinimumSize = new System.Drawing.Size(1, 16);
  285. this.tbAccountMutualAidAmount.Name = "tbAccountMutualAidAmount";
  286. this.tbAccountMutualAidAmount.ShowText = false;
  287. this.tbAccountMutualAidAmount.Size = new System.Drawing.Size(100, 27);
  288. this.tbAccountMutualAidAmount.TabIndex = 41;
  289. this.tbAccountMutualAidAmount.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  290. this.tbAccountMutualAidAmount.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  291. //
  292. // uiLabel22
  293. //
  294. this.uiLabel22.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  295. this.uiLabel22.Location = new System.Drawing.Point(730, 107);
  296. this.uiLabel22.Name = "uiLabel22";
  297. this.uiLabel22.Size = new System.Drawing.Size(112, 23);
  298. this.uiLabel22.TabIndex = 40;
  299. this.uiLabel22.Text = "个人账户共济";
  300. this.uiLabel22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  301. this.uiLabel22.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  302. //
  303. // tbBalc
  304. //
  305. this.tbBalc.Cursor = System.Windows.Forms.Cursors.IBeam;
  306. this.tbBalc.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  307. this.tbBalc.Location = new System.Drawing.Point(877, 62);
  308. this.tbBalc.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  309. this.tbBalc.MinimumSize = new System.Drawing.Size(1, 16);
  310. this.tbBalc.Name = "tbBalc";
  311. this.tbBalc.ShowText = false;
  312. this.tbBalc.Size = new System.Drawing.Size(100, 27);
  313. this.tbBalc.TabIndex = 39;
  314. this.tbBalc.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  315. this.tbBalc.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  316. //
  317. // tbHospitalPartAmount
  318. //
  319. this.tbHospitalPartAmount.Cursor = System.Windows.Forms.Cursors.IBeam;
  320. this.tbHospitalPartAmount.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  321. this.tbHospitalPartAmount.Location = new System.Drawing.Point(877, 19);
  322. this.tbHospitalPartAmount.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  323. this.tbHospitalPartAmount.MinimumSize = new System.Drawing.Size(1, 16);
  324. this.tbHospitalPartAmount.Name = "tbHospitalPartAmount";
  325. this.tbHospitalPartAmount.ShowText = false;
  326. this.tbHospitalPartAmount.Size = new System.Drawing.Size(100, 27);
  327. this.tbHospitalPartAmount.TabIndex = 38;
  328. this.tbHospitalPartAmount.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  329. this.tbHospitalPartAmount.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  330. //
  331. // uiLabel23
  332. //
  333. this.uiLabel23.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  334. this.uiLabel23.Location = new System.Drawing.Point(730, 65);
  335. this.uiLabel23.Name = "uiLabel23";
  336. this.uiLabel23.Size = new System.Drawing.Size(112, 23);
  337. this.uiLabel23.TabIndex = 37;
  338. this.uiLabel23.Text = "医保账户余额";
  339. this.uiLabel23.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  340. this.uiLabel23.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  341. //
  342. // uiLabel24
  343. //
  344. this.uiLabel24.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  345. this.uiLabel24.Location = new System.Drawing.Point(730, 23);
  346. this.uiLabel24.Name = "uiLabel24";
  347. this.uiLabel24.Size = new System.Drawing.Size(112, 23);
  348. this.uiLabel24.TabIndex = 36;
  349. this.uiLabel24.Text = "医院负担金额";
  350. this.uiLabel24.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  351. this.uiLabel24.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  352. //
  353. // tbPsnCashPay
  354. //
  355. this.tbPsnCashPay.Cursor = System.Windows.Forms.Cursors.IBeam;
  356. this.tbPsnCashPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  357. this.tbPsnCashPay.Location = new System.Drawing.Point(609, 185);
  358. this.tbPsnCashPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  359. this.tbPsnCashPay.MinimumSize = new System.Drawing.Size(1, 16);
  360. this.tbPsnCashPay.Name = "tbPsnCashPay";
  361. this.tbPsnCashPay.ShowText = false;
  362. this.tbPsnCashPay.Size = new System.Drawing.Size(100, 29);
  363. this.tbPsnCashPay.TabIndex = 35;
  364. this.tbPsnCashPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  365. this.tbPsnCashPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  366. //
  367. // uiLabel13
  368. //
  369. this.uiLabel13.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  370. this.uiLabel13.Location = new System.Drawing.Point(502, 181);
  371. this.uiLabel13.Name = "uiLabel13";
  372. this.uiLabel13.Size = new System.Drawing.Size(100, 23);
  373. this.uiLabel13.TabIndex = 34;
  374. this.uiLabel13.Text = "个人现金支付";
  375. this.uiLabel13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  376. this.uiLabel13.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  377. //
  378. // tbPsnAccountPaySummat
  379. //
  380. this.tbPsnAccountPaySummat.Cursor = System.Windows.Forms.Cursors.IBeam;
  381. this.tbPsnAccountPaySummat.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  382. this.tbPsnAccountPaySummat.Location = new System.Drawing.Point(609, 144);
  383. this.tbPsnAccountPaySummat.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  384. this.tbPsnAccountPaySummat.MinimumSize = new System.Drawing.Size(1, 16);
  385. this.tbPsnAccountPaySummat.Name = "tbPsnAccountPaySummat";
  386. this.tbPsnAccountPaySummat.ShowText = false;
  387. this.tbPsnAccountPaySummat.Size = new System.Drawing.Size(100, 29);
  388. this.tbPsnAccountPaySummat.TabIndex = 33;
  389. this.tbPsnAccountPaySummat.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  390. this.tbPsnAccountPaySummat.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  391. //
  392. // tbPsnSummat
  393. //
  394. this.tbPsnSummat.Cursor = System.Windows.Forms.Cursors.IBeam;
  395. this.tbPsnSummat.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  396. this.tbPsnSummat.Location = new System.Drawing.Point(609, 103);
  397. this.tbPsnSummat.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  398. this.tbPsnSummat.MinimumSize = new System.Drawing.Size(1, 16);
  399. this.tbPsnSummat.Name = "tbPsnSummat";
  400. this.tbPsnSummat.ShowText = false;
  401. this.tbPsnSummat.Size = new System.Drawing.Size(100, 29);
  402. this.tbPsnSummat.TabIndex = 32;
  403. this.tbPsnSummat.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  404. this.tbPsnSummat.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  405. //
  406. // uiLabel14
  407. //
  408. this.uiLabel14.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  409. this.uiLabel14.Location = new System.Drawing.Point(502, 142);
  410. this.uiLabel14.Name = "uiLabel14";
  411. this.uiLabel14.Size = new System.Drawing.Size(100, 23);
  412. this.uiLabel14.TabIndex = 31;
  413. this.uiLabel14.Text = "个人账户支付";
  414. this.uiLabel14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  415. this.uiLabel14.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  416. //
  417. // uiLabel15
  418. //
  419. this.uiLabel15.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  420. this.uiLabel15.Location = new System.Drawing.Point(502, 103);
  421. this.uiLabel15.Name = "uiLabel15";
  422. this.uiLabel15.Size = new System.Drawing.Size(100, 23);
  423. this.uiLabel15.TabIndex = 30;
  424. this.uiLabel15.Text = "个人负担总金额";
  425. this.uiLabel15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  426. this.uiLabel15.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  427. //
  428. // tbFundPaySummat
  429. //
  430. this.tbFundPaySummat.Cursor = System.Windows.Forms.Cursors.IBeam;
  431. this.tbFundPaySummat.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  432. this.tbFundPaySummat.Location = new System.Drawing.Point(609, 62);
  433. this.tbFundPaySummat.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  434. this.tbFundPaySummat.MinimumSize = new System.Drawing.Size(1, 16);
  435. this.tbFundPaySummat.Name = "tbFundPaySummat";
  436. this.tbFundPaySummat.ShowText = false;
  437. this.tbFundPaySummat.Size = new System.Drawing.Size(100, 29);
  438. this.tbFundPaySummat.TabIndex = 29;
  439. this.tbFundPaySummat.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  440. this.tbFundPaySummat.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  441. //
  442. // uiLabel16
  443. //
  444. this.uiLabel16.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  445. this.uiLabel16.Location = new System.Drawing.Point(502, 64);
  446. this.uiLabel16.Name = "uiLabel16";
  447. this.uiLabel16.Size = new System.Drawing.Size(100, 23);
  448. this.uiLabel16.TabIndex = 28;
  449. this.uiLabel16.Text = "基金支付总额";
  450. this.uiLabel16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  451. this.uiLabel16.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  452. //
  453. // tbOtherPay
  454. //
  455. this.tbOtherPay.Cursor = System.Windows.Forms.Cursors.IBeam;
  456. this.tbOtherPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  457. this.tbOtherPay.Location = new System.Drawing.Point(128, 183);
  458. this.tbOtherPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  459. this.tbOtherPay.MinimumSize = new System.Drawing.Size(1, 16);
  460. this.tbOtherPay.Name = "tbOtherPay";
  461. this.tbOtherPay.ShowText = false;
  462. this.tbOtherPay.Size = new System.Drawing.Size(100, 29);
  463. this.tbOtherPay.TabIndex = 27;
  464. this.tbOtherPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  465. this.tbOtherPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  466. //
  467. // tbAssian
  468. //
  469. this.tbAssian.Cursor = System.Windows.Forms.Cursors.IBeam;
  470. this.tbAssian.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  471. this.tbAssian.Location = new System.Drawing.Point(609, 19);
  472. this.tbAssian.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  473. this.tbAssian.MinimumSize = new System.Drawing.Size(1, 16);
  474. this.tbAssian.Name = "tbAssian";
  475. this.tbAssian.ShowText = false;
  476. this.tbAssian.Size = new System.Drawing.Size(100, 29);
  477. this.tbAssian.TabIndex = 26;
  478. this.tbAssian.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  479. this.tbAssian.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  480. //
  481. // uiLabel17
  482. //
  483. this.uiLabel17.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  484. this.uiLabel17.Location = new System.Drawing.Point(21, 187);
  485. this.uiLabel17.Name = "uiLabel17";
  486. this.uiLabel17.Size = new System.Drawing.Size(100, 23);
  487. this.uiLabel17.TabIndex = 25;
  488. this.uiLabel17.Text = "其他支出";
  489. this.uiLabel17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  490. this.uiLabel17.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  491. //
  492. // uiLabel18
  493. //
  494. this.uiLabel18.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  495. this.uiLabel18.Location = new System.Drawing.Point(502, 25);
  496. this.uiLabel18.Name = "uiLabel18";
  497. this.uiLabel18.Size = new System.Drawing.Size(100, 23);
  498. this.uiLabel18.TabIndex = 24;
  499. this.uiLabel18.Text = "医疗救助";
  500. this.uiLabel18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  501. this.uiLabel18.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  502. //
  503. // tbWorkerLargeMedical
  504. //
  505. this.tbWorkerLargeMedical.Cursor = System.Windows.Forms.Cursors.IBeam;
  506. this.tbWorkerLargeMedical.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  507. this.tbWorkerLargeMedical.Location = new System.Drawing.Point(361, 185);
  508. this.tbWorkerLargeMedical.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  509. this.tbWorkerLargeMedical.MinimumSize = new System.Drawing.Size(1, 16);
  510. this.tbWorkerLargeMedical.Name = "tbWorkerLargeMedical";
  511. this.tbWorkerLargeMedical.ShowText = false;
  512. this.tbWorkerLargeMedical.Size = new System.Drawing.Size(100, 29);
  513. this.tbWorkerLargeMedical.TabIndex = 23;
  514. this.tbWorkerLargeMedical.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  515. this.tbWorkerLargeMedical.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  516. //
  517. // uiLabel7
  518. //
  519. this.uiLabel7.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  520. this.uiLabel7.Location = new System.Drawing.Point(253, 181);
  521. this.uiLabel7.Name = "uiLabel7";
  522. this.uiLabel7.Size = new System.Drawing.Size(100, 23);
  523. this.uiLabel7.TabIndex = 22;
  524. this.uiLabel7.Text = "职工大额医疗";
  525. this.uiLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  526. this.uiLabel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  527. //
  528. // tbHifmi_pay
  529. //
  530. this.tbHifmi_pay.Cursor = System.Windows.Forms.Cursors.IBeam;
  531. this.tbHifmi_pay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  532. this.tbHifmi_pay.Location = new System.Drawing.Point(361, 144);
  533. this.tbHifmi_pay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  534. this.tbHifmi_pay.MinimumSize = new System.Drawing.Size(1, 16);
  535. this.tbHifmi_pay.Name = "tbHifmi_pay";
  536. this.tbHifmi_pay.ShowText = false;
  537. this.tbHifmi_pay.Size = new System.Drawing.Size(100, 29);
  538. this.tbHifmi_pay.TabIndex = 21;
  539. this.tbHifmi_pay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  540. this.tbHifmi_pay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  541. //
  542. // tbHifes_pay
  543. //
  544. this.tbHifes_pay.Cursor = System.Windows.Forms.Cursors.IBeam;
  545. this.tbHifes_pay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  546. this.tbHifes_pay.Location = new System.Drawing.Point(361, 103);
  547. this.tbHifes_pay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  548. this.tbHifes_pay.MinimumSize = new System.Drawing.Size(1, 16);
  549. this.tbHifes_pay.Name = "tbHifes_pay";
  550. this.tbHifes_pay.ShowText = false;
  551. this.tbHifes_pay.Size = new System.Drawing.Size(100, 29);
  552. this.tbHifes_pay.TabIndex = 20;
  553. this.tbHifes_pay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  554. this.tbHifes_pay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  555. //
  556. // uiLabel8
  557. //
  558. this.uiLabel8.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  559. this.uiLabel8.Location = new System.Drawing.Point(253, 142);
  560. this.uiLabel8.Name = "uiLabel8";
  561. this.uiLabel8.Size = new System.Drawing.Size(100, 23);
  562. this.uiLabel8.TabIndex = 19;
  563. this.uiLabel8.Text = "居民大病保险";
  564. this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  565. this.uiLabel8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  566. //
  567. // uiLabel9
  568. //
  569. this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  570. this.uiLabel9.Location = new System.Drawing.Point(253, 103);
  571. this.uiLabel9.Name = "uiLabel9";
  572. this.uiLabel9.Size = new System.Drawing.Size(100, 23);
  573. this.uiLabel9.TabIndex = 18;
  574. this.uiLabel9.Text = "企业补充医疗";
  575. this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  576. this.uiLabel9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  577. //
  578. // tbCvlserv_pay
  579. //
  580. this.tbCvlserv_pay.Cursor = System.Windows.Forms.Cursors.IBeam;
  581. this.tbCvlserv_pay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  582. this.tbCvlserv_pay.Location = new System.Drawing.Point(361, 62);
  583. this.tbCvlserv_pay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  584. this.tbCvlserv_pay.MinimumSize = new System.Drawing.Size(1, 16);
  585. this.tbCvlserv_pay.Name = "tbCvlserv_pay";
  586. this.tbCvlserv_pay.ShowText = false;
  587. this.tbCvlserv_pay.Size = new System.Drawing.Size(100, 29);
  588. this.tbCvlserv_pay.TabIndex = 17;
  589. this.tbCvlserv_pay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  590. this.tbCvlserv_pay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  591. //
  592. // uiLabel10
  593. //
  594. this.uiLabel10.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  595. this.uiLabel10.Location = new System.Drawing.Point(253, 64);
  596. this.uiLabel10.Name = "uiLabel10";
  597. this.uiLabel10.Size = new System.Drawing.Size(100, 23);
  598. this.uiLabel10.TabIndex = 16;
  599. this.uiLabel10.Text = "公务员医疗补助";
  600. this.uiLabel10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  601. this.uiLabel10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  602. //
  603. // tbInsuFundPayRito
  604. //
  605. this.tbInsuFundPayRito.Cursor = System.Windows.Forms.Cursors.IBeam;
  606. this.tbInsuFundPayRito.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  607. this.tbInsuFundPayRito.Location = new System.Drawing.Point(877, 148);
  608. this.tbInsuFundPayRito.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  609. this.tbInsuFundPayRito.MinimumSize = new System.Drawing.Size(1, 16);
  610. this.tbInsuFundPayRito.Name = "tbInsuFundPayRito";
  611. this.tbInsuFundPayRito.ShowText = false;
  612. this.tbInsuFundPayRito.Size = new System.Drawing.Size(100, 27);
  613. this.tbInsuFundPayRito.TabIndex = 15;
  614. this.tbInsuFundPayRito.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  615. this.tbInsuFundPayRito.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  616. //
  617. // tbInsuFundPay
  618. //
  619. this.tbInsuFundPay.Cursor = System.Windows.Forms.Cursors.IBeam;
  620. this.tbInsuFundPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  621. this.tbInsuFundPay.Location = new System.Drawing.Point(361, 19);
  622. this.tbInsuFundPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  623. this.tbInsuFundPay.MinimumSize = new System.Drawing.Size(1, 16);
  624. this.tbInsuFundPay.Name = "tbInsuFundPay";
  625. this.tbInsuFundPay.ShowText = false;
  626. this.tbInsuFundPay.Size = new System.Drawing.Size(100, 29);
  627. this.tbInsuFundPay.TabIndex = 14;
  628. this.tbInsuFundPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  629. this.tbInsuFundPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  630. //
  631. // uiLabel11
  632. //
  633. this.uiLabel11.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  634. this.uiLabel11.Location = new System.Drawing.Point(730, 149);
  635. this.uiLabel11.Name = "uiLabel11";
  636. this.uiLabel11.Size = new System.Drawing.Size(146, 23);
  637. this.uiLabel11.TabIndex = 13;
  638. this.uiLabel11.Text = "统筹基金支付比例";
  639. this.uiLabel11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  640. this.uiLabel11.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  641. //
  642. // uiLabel12
  643. //
  644. this.uiLabel12.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  645. this.uiLabel12.Location = new System.Drawing.Point(253, 25);
  646. this.uiLabel12.Name = "uiLabel12";
  647. this.uiLabel12.Size = new System.Drawing.Size(100, 23);
  648. this.uiLabel12.TabIndex = 12;
  649. this.uiLabel12.Text = "统筹基金支出";
  650. this.uiLabel12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  651. this.uiLabel12.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  652. //
  653. // tbActualPayDeduLine
  654. //
  655. this.tbActualPayDeduLine.Cursor = System.Windows.Forms.Cursors.IBeam;
  656. this.tbActualPayDeduLine.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  657. this.tbActualPayDeduLine.Location = new System.Drawing.Point(128, 224);
  658. this.tbActualPayDeduLine.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  659. this.tbActualPayDeduLine.MinimumSize = new System.Drawing.Size(1, 16);
  660. this.tbActualPayDeduLine.Name = "tbActualPayDeduLine";
  661. this.tbActualPayDeduLine.ShowText = false;
  662. this.tbActualPayDeduLine.Size = new System.Drawing.Size(100, 29);
  663. this.tbActualPayDeduLine.TabIndex = 11;
  664. this.tbActualPayDeduLine.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  665. this.tbActualPayDeduLine.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  666. //
  667. // uiLabel4
  668. //
  669. this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  670. this.uiLabel4.Location = new System.Drawing.Point(21, 223);
  671. this.uiLabel4.Name = "uiLabel4";
  672. this.uiLabel4.Size = new System.Drawing.Size(100, 23);
  673. this.uiLabel4.TabIndex = 10;
  674. this.uiLabel4.Text = "实际支付起付线";
  675. this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  676. this.uiLabel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  677. //
  678. // tbInScopyAmount
  679. //
  680. this.tbInScopyAmount.Cursor = System.Windows.Forms.Cursors.IBeam;
  681. this.tbInScopyAmount.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  682. this.tbInScopyAmount.Location = new System.Drawing.Point(877, 191);
  683. this.tbInScopyAmount.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  684. this.tbInScopyAmount.MinimumSize = new System.Drawing.Size(1, 16);
  685. this.tbInScopyAmount.Name = "tbInScopyAmount";
  686. this.tbInScopyAmount.ShowText = false;
  687. this.tbInScopyAmount.Size = new System.Drawing.Size(100, 27);
  688. this.tbInScopyAmount.TabIndex = 9;
  689. this.tbInScopyAmount.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  690. this.tbInScopyAmount.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  691. //
  692. // tbPreSelfPay
  693. //
  694. this.tbPreSelfPay.Cursor = System.Windows.Forms.Cursors.IBeam;
  695. this.tbPreSelfPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  696. this.tbPreSelfPay.Location = new System.Drawing.Point(128, 142);
  697. this.tbPreSelfPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  698. this.tbPreSelfPay.MinimumSize = new System.Drawing.Size(1, 16);
  699. this.tbPreSelfPay.Name = "tbPreSelfPay";
  700. this.tbPreSelfPay.ShowText = false;
  701. this.tbPreSelfPay.Size = new System.Drawing.Size(100, 29);
  702. this.tbPreSelfPay.TabIndex = 8;
  703. this.tbPreSelfPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  704. this.tbPreSelfPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  705. //
  706. // uiLabel5
  707. //
  708. this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  709. this.uiLabel5.Location = new System.Drawing.Point(730, 191);
  710. this.uiLabel5.Name = "uiLabel5";
  711. this.uiLabel5.Size = new System.Drawing.Size(146, 23);
  712. this.uiLabel5.TabIndex = 7;
  713. this.uiLabel5.Text = "符合政策范围金额";
  714. this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  715. this.uiLabel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  716. //
  717. // uiLabel6
  718. //
  719. this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  720. this.uiLabel6.Location = new System.Drawing.Point(21, 143);
  721. this.uiLabel6.Name = "uiLabel6";
  722. this.uiLabel6.Size = new System.Drawing.Size(100, 23);
  723. this.uiLabel6.TabIndex = 6;
  724. this.uiLabel6.Text = "先行自付金额";
  725. this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  726. this.uiLabel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  727. //
  728. // tbOverLimitOwnPay
  729. //
  730. this.tbOverLimitOwnPay.Cursor = System.Windows.Forms.Cursors.IBeam;
  731. this.tbOverLimitOwnPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  732. this.tbOverLimitOwnPay.Location = new System.Drawing.Point(128, 101);
  733. this.tbOverLimitOwnPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  734. this.tbOverLimitOwnPay.MinimumSize = new System.Drawing.Size(1, 16);
  735. this.tbOverLimitOwnPay.Name = "tbOverLimitOwnPay";
  736. this.tbOverLimitOwnPay.ShowText = false;
  737. this.tbOverLimitOwnPay.Size = new System.Drawing.Size(100, 29);
  738. this.tbOverLimitOwnPay.TabIndex = 5;
  739. this.tbOverLimitOwnPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  740. this.tbOverLimitOwnPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  741. //
  742. // uiLabel3
  743. //
  744. this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  745. this.uiLabel3.Location = new System.Drawing.Point(21, 103);
  746. this.uiLabel3.Name = "uiLabel3";
  747. this.uiLabel3.Size = new System.Drawing.Size(100, 23);
  748. this.uiLabel3.TabIndex = 4;
  749. this.uiLabel3.Text = "超限价自费费用";
  750. this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  751. this.uiLabel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  752. //
  753. // tbFullOwnPay
  754. //
  755. this.tbFullOwnPay.Cursor = System.Windows.Forms.Cursors.IBeam;
  756. this.tbFullOwnPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  757. this.tbFullOwnPay.Location = new System.Drawing.Point(128, 60);
  758. this.tbFullOwnPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  759. this.tbFullOwnPay.MinimumSize = new System.Drawing.Size(1, 16);
  760. this.tbFullOwnPay.Name = "tbFullOwnPay";
  761. this.tbFullOwnPay.ShowText = false;
  762. this.tbFullOwnPay.Size = new System.Drawing.Size(100, 29);
  763. this.tbFullOwnPay.TabIndex = 3;
  764. this.tbFullOwnPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  765. this.tbFullOwnPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  766. //
  767. // tbSumamt
  768. //
  769. this.tbSumamt.Cursor = System.Windows.Forms.Cursors.IBeam;
  770. this.tbSumamt.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  771. this.tbSumamt.Location = new System.Drawing.Point(128, 19);
  772. this.tbSumamt.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  773. this.tbSumamt.MinimumSize = new System.Drawing.Size(1, 16);
  774. this.tbSumamt.Name = "tbSumamt";
  775. this.tbSumamt.ShowText = false;
  776. this.tbSumamt.Size = new System.Drawing.Size(100, 29);
  777. this.tbSumamt.TabIndex = 2;
  778. this.tbSumamt.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  779. this.tbSumamt.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  780. //
  781. // uiLabel2
  782. //
  783. this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  784. this.uiLabel2.Location = new System.Drawing.Point(21, 63);
  785. this.uiLabel2.Name = "uiLabel2";
  786. this.uiLabel2.Size = new System.Drawing.Size(100, 23);
  787. this.uiLabel2.TabIndex = 1;
  788. this.uiLabel2.Text = "全自费金额";
  789. this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  790. this.uiLabel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  791. //
  792. // uiLabel1
  793. //
  794. this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  795. this.uiLabel1.Location = new System.Drawing.Point(21, 23);
  796. this.uiLabel1.Name = "uiLabel1";
  797. this.uiLabel1.Size = new System.Drawing.Size(100, 23);
  798. this.uiLabel1.TabIndex = 0;
  799. this.uiLabel1.Text = "医疗费总额";
  800. this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  801. this.uiLabel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  802. //
  803. // pnlSetlBaseInfo
  804. //
  805. this.pnlSetlBaseInfo.Controls.Add(this.tbClearingType);
  806. this.pnlSetlBaseInfo.Controls.Add(this.tbClearingWay);
  807. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel29);
  808. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel19);
  809. this.pnlSetlBaseInfo.Controls.Add(this.tbPersonType);
  810. this.pnlSetlBaseInfo.Controls.Add(this.tbInsuType);
  811. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel27);
  812. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel28);
  813. this.pnlSetlBaseInfo.Controls.Add(this.tbPsnCertNO);
  814. this.pnlSetlBaseInfo.Controls.Add(this.tbPsnCertType);
  815. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel25);
  816. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel26);
  817. this.pnlSetlBaseInfo.Controls.Add(this.tbMedType);
  818. this.pnlSetlBaseInfo.Controls.Add(this.tbAdmCertType);
  819. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel20);
  820. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel21);
  821. this.pnlSetlBaseInfo.Dock = System.Windows.Forms.DockStyle.Top;
  822. this.pnlSetlBaseInfo.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  823. this.pnlSetlBaseInfo.Location = new System.Drawing.Point(0, 32);
  824. this.pnlSetlBaseInfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  825. this.pnlSetlBaseInfo.MinimumSize = new System.Drawing.Size(1, 1);
  826. this.pnlSetlBaseInfo.Name = "pnlSetlBaseInfo";
  827. this.pnlSetlBaseInfo.Size = new System.Drawing.Size(1077, 89);
  828. this.pnlSetlBaseInfo.TabIndex = 0;
  829. this.pnlSetlBaseInfo.Text = null;
  830. this.pnlSetlBaseInfo.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  831. this.pnlSetlBaseInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  832. //
  833. // tbClearingType
  834. //
  835. this.tbClearingType.Cursor = System.Windows.Forms.Cursors.IBeam;
  836. this.tbClearingType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  837. this.tbClearingType.Location = new System.Drawing.Point(877, 50);
  838. this.tbClearingType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  839. this.tbClearingType.MinimumSize = new System.Drawing.Size(1, 16);
  840. this.tbClearingType.Name = "tbClearingType";
  841. this.tbClearingType.ShowText = false;
  842. this.tbClearingType.Size = new System.Drawing.Size(100, 27);
  843. this.tbClearingType.TabIndex = 61;
  844. this.tbClearingType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  845. this.tbClearingType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  846. //
  847. // tbClearingWay
  848. //
  849. this.tbClearingWay.Cursor = System.Windows.Forms.Cursors.IBeam;
  850. this.tbClearingWay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  851. this.tbClearingWay.Location = new System.Drawing.Point(877, 13);
  852. this.tbClearingWay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  853. this.tbClearingWay.MinimumSize = new System.Drawing.Size(1, 16);
  854. this.tbClearingWay.Name = "tbClearingWay";
  855. this.tbClearingWay.ShowText = false;
  856. this.tbClearingWay.Size = new System.Drawing.Size(100, 27);
  857. this.tbClearingWay.TabIndex = 60;
  858. this.tbClearingWay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  859. this.tbClearingWay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  860. //
  861. // uiLabel29
  862. //
  863. this.uiLabel29.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  864. this.uiLabel29.Location = new System.Drawing.Point(785, 49);
  865. this.uiLabel29.Name = "uiLabel29";
  866. this.uiLabel29.Size = new System.Drawing.Size(81, 23);
  867. this.uiLabel29.TabIndex = 62;
  868. this.uiLabel29.Text = "清算类别";
  869. this.uiLabel29.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  870. this.uiLabel29.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  871. //
  872. // uiLabel19
  873. //
  874. this.uiLabel19.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  875. this.uiLabel19.Location = new System.Drawing.Point(785, 14);
  876. this.uiLabel19.Name = "uiLabel19";
  877. this.uiLabel19.Size = new System.Drawing.Size(81, 23);
  878. this.uiLabel19.TabIndex = 60;
  879. this.uiLabel19.Text = "统筹类别";
  880. this.uiLabel19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  881. this.uiLabel19.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  882. //
  883. // tbPersonType
  884. //
  885. this.tbPersonType.Cursor = System.Windows.Forms.Cursors.IBeam;
  886. this.tbPersonType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  887. this.tbPersonType.Location = new System.Drawing.Point(650, 50);
  888. this.tbPersonType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  889. this.tbPersonType.MinimumSize = new System.Drawing.Size(1, 16);
  890. this.tbPersonType.Name = "tbPersonType";
  891. this.tbPersonType.ShowText = false;
  892. this.tbPersonType.Size = new System.Drawing.Size(100, 25);
  893. this.tbPersonType.TabIndex = 57;
  894. this.tbPersonType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  895. this.tbPersonType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  896. //
  897. // tbInsuType
  898. //
  899. this.tbInsuType.Cursor = System.Windows.Forms.Cursors.IBeam;
  900. this.tbInsuType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  901. this.tbInsuType.Location = new System.Drawing.Point(650, 12);
  902. this.tbInsuType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  903. this.tbInsuType.MinimumSize = new System.Drawing.Size(1, 16);
  904. this.tbInsuType.Name = "tbInsuType";
  905. this.tbInsuType.ShowText = false;
  906. this.tbInsuType.Size = new System.Drawing.Size(100, 25);
  907. this.tbInsuType.TabIndex = 56;
  908. this.tbInsuType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  909. this.tbInsuType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  910. //
  911. // uiLabel27
  912. //
  913. this.uiLabel27.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  914. this.uiLabel27.Location = new System.Drawing.Point(562, 49);
  915. this.uiLabel27.Name = "uiLabel27";
  916. this.uiLabel27.Size = new System.Drawing.Size(81, 23);
  917. this.uiLabel27.TabIndex = 55;
  918. this.uiLabel27.Text = "人员类别";
  919. this.uiLabel27.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  920. this.uiLabel27.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  921. //
  922. // uiLabel28
  923. //
  924. this.uiLabel28.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  925. this.uiLabel28.Location = new System.Drawing.Point(562, 14);
  926. this.uiLabel28.Name = "uiLabel28";
  927. this.uiLabel28.Size = new System.Drawing.Size(81, 23);
  928. this.uiLabel28.TabIndex = 54;
  929. this.uiLabel28.Text = "险种类型";
  930. this.uiLabel28.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  931. this.uiLabel28.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  932. //
  933. // tbPsnCertNO
  934. //
  935. this.tbPsnCertNO.Cursor = System.Windows.Forms.Cursors.IBeam;
  936. this.tbPsnCertNO.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  937. this.tbPsnCertNO.Location = new System.Drawing.Point(330, 50);
  938. this.tbPsnCertNO.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  939. this.tbPsnCertNO.MinimumSize = new System.Drawing.Size(1, 16);
  940. this.tbPsnCertNO.Name = "tbPsnCertNO";
  941. this.tbPsnCertNO.ShowText = false;
  942. this.tbPsnCertNO.Size = new System.Drawing.Size(192, 25);
  943. this.tbPsnCertNO.TabIndex = 53;
  944. this.tbPsnCertNO.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  945. this.tbPsnCertNO.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  946. //
  947. // tbPsnCertType
  948. //
  949. this.tbPsnCertType.Cursor = System.Windows.Forms.Cursors.IBeam;
  950. this.tbPsnCertType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  951. this.tbPsnCertType.Location = new System.Drawing.Point(331, 12);
  952. this.tbPsnCertType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  953. this.tbPsnCertType.MinimumSize = new System.Drawing.Size(1, 16);
  954. this.tbPsnCertType.Name = "tbPsnCertType";
  955. this.tbPsnCertType.ShowText = false;
  956. this.tbPsnCertType.Size = new System.Drawing.Size(191, 27);
  957. this.tbPsnCertType.TabIndex = 52;
  958. this.tbPsnCertType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  959. this.tbPsnCertType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  960. //
  961. // uiLabel25
  962. //
  963. this.uiLabel25.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  964. this.uiLabel25.Location = new System.Drawing.Point(244, 49);
  965. this.uiLabel25.Name = "uiLabel25";
  966. this.uiLabel25.Size = new System.Drawing.Size(81, 23);
  967. this.uiLabel25.TabIndex = 51;
  968. this.uiLabel25.Text = "证件号码";
  969. this.uiLabel25.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  970. this.uiLabel25.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  971. //
  972. // uiLabel26
  973. //
  974. this.uiLabel26.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  975. this.uiLabel26.Location = new System.Drawing.Point(244, 14);
  976. this.uiLabel26.Name = "uiLabel26";
  977. this.uiLabel26.Size = new System.Drawing.Size(81, 23);
  978. this.uiLabel26.TabIndex = 50;
  979. this.uiLabel26.Text = "证件类型";
  980. this.uiLabel26.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  981. this.uiLabel26.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  982. //
  983. // tbMedType
  984. //
  985. this.tbMedType.Cursor = System.Windows.Forms.Cursors.IBeam;
  986. this.tbMedType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  987. this.tbMedType.Location = new System.Drawing.Point(112, 50);
  988. this.tbMedType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  989. this.tbMedType.MinimumSize = new System.Drawing.Size(1, 16);
  990. this.tbMedType.Name = "tbMedType";
  991. this.tbMedType.ShowText = false;
  992. this.tbMedType.Size = new System.Drawing.Size(100, 25);
  993. this.tbMedType.TabIndex = 49;
  994. this.tbMedType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  995. this.tbMedType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  996. //
  997. // tbAdmCertType
  998. //
  999. this.tbAdmCertType.Cursor = System.Windows.Forms.Cursors.IBeam;
  1000. this.tbAdmCertType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1001. this.tbAdmCertType.Location = new System.Drawing.Point(113, 12);
  1002. this.tbAdmCertType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1003. this.tbAdmCertType.MinimumSize = new System.Drawing.Size(1, 16);
  1004. this.tbAdmCertType.Name = "tbAdmCertType";
  1005. this.tbAdmCertType.ShowText = false;
  1006. this.tbAdmCertType.Size = new System.Drawing.Size(100, 27);
  1007. this.tbAdmCertType.TabIndex = 48;
  1008. this.tbAdmCertType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1009. this.tbAdmCertType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1010. //
  1011. // uiLabel20
  1012. //
  1013. this.uiLabel20.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1014. this.uiLabel20.Location = new System.Drawing.Point(22, 49);
  1015. this.uiLabel20.Name = "uiLabel20";
  1016. this.uiLabel20.Size = new System.Drawing.Size(81, 23);
  1017. this.uiLabel20.TabIndex = 47;
  1018. this.uiLabel20.Text = "医疗类别";
  1019. this.uiLabel20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1020. this.uiLabel20.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1021. //
  1022. // uiLabel21
  1023. //
  1024. this.uiLabel21.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1025. this.uiLabel21.Location = new System.Drawing.Point(22, 14);
  1026. this.uiLabel21.Name = "uiLabel21";
  1027. this.uiLabel21.Size = new System.Drawing.Size(81, 23);
  1028. this.uiLabel21.TabIndex = 46;
  1029. this.uiLabel21.Text = "凭证类型";
  1030. this.uiLabel21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1031. this.uiLabel21.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1032. //
  1033. // uiLabel30
  1034. //
  1035. this.uiLabel30.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1036. this.uiLabel30.Location = new System.Drawing.Point(716, 34);
  1037. this.uiLabel30.Name = "uiLabel30";
  1038. this.uiLabel30.Size = new System.Drawing.Size(100, 23);
  1039. this.uiLabel30.TabIndex = 58;
  1040. this.uiLabel30.Text = "医疗费总额";
  1041. this.uiLabel30.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1042. this.uiLabel30.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1043. //
  1044. // gbSetldetail
  1045. //
  1046. this.gbSetldetail.Controls.Add(this.dgvSetlDetail);
  1047. this.gbSetldetail.Dock = System.Windows.Forms.DockStyle.Bottom;
  1048. this.gbSetldetail.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1049. this.gbSetldetail.Location = new System.Drawing.Point(0, 418);
  1050. this.gbSetldetail.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1051. this.gbSetldetail.MinimumSize = new System.Drawing.Size(1, 1);
  1052. this.gbSetldetail.Name = "gbSetldetail";
  1053. this.gbSetldetail.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1054. this.gbSetldetail.Size = new System.Drawing.Size(1077, 152);
  1055. this.gbSetldetail.TabIndex = 1;
  1056. this.gbSetldetail.Text = "结算基金分项信息";
  1057. this.gbSetldetail.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1058. this.gbSetldetail.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1059. //
  1060. // dgvSetlDetail
  1061. //
  1062. this.dgvSetlDetail.AllowUserToAddRows = false;
  1063. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1064. this.dgvSetlDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  1065. this.dgvSetlDetail.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1066. this.dgvSetlDetail.BorderStyle = System.Windows.Forms.BorderStyle.None;
  1067. this.dgvSetlDetail.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
  1068. this.dgvSetlDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1069. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1070. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1071. dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1072. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
  1073. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1074. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1075. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1076. this.dgvSetlDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  1077. this.dgvSetlDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1078. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1079. dataGridViewCellStyle3.BackColor = System.Drawing.Color.White;
  1080. dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1081. dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1082. dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1083. dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1084. dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1085. this.dgvSetlDetail.DefaultCellStyle = dataGridViewCellStyle3;
  1086. this.dgvSetlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
  1087. this.dgvSetlDetail.EnableHeadersVisualStyles = false;
  1088. this.dgvSetlDetail.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1089. this.dgvSetlDetail.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1090. this.dgvSetlDetail.Location = new System.Drawing.Point(0, 32);
  1091. this.dgvSetlDetail.Name = "dgvSetlDetail";
  1092. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1093. dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1094. dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1095. dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1096. dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1097. dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1098. dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1099. this.dgvSetlDetail.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
  1100. this.dgvSetlDetail.RowHeadersWidth = 51;
  1101. dataGridViewCellStyle5.BackColor = System.Drawing.Color.White;
  1102. dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1103. dataGridViewCellStyle5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1104. dataGridViewCellStyle5.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1105. dataGridViewCellStyle5.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1106. this.dgvSetlDetail.RowsDefaultCellStyle = dataGridViewCellStyle5;
  1107. this.dgvSetlDetail.RowTemplate.Height = 23;
  1108. this.dgvSetlDetail.SelectedIndex = -1;
  1109. this.dgvSetlDetail.ShowGridLine = false;
  1110. this.dgvSetlDetail.ShowRect = false;
  1111. this.dgvSetlDetail.Size = new System.Drawing.Size(1077, 120);
  1112. this.dgvSetlDetail.TabIndex = 1;
  1113. this.dgvSetlDetail.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1114. //
  1115. // tbMedInsWalletPay
  1116. //
  1117. this.tbMedInsWalletPay.Cursor = System.Windows.Forms.Cursors.IBeam;
  1118. this.tbMedInsWalletPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1119. this.tbMedInsWalletPay.Location = new System.Drawing.Point(361, 267);
  1120. this.tbMedInsWalletPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1121. this.tbMedInsWalletPay.MinimumSize = new System.Drawing.Size(1, 16);
  1122. this.tbMedInsWalletPay.Name = "tbMedInsWalletPay";
  1123. this.tbMedInsWalletPay.ShowText = false;
  1124. this.tbMedInsWalletPay.Size = new System.Drawing.Size(100, 29);
  1125. this.tbMedInsWalletPay.TabIndex = 81;
  1126. this.tbMedInsWalletPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1127. this.tbMedInsWalletPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1128. //
  1129. // uiLabel34
  1130. //
  1131. this.uiLabel34.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1132. this.uiLabel34.Location = new System.Drawing.Point(253, 266);
  1133. this.uiLabel34.Name = "uiLabel34";
  1134. this.uiLabel34.Size = new System.Drawing.Size(100, 23);
  1135. this.uiLabel34.TabIndex = 80;
  1136. this.uiLabel34.Text = "钱包支付金额";
  1137. this.uiLabel34.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1138. this.uiLabel34.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1139. //
  1140. // tbMedInsWalletBalance
  1141. //
  1142. this.tbMedInsWalletBalance.Cursor = System.Windows.Forms.Cursors.IBeam;
  1143. this.tbMedInsWalletBalance.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1144. this.tbMedInsWalletBalance.Location = new System.Drawing.Point(128, 267);
  1145. this.tbMedInsWalletBalance.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1146. this.tbMedInsWalletBalance.MinimumSize = new System.Drawing.Size(1, 16);
  1147. this.tbMedInsWalletBalance.Name = "tbMedInsWalletBalance";
  1148. this.tbMedInsWalletBalance.ShowText = false;
  1149. this.tbMedInsWalletBalance.Size = new System.Drawing.Size(100, 29);
  1150. this.tbMedInsWalletBalance.TabIndex = 79;
  1151. this.tbMedInsWalletBalance.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1152. this.tbMedInsWalletBalance.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1153. //
  1154. // uiLabel35
  1155. //
  1156. this.uiLabel35.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1157. this.uiLabel35.Location = new System.Drawing.Point(21, 265);
  1158. this.uiLabel35.Name = "uiLabel35";
  1159. this.uiLabel35.Size = new System.Drawing.Size(100, 23);
  1160. this.uiLabel35.TabIndex = 78;
  1161. this.uiLabel35.Text = "钱包余额";
  1162. this.uiLabel35.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1163. this.uiLabel35.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1164. //
  1165. // tbHifdmPay
  1166. //
  1167. this.tbHifdmPay.Cursor = System.Windows.Forms.Cursors.IBeam;
  1168. this.tbHifdmPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1169. this.tbHifdmPay.Location = new System.Drawing.Point(877, 229);
  1170. this.tbHifdmPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1171. this.tbHifdmPay.MinimumSize = new System.Drawing.Size(1, 16);
  1172. this.tbHifdmPay.Name = "tbHifdmPay";
  1173. this.tbHifdmPay.ShowText = false;
  1174. this.tbHifdmPay.Size = new System.Drawing.Size(100, 27);
  1175. this.tbHifdmPay.TabIndex = 77;
  1176. this.tbHifdmPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1177. this.tbHifdmPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1178. //
  1179. // uiLabel33
  1180. //
  1181. this.uiLabel33.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1182. this.uiLabel33.Location = new System.Drawing.Point(735, 229);
  1183. this.uiLabel33.Name = "uiLabel33";
  1184. this.uiLabel33.Size = new System.Drawing.Size(139, 23);
  1185. this.uiLabel33.TabIndex = 76;
  1186. this.uiLabel33.Text = "伤残人员医保基金支出";
  1187. this.uiLabel33.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1188. this.uiLabel33.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1189. //
  1190. // tbCommercialReimamt
  1191. //
  1192. this.tbCommercialReimamt.Cursor = System.Windows.Forms.Cursors.IBeam;
  1193. this.tbCommercialReimamt.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1194. this.tbCommercialReimamt.Location = new System.Drawing.Point(609, 225);
  1195. this.tbCommercialReimamt.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1196. this.tbCommercialReimamt.MinimumSize = new System.Drawing.Size(1, 16);
  1197. this.tbCommercialReimamt.Name = "tbCommercialReimamt";
  1198. this.tbCommercialReimamt.ShowText = false;
  1199. this.tbCommercialReimamt.Size = new System.Drawing.Size(100, 29);
  1200. this.tbCommercialReimamt.TabIndex = 75;
  1201. this.tbCommercialReimamt.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1202. this.tbCommercialReimamt.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1203. //
  1204. // uiLabel32
  1205. //
  1206. this.uiLabel32.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1207. this.uiLabel32.Location = new System.Drawing.Point(502, 229);
  1208. this.uiLabel32.Name = "uiLabel32";
  1209. this.uiLabel32.Size = new System.Drawing.Size(100, 23);
  1210. this.uiLabel32.TabIndex = 74;
  1211. this.uiLabel32.Text = "商保支付金额";
  1212. this.uiLabel32.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1213. this.uiLabel32.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1214. //
  1215. // tbCommercialRenflag
  1216. //
  1217. this.tbCommercialRenflag.Cursor = System.Windows.Forms.Cursors.IBeam;
  1218. this.tbCommercialRenflag.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1219. this.tbCommercialRenflag.Location = new System.Drawing.Point(361, 225);
  1220. this.tbCommercialRenflag.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1221. this.tbCommercialRenflag.MinimumSize = new System.Drawing.Size(1, 16);
  1222. this.tbCommercialRenflag.Name = "tbCommercialRenflag";
  1223. this.tbCommercialRenflag.ShowText = false;
  1224. this.tbCommercialRenflag.Size = new System.Drawing.Size(100, 29);
  1225. this.tbCommercialRenflag.TabIndex = 73;
  1226. this.tbCommercialRenflag.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1227. this.tbCommercialRenflag.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1228. //
  1229. // uiLabel31
  1230. //
  1231. this.uiLabel31.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1232. this.uiLabel31.Location = new System.Drawing.Point(253, 224);
  1233. this.uiLabel31.Name = "uiLabel31";
  1234. this.uiLabel31.Size = new System.Drawing.Size(100, 23);
  1235. this.uiLabel31.TabIndex = 72;
  1236. this.uiLabel31.Text = "商保支付标志";
  1237. this.uiLabel31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1238. this.uiLabel31.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1239. //
  1240. // SettlementForm
  1241. //
  1242. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  1243. this.ClientSize = new System.Drawing.Size(1077, 668);
  1244. this.Controls.Add(this.pnlClient);
  1245. this.Controls.Add(this.pnlBottom);
  1246. this.Margin = new System.Windows.Forms.Padding(4);
  1247. this.Name = "SettlementForm";
  1248. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  1249. this.Text = "患者结算信息一览表";
  1250. this.pnlBottom.ResumeLayout(false);
  1251. this.pnlClient.ResumeLayout(false);
  1252. this.gbSetlinfo.ResumeLayout(false);
  1253. this.pnlPayInfo.ResumeLayout(false);
  1254. this.pnlSetlBaseInfo.ResumeLayout(false);
  1255. this.gbSetldetail.ResumeLayout(false);
  1256. ((System.ComponentModel.ISupportInitialize)(this.dgvSetlDetail)).EndInit();
  1257. this.ResumeLayout(false);
  1258. }
  1259. #endregion
  1260. private Sunny.UI.UIPanel pnlBottom;
  1261. private Sunny.UI.UIPanel pnlClient;
  1262. private Sunny.UI.UIGroupBox gbSetlinfo;
  1263. private Sunny.UI.UIGroupBox gbSetldetail;
  1264. private Sunny.UI.UIDataGridView dgvSetlDetail;
  1265. private Sunny.UI.UIPanel pnlPayInfo;
  1266. private Sunny.UI.UITextBox tbOverLimitOwnPay;
  1267. private Sunny.UI.UILabel uiLabel3;
  1268. private Sunny.UI.UITextBox tbFullOwnPay;
  1269. private Sunny.UI.UITextBox tbSumamt;
  1270. private Sunny.UI.UILabel uiLabel2;
  1271. private Sunny.UI.UILabel uiLabel1;
  1272. private Sunny.UI.UIPanel pnlSetlBaseInfo;
  1273. private Sunny.UI.UITextBox tbAccountMutualAidAmount;
  1274. private Sunny.UI.UILabel uiLabel22;
  1275. private Sunny.UI.UITextBox tbBalc;
  1276. private Sunny.UI.UITextBox tbHospitalPartAmount;
  1277. private Sunny.UI.UILabel uiLabel23;
  1278. private Sunny.UI.UILabel uiLabel24;
  1279. private Sunny.UI.UITextBox tbPsnCashPay;
  1280. private Sunny.UI.UILabel uiLabel13;
  1281. private Sunny.UI.UITextBox tbPsnAccountPaySummat;
  1282. private Sunny.UI.UITextBox tbPsnSummat;
  1283. private Sunny.UI.UILabel uiLabel14;
  1284. private Sunny.UI.UILabel uiLabel15;
  1285. private Sunny.UI.UITextBox tbFundPaySummat;
  1286. private Sunny.UI.UILabel uiLabel16;
  1287. private Sunny.UI.UITextBox tbOtherPay;
  1288. private Sunny.UI.UITextBox tbAssian;
  1289. private Sunny.UI.UILabel uiLabel17;
  1290. private Sunny.UI.UILabel uiLabel18;
  1291. private Sunny.UI.UITextBox tbWorkerLargeMedical;
  1292. private Sunny.UI.UILabel uiLabel7;
  1293. private Sunny.UI.UITextBox tbHifmi_pay;
  1294. private Sunny.UI.UITextBox tbHifes_pay;
  1295. private Sunny.UI.UILabel uiLabel8;
  1296. private Sunny.UI.UILabel uiLabel9;
  1297. private Sunny.UI.UITextBox tbCvlserv_pay;
  1298. private Sunny.UI.UILabel uiLabel10;
  1299. private Sunny.UI.UITextBox tbInsuFundPayRito;
  1300. private Sunny.UI.UITextBox tbInsuFundPay;
  1301. private Sunny.UI.UILabel uiLabel11;
  1302. private Sunny.UI.UILabel uiLabel12;
  1303. private Sunny.UI.UITextBox tbActualPayDeduLine;
  1304. private Sunny.UI.UILabel uiLabel4;
  1305. private Sunny.UI.UITextBox tbInScopyAmount;
  1306. private Sunny.UI.UITextBox tbPreSelfPay;
  1307. private Sunny.UI.UILabel uiLabel5;
  1308. private Sunny.UI.UILabel uiLabel6;
  1309. private Sunny.UI.UITextBox tbClearingWay;
  1310. private Sunny.UI.UILabel uiLabel19;
  1311. private Sunny.UI.UITextBox tbPersonType;
  1312. private Sunny.UI.UITextBox tbInsuType;
  1313. private Sunny.UI.UILabel uiLabel27;
  1314. private Sunny.UI.UILabel uiLabel28;
  1315. private Sunny.UI.UITextBox tbPsnCertNO;
  1316. private Sunny.UI.UITextBox tbPsnCertType;
  1317. private Sunny.UI.UILabel uiLabel25;
  1318. private Sunny.UI.UILabel uiLabel26;
  1319. private Sunny.UI.UITextBox tbMedType;
  1320. private Sunny.UI.UITextBox tbAdmCertType;
  1321. private Sunny.UI.UILabel uiLabel20;
  1322. private Sunny.UI.UILabel uiLabel21;
  1323. private Sunny.UI.UILabel uiLabel30;
  1324. private Sunny.UI.UIButton uiButton1;
  1325. private Sunny.UI.UITextBox tbClearingType;
  1326. private Sunny.UI.UILabel uiLabel29;
  1327. private Sunny.UI.UIButton uiButton2;
  1328. private Sunny.UI.UITextBox tbMedInsWalletPay;
  1329. private Sunny.UI.UILabel uiLabel34;
  1330. private Sunny.UI.UITextBox tbMedInsWalletBalance;
  1331. private Sunny.UI.UILabel uiLabel35;
  1332. private Sunny.UI.UITextBox tbHifdmPay;
  1333. private Sunny.UI.UILabel uiLabel33;
  1334. private Sunny.UI.UITextBox tbCommercialReimamt;
  1335. private Sunny.UI.UILabel uiLabel32;
  1336. private Sunny.UI.UITextBox tbCommercialRenflag;
  1337. private Sunny.UI.UILabel uiLabel31;
  1338. }
  1339. }