| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269 | 
							- /******************************************************************************
 
-  * 文件名称: InvokeHelper.cs
 
-  * 文件说明: 调用助手,调用方法的封装
 
-  * 当前版本: V1.0
 
-  * 创建日期: 2022-04-12
 
-  *
 
-  * 2020-04-12: 增加 businessDLLInvoke 方法
 
-  * 2020-04-12: 增加 writeLog 方法
 
-  * 2020-04-14: 增加 businessDLLInvoke(重载) 方法
 
-  * 2020-04-14: 增加 irisServiceInvoke 方法
 
- ******************************************************************************/
 
- namespace PTMedicalInsurance.Forms
 
- {
 
-     partial class SettlementInfo
 
-     {
 
-         /// <summary>
 
-         /// Required designer variable.
 
-         /// </summary>
 
-         private System.ComponentModel.IContainer components = null;
 
-         /// <summary>
 
-         /// Clean up any resources being used.
 
-         /// </summary>
 
-         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 
-         protected override void Dispose(bool disposing)
 
-         {
 
-             if (disposing && (components != null))
 
-             {
 
-                 components.Dispose();
 
-             }
 
-             base.Dispose(disposing);
 
-         }
 
-         #region Windows Form Designer generated code
 
-         /// <summary>
 
-         /// Required method for Designer support - do not modify
 
-         /// the contents of this method with the code editor.
 
-         /// </summary>
 
-         private void InitializeComponent()
 
-         {
 
-             System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
 
-             System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
 
-             System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
 
-             System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
 
-             System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
 
-             this.pnlBottom = new Sunny.UI.UIPanel();
 
-             this.cbxMutualAidPay = new Sunny.UI.UICheckBox();
 
-             this.uiButton2 = new Sunny.UI.UIButton();
 
-             this.uiButton1 = new Sunny.UI.UIButton();
 
-             this.pnlClient = new Sunny.UI.UIPanel();
 
-             this.gbSetlinfo = new Sunny.UI.UIGroupBox();
 
-             this.pnlPayInfo = new Sunny.UI.UIPanel();
 
-             this.tbWltpayAmt = new Sunny.UI.UITextBox();
 
-             this.uiLabel32 = new Sunny.UI.UILabel();
 
-             this.tbownpayhosppart = new Sunny.UI.UITextBox();
 
-             this.uiLabel31 = new Sunny.UI.UILabel();
 
-             this.tbAccountMutualAidAmount = new Sunny.UI.UITextBox();
 
-             this.uiLabel22 = new Sunny.UI.UILabel();
 
-             this.tbBalc = new Sunny.UI.UITextBox();
 
-             this.tbHospitalPartAmount = new Sunny.UI.UITextBox();
 
-             this.uiLabel23 = new Sunny.UI.UILabel();
 
-             this.uiLabel24 = new Sunny.UI.UILabel();
 
-             this.tbPsnCashPay = new Sunny.UI.UITextBox();
 
-             this.uiLabel13 = new Sunny.UI.UILabel();
 
-             this.tbPsnAccountPaySummat = new Sunny.UI.UITextBox();
 
-             this.tbPsnSummat = new Sunny.UI.UITextBox();
 
-             this.uiLabel14 = new Sunny.UI.UILabel();
 
-             this.uiLabel15 = new Sunny.UI.UILabel();
 
-             this.tbFundPaySummat = new Sunny.UI.UITextBox();
 
-             this.uiLabel16 = new Sunny.UI.UILabel();
 
-             this.tbOtherPay = new Sunny.UI.UITextBox();
 
-             this.tbAssian = new Sunny.UI.UITextBox();
 
-             this.uiLabel17 = new Sunny.UI.UILabel();
 
-             this.uiLabel18 = new Sunny.UI.UILabel();
 
-             this.tbWorkerLargeMedical = new Sunny.UI.UITextBox();
 
-             this.uiLabel7 = new Sunny.UI.UILabel();
 
-             this.tbHifmi_pay = new Sunny.UI.UITextBox();
 
-             this.tbHifes_pay = new Sunny.UI.UITextBox();
 
-             this.uiLabel8 = new Sunny.UI.UILabel();
 
-             this.uiLabel9 = new Sunny.UI.UILabel();
 
-             this.tbCvlserv_pay = new Sunny.UI.UITextBox();
 
-             this.uiLabel10 = new Sunny.UI.UILabel();
 
-             this.tbInsuFundPayRito = new Sunny.UI.UITextBox();
 
-             this.tbInsuFundPay = new Sunny.UI.UITextBox();
 
-             this.uiLabel11 = new Sunny.UI.UILabel();
 
-             this.uiLabel12 = new Sunny.UI.UILabel();
 
-             this.tbActualPayDeduLine = new Sunny.UI.UITextBox();
 
-             this.uiLabel4 = new Sunny.UI.UILabel();
 
-             this.tbInScopyAmount = new Sunny.UI.UITextBox();
 
-             this.tbPreSelfPay = new Sunny.UI.UITextBox();
 
-             this.uiLabel5 = new Sunny.UI.UILabel();
 
-             this.uiLabel6 = new Sunny.UI.UILabel();
 
-             this.tbOverLimitOwnPay = new Sunny.UI.UITextBox();
 
-             this.uiLabel3 = new Sunny.UI.UILabel();
 
-             this.tbFullOwnPay = new Sunny.UI.UITextBox();
 
-             this.tbSumamt = new Sunny.UI.UITextBox();
 
-             this.uiLabel2 = new Sunny.UI.UILabel();
 
-             this.uiLabel1 = new Sunny.UI.UILabel();
 
-             this.pnlSetlBaseInfo = new Sunny.UI.UIPanel();
 
-             this.tbClearingType = new Sunny.UI.UITextBox();
 
-             this.tbClearingWay = new Sunny.UI.UITextBox();
 
-             this.uiLabel29 = new Sunny.UI.UILabel();
 
-             this.uiLabel19 = new Sunny.UI.UILabel();
 
-             this.tbPersonType = new Sunny.UI.UITextBox();
 
-             this.tbInsuType = new Sunny.UI.UITextBox();
 
-             this.uiLabel27 = new Sunny.UI.UILabel();
 
-             this.uiLabel28 = new Sunny.UI.UILabel();
 
-             this.tbPsnCertNO = new Sunny.UI.UITextBox();
 
-             this.tbPsnCertType = new Sunny.UI.UITextBox();
 
-             this.uiLabel25 = new Sunny.UI.UILabel();
 
-             this.uiLabel26 = new Sunny.UI.UILabel();
 
-             this.tbMedType = new Sunny.UI.UITextBox();
 
-             this.tbAdmCertType = new Sunny.UI.UITextBox();
 
-             this.uiLabel20 = new Sunny.UI.UILabel();
 
-             this.uiLabel21 = new Sunny.UI.UILabel();
 
-             this.uiLabel30 = new Sunny.UI.UILabel();
 
-             this.gbSetldetail = new Sunny.UI.UIGroupBox();
 
-             this.dgvSetlDetail = new Sunny.UI.UIDataGridView();
 
-             this.pnlBottom.SuspendLayout();
 
-             this.pnlClient.SuspendLayout();
 
-             this.gbSetlinfo.SuspendLayout();
 
-             this.pnlPayInfo.SuspendLayout();
 
-             this.pnlSetlBaseInfo.SuspendLayout();
 
-             this.gbSetldetail.SuspendLayout();
 
-             ((System.ComponentModel.ISupportInitialize)(this.dgvSetlDetail)).BeginInit();
 
-             this.SuspendLayout();
 
-             // 
 
-             // pnlBottom
 
-             // 
 
-             this.pnlBottom.Controls.Add(this.cbxMutualAidPay);
 
-             this.pnlBottom.Controls.Add(this.uiButton2);
 
-             this.pnlBottom.Controls.Add(this.uiButton1);
 
-             this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
 
-             this.pnlBottom.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.pnlBottom.Location = new System.Drawing.Point(0, 544);
 
-             this.pnlBottom.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.pnlBottom.MinimumSize = new System.Drawing.Size(1, 1);
 
-             this.pnlBottom.Name = "pnlBottom";
 
-             this.pnlBottom.Size = new System.Drawing.Size(988, 65);
 
-             this.pnlBottom.TabIndex = 0;
 
-             this.pnlBottom.Text = null;
 
-             this.pnlBottom.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
 
-             this.pnlBottom.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // cbxMutualAidPay
 
-             // 
 
-             this.cbxMutualAidPay.Cursor = System.Windows.Forms.Cursors.Hand;
 
-             this.cbxMutualAidPay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.cbxMutualAidPay.Location = new System.Drawing.Point(26, 18);
 
-             this.cbxMutualAidPay.MinimumSize = new System.Drawing.Size(1, 1);
 
-             this.cbxMutualAidPay.Name = "cbxMutualAidPay";
 
-             this.cbxMutualAidPay.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
 
-             this.cbxMutualAidPay.Size = new System.Drawing.Size(168, 34);
 
-             this.cbxMutualAidPay.TabIndex = 37;
 
-             this.cbxMutualAidPay.Text = "使用账户代支结算";
 
-             this.cbxMutualAidPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiButton2
 
-             // 
 
-             this.uiButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
 
-             this.uiButton2.Cursor = System.Windows.Forms.Cursors.Hand;
 
-             this.uiButton2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiButton2.Location = new System.Drawing.Point(873, 6);
 
-             this.uiButton2.MinimumSize = new System.Drawing.Size(1, 1);
 
-             this.uiButton2.Name = "uiButton2";
 
-             this.uiButton2.Size = new System.Drawing.Size(106, 53);
 
-             this.uiButton2.TabIndex = 1;
 
-             this.uiButton2.Text = "放  弃";
 
-             this.uiButton2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiButton2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             this.uiButton2.Click += new System.EventHandler(this.uiButton2_Click);
 
-             // 
 
-             // uiButton1
 
-             // 
 
-             this.uiButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
 
-             this.uiButton1.Cursor = System.Windows.Forms.Cursors.Hand;
 
-             this.uiButton1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiButton1.Location = new System.Drawing.Point(757, 6);
 
-             this.uiButton1.MinimumSize = new System.Drawing.Size(1, 1);
 
-             this.uiButton1.Name = "uiButton1";
 
-             this.uiButton1.Size = new System.Drawing.Size(106, 53);
 
-             this.uiButton1.TabIndex = 0;
 
-             this.uiButton1.Text = "结  算";
 
-             this.uiButton1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiButton1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             this.uiButton1.Click += new System.EventHandler(this.uiButton1_Click);
 
-             // 
 
-             // pnlClient
 
-             // 
 
-             this.pnlClient.Controls.Add(this.gbSetlinfo);
 
-             this.pnlClient.Controls.Add(this.gbSetldetail);
 
-             this.pnlClient.Dock = System.Windows.Forms.DockStyle.Fill;
 
-             this.pnlClient.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.pnlClient.Location = new System.Drawing.Point(0, 0);
 
-             this.pnlClient.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.pnlClient.MinimumSize = new System.Drawing.Size(1, 1);
 
-             this.pnlClient.Name = "pnlClient";
 
-             this.pnlClient.Size = new System.Drawing.Size(988, 544);
 
-             this.pnlClient.TabIndex = 1;
 
-             this.pnlClient.Text = null;
 
-             this.pnlClient.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
 
-             this.pnlClient.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // gbSetlinfo
 
-             // 
 
-             this.gbSetlinfo.Controls.Add(this.pnlPayInfo);
 
-             this.gbSetlinfo.Controls.Add(this.pnlSetlBaseInfo);
 
-             this.gbSetlinfo.Controls.Add(this.uiLabel30);
 
-             this.gbSetlinfo.Dock = System.Windows.Forms.DockStyle.Fill;
 
-             this.gbSetlinfo.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.gbSetlinfo.Location = new System.Drawing.Point(0, 0);
 
-             this.gbSetlinfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.gbSetlinfo.MinimumSize = new System.Drawing.Size(1, 1);
 
-             this.gbSetlinfo.Name = "gbSetlinfo";
 
-             this.gbSetlinfo.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
 
-             this.gbSetlinfo.Size = new System.Drawing.Size(988, 392);
 
-             this.gbSetlinfo.TabIndex = 2;
 
-             this.gbSetlinfo.Text = "结算信息";
 
-             this.gbSetlinfo.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
 
-             this.gbSetlinfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // pnlPayInfo
 
-             // 
 
-             this.pnlPayInfo.Controls.Add(this.tbWltpayAmt);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel32);
 
-             this.pnlPayInfo.Controls.Add(this.tbownpayhosppart);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel31);
 
-             this.pnlPayInfo.Controls.Add(this.tbAccountMutualAidAmount);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel22);
 
-             this.pnlPayInfo.Controls.Add(this.tbBalc);
 
-             this.pnlPayInfo.Controls.Add(this.tbHospitalPartAmount);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel23);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel24);
 
-             this.pnlPayInfo.Controls.Add(this.tbPsnCashPay);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel13);
 
-             this.pnlPayInfo.Controls.Add(this.tbPsnAccountPaySummat);
 
-             this.pnlPayInfo.Controls.Add(this.tbPsnSummat);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel14);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel15);
 
-             this.pnlPayInfo.Controls.Add(this.tbFundPaySummat);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel16);
 
-             this.pnlPayInfo.Controls.Add(this.tbOtherPay);
 
-             this.pnlPayInfo.Controls.Add(this.tbAssian);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel17);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel18);
 
-             this.pnlPayInfo.Controls.Add(this.tbWorkerLargeMedical);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel7);
 
-             this.pnlPayInfo.Controls.Add(this.tbHifmi_pay);
 
-             this.pnlPayInfo.Controls.Add(this.tbHifes_pay);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel8);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel9);
 
-             this.pnlPayInfo.Controls.Add(this.tbCvlserv_pay);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel10);
 
-             this.pnlPayInfo.Controls.Add(this.tbInsuFundPayRito);
 
-             this.pnlPayInfo.Controls.Add(this.tbInsuFundPay);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel11);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel12);
 
-             this.pnlPayInfo.Controls.Add(this.tbActualPayDeduLine);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel4);
 
-             this.pnlPayInfo.Controls.Add(this.tbInScopyAmount);
 
-             this.pnlPayInfo.Controls.Add(this.tbPreSelfPay);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel5);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel6);
 
-             this.pnlPayInfo.Controls.Add(this.tbOverLimitOwnPay);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel3);
 
-             this.pnlPayInfo.Controls.Add(this.tbFullOwnPay);
 
-             this.pnlPayInfo.Controls.Add(this.tbSumamt);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel2);
 
-             this.pnlPayInfo.Controls.Add(this.uiLabel1);
 
-             this.pnlPayInfo.Dock = System.Windows.Forms.DockStyle.Fill;
 
-             this.pnlPayInfo.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.pnlPayInfo.Location = new System.Drawing.Point(0, 121);
 
-             this.pnlPayInfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.pnlPayInfo.MinimumSize = new System.Drawing.Size(1, 1);
 
-             this.pnlPayInfo.Name = "pnlPayInfo";
 
-             this.pnlPayInfo.Size = new System.Drawing.Size(988, 271);
 
-             this.pnlPayInfo.TabIndex = 1;
 
-             this.pnlPayInfo.Text = null;
 
-             this.pnlPayInfo.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
 
-             this.pnlPayInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             this.pnlPayInfo.Click += new System.EventHandler(this.pnlPayInfo_Click);
 
-             // 
 
-             // tbWltpayAmt
 
-             // 
 
-             this.tbWltpayAmt.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbWltpayAmt.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbWltpayAmt.Location = new System.Drawing.Point(609, 225);
 
-             this.tbWltpayAmt.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbWltpayAmt.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbWltpayAmt.Name = "tbWltpayAmt";
 
-             this.tbWltpayAmt.ShowText = false;
 
-             this.tbWltpayAmt.Size = new System.Drawing.Size(100, 29);
 
-             this.tbWltpayAmt.TabIndex = 45;
 
-             this.tbWltpayAmt.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbWltpayAmt.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel32
 
-             // 
 
-             this.uiLabel32.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel32.Location = new System.Drawing.Point(502, 228);
 
-             this.uiLabel32.Name = "uiLabel32";
 
-             this.uiLabel32.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel32.TabIndex = 44;
 
-             this.uiLabel32.Text = "医保钱包支付";
 
-             this.uiLabel32.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel32.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbownpayhosppart
 
-             // 
 
-             this.tbownpayhosppart.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbownpayhosppart.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbownpayhosppart.Location = new System.Drawing.Point(381, 225);
 
-             this.tbownpayhosppart.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbownpayhosppart.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbownpayhosppart.Name = "tbownpayhosppart";
 
-             this.tbownpayhosppart.ShowText = false;
 
-             this.tbownpayhosppart.Size = new System.Drawing.Size(100, 29);
 
-             this.tbownpayhosppart.TabIndex = 43;
 
-             this.tbownpayhosppart.Text = "0";
 
-             this.tbownpayhosppart.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbownpayhosppart.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel31
 
-             // 
 
-             this.uiLabel31.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel31.Location = new System.Drawing.Point(248, 228);
 
-             this.uiLabel31.Name = "uiLabel31";
 
-             this.uiLabel31.Size = new System.Drawing.Size(131, 23);
 
-             this.uiLabel31.TabIndex = 42;
 
-             this.uiLabel31.Text = "自费中医院负担部分";
 
-             this.uiLabel31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel31.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbAccountMutualAidAmount
 
-             // 
 
-             this.tbAccountMutualAidAmount.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbAccountMutualAidAmount.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbAccountMutualAidAmount.Location = new System.Drawing.Point(877, 105);
 
-             this.tbAccountMutualAidAmount.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbAccountMutualAidAmount.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbAccountMutualAidAmount.Name = "tbAccountMutualAidAmount";
 
-             this.tbAccountMutualAidAmount.ShowText = false;
 
-             this.tbAccountMutualAidAmount.Size = new System.Drawing.Size(100, 27);
 
-             this.tbAccountMutualAidAmount.TabIndex = 41;
 
-             this.tbAccountMutualAidAmount.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbAccountMutualAidAmount.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel22
 
-             // 
 
-             this.uiLabel22.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel22.Location = new System.Drawing.Point(730, 107);
 
-             this.uiLabel22.Name = "uiLabel22";
 
-             this.uiLabel22.Size = new System.Drawing.Size(112, 23);
 
-             this.uiLabel22.TabIndex = 40;
 
-             this.uiLabel22.Text = "个人账户共济";
 
-             this.uiLabel22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel22.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbBalc
 
-             // 
 
-             this.tbBalc.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbBalc.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbBalc.Location = new System.Drawing.Point(877, 62);
 
-             this.tbBalc.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbBalc.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbBalc.Name = "tbBalc";
 
-             this.tbBalc.ShowText = false;
 
-             this.tbBalc.Size = new System.Drawing.Size(100, 27);
 
-             this.tbBalc.TabIndex = 39;
 
-             this.tbBalc.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbBalc.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbHospitalPartAmount
 
-             // 
 
-             this.tbHospitalPartAmount.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbHospitalPartAmount.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbHospitalPartAmount.Location = new System.Drawing.Point(877, 19);
 
-             this.tbHospitalPartAmount.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbHospitalPartAmount.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbHospitalPartAmount.Name = "tbHospitalPartAmount";
 
-             this.tbHospitalPartAmount.ShowText = false;
 
-             this.tbHospitalPartAmount.Size = new System.Drawing.Size(100, 27);
 
-             this.tbHospitalPartAmount.TabIndex = 38;
 
-             this.tbHospitalPartAmount.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbHospitalPartAmount.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel23
 
-             // 
 
-             this.uiLabel23.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel23.Location = new System.Drawing.Point(730, 65);
 
-             this.uiLabel23.Name = "uiLabel23";
 
-             this.uiLabel23.Size = new System.Drawing.Size(112, 23);
 
-             this.uiLabel23.TabIndex = 37;
 
-             this.uiLabel23.Text = "医保账户余额";
 
-             this.uiLabel23.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel23.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel24
 
-             // 
 
-             this.uiLabel24.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel24.Location = new System.Drawing.Point(730, 23);
 
-             this.uiLabel24.Name = "uiLabel24";
 
-             this.uiLabel24.Size = new System.Drawing.Size(112, 23);
 
-             this.uiLabel24.TabIndex = 36;
 
-             this.uiLabel24.Text = "医院负担金额";
 
-             this.uiLabel24.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel24.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbPsnCashPay
 
-             // 
 
-             this.tbPsnCashPay.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbPsnCashPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbPsnCashPay.Location = new System.Drawing.Point(609, 185);
 
-             this.tbPsnCashPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbPsnCashPay.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbPsnCashPay.Name = "tbPsnCashPay";
 
-             this.tbPsnCashPay.ShowText = false;
 
-             this.tbPsnCashPay.Size = new System.Drawing.Size(100, 29);
 
-             this.tbPsnCashPay.TabIndex = 35;
 
-             this.tbPsnCashPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbPsnCashPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel13
 
-             // 
 
-             this.uiLabel13.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel13.Location = new System.Drawing.Point(502, 186);
 
-             this.uiLabel13.Name = "uiLabel13";
 
-             this.uiLabel13.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel13.TabIndex = 34;
 
-             this.uiLabel13.Text = "个人现金支付";
 
-             this.uiLabel13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel13.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbPsnAccountPaySummat
 
-             // 
 
-             this.tbPsnAccountPaySummat.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbPsnAccountPaySummat.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbPsnAccountPaySummat.Location = new System.Drawing.Point(609, 144);
 
-             this.tbPsnAccountPaySummat.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbPsnAccountPaySummat.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbPsnAccountPaySummat.Name = "tbPsnAccountPaySummat";
 
-             this.tbPsnAccountPaySummat.ShowText = false;
 
-             this.tbPsnAccountPaySummat.Size = new System.Drawing.Size(100, 29);
 
-             this.tbPsnAccountPaySummat.TabIndex = 33;
 
-             this.tbPsnAccountPaySummat.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbPsnAccountPaySummat.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbPsnSummat
 
-             // 
 
-             this.tbPsnSummat.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbPsnSummat.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbPsnSummat.Location = new System.Drawing.Point(609, 103);
 
-             this.tbPsnSummat.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbPsnSummat.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbPsnSummat.Name = "tbPsnSummat";
 
-             this.tbPsnSummat.ShowText = false;
 
-             this.tbPsnSummat.Size = new System.Drawing.Size(100, 29);
 
-             this.tbPsnSummat.TabIndex = 32;
 
-             this.tbPsnSummat.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbPsnSummat.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel14
 
-             // 
 
-             this.uiLabel14.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel14.Location = new System.Drawing.Point(502, 145);
 
-             this.uiLabel14.Name = "uiLabel14";
 
-             this.uiLabel14.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel14.TabIndex = 31;
 
-             this.uiLabel14.Text = "个人账户支付";
 
-             this.uiLabel14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel14.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel15
 
-             // 
 
-             this.uiLabel15.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel15.Location = new System.Drawing.Point(502, 104);
 
-             this.uiLabel15.Name = "uiLabel15";
 
-             this.uiLabel15.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel15.TabIndex = 30;
 
-             this.uiLabel15.Text = "个人负担总金额";
 
-             this.uiLabel15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel15.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbFundPaySummat
 
-             // 
 
-             this.tbFundPaySummat.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbFundPaySummat.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbFundPaySummat.Location = new System.Drawing.Point(609, 62);
 
-             this.tbFundPaySummat.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbFundPaySummat.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbFundPaySummat.Name = "tbFundPaySummat";
 
-             this.tbFundPaySummat.ShowText = false;
 
-             this.tbFundPaySummat.Size = new System.Drawing.Size(100, 29);
 
-             this.tbFundPaySummat.TabIndex = 29;
 
-             this.tbFundPaySummat.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbFundPaySummat.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel16
 
-             // 
 
-             this.uiLabel16.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel16.Location = new System.Drawing.Point(502, 63);
 
-             this.uiLabel16.Name = "uiLabel16";
 
-             this.uiLabel16.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel16.TabIndex = 28;
 
-             this.uiLabel16.Text = "基金支付总额";
 
-             this.uiLabel16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel16.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbOtherPay
 
-             // 
 
-             this.tbOtherPay.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbOtherPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbOtherPay.Location = new System.Drawing.Point(128, 183);
 
-             this.tbOtherPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbOtherPay.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbOtherPay.Name = "tbOtherPay";
 
-             this.tbOtherPay.ShowText = false;
 
-             this.tbOtherPay.Size = new System.Drawing.Size(100, 29);
 
-             this.tbOtherPay.TabIndex = 27;
 
-             this.tbOtherPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbOtherPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbAssian
 
-             // 
 
-             this.tbAssian.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbAssian.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbAssian.Location = new System.Drawing.Point(609, 19);
 
-             this.tbAssian.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbAssian.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbAssian.Name = "tbAssian";
 
-             this.tbAssian.ShowText = false;
 
-             this.tbAssian.Size = new System.Drawing.Size(100, 29);
 
-             this.tbAssian.TabIndex = 26;
 
-             this.tbAssian.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbAssian.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel17
 
-             // 
 
-             this.uiLabel17.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel17.Location = new System.Drawing.Point(21, 187);
 
-             this.uiLabel17.Name = "uiLabel17";
 
-             this.uiLabel17.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel17.TabIndex = 25;
 
-             this.uiLabel17.Text = "其他支出";
 
-             this.uiLabel17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel17.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel18
 
-             // 
 
-             this.uiLabel18.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel18.Location = new System.Drawing.Point(502, 22);
 
-             this.uiLabel18.Name = "uiLabel18";
 
-             this.uiLabel18.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel18.TabIndex = 24;
 
-             this.uiLabel18.Text = "医疗救助";
 
-             this.uiLabel18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel18.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbWorkerLargeMedical
 
-             // 
 
-             this.tbWorkerLargeMedical.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbWorkerLargeMedical.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbWorkerLargeMedical.Location = new System.Drawing.Point(381, 185);
 
-             this.tbWorkerLargeMedical.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbWorkerLargeMedical.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbWorkerLargeMedical.Name = "tbWorkerLargeMedical";
 
-             this.tbWorkerLargeMedical.ShowText = false;
 
-             this.tbWorkerLargeMedical.Size = new System.Drawing.Size(100, 29);
 
-             this.tbWorkerLargeMedical.TabIndex = 23;
 
-             this.tbWorkerLargeMedical.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbWorkerLargeMedical.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel7
 
-             // 
 
-             this.uiLabel7.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel7.Location = new System.Drawing.Point(248, 187);
 
-             this.uiLabel7.Name = "uiLabel7";
 
-             this.uiLabel7.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel7.TabIndex = 22;
 
-             this.uiLabel7.Text = "职工大额医疗";
 
-             this.uiLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbHifmi_pay
 
-             // 
 
-             this.tbHifmi_pay.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbHifmi_pay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbHifmi_pay.Location = new System.Drawing.Point(381, 144);
 
-             this.tbHifmi_pay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbHifmi_pay.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbHifmi_pay.Name = "tbHifmi_pay";
 
-             this.tbHifmi_pay.ShowText = false;
 
-             this.tbHifmi_pay.Size = new System.Drawing.Size(100, 29);
 
-             this.tbHifmi_pay.TabIndex = 21;
 
-             this.tbHifmi_pay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbHifmi_pay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbHifes_pay
 
-             // 
 
-             this.tbHifes_pay.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbHifes_pay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbHifes_pay.Location = new System.Drawing.Point(381, 103);
 
-             this.tbHifes_pay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbHifes_pay.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbHifes_pay.Name = "tbHifes_pay";
 
-             this.tbHifes_pay.ShowText = false;
 
-             this.tbHifes_pay.Size = new System.Drawing.Size(100, 29);
 
-             this.tbHifes_pay.TabIndex = 20;
 
-             this.tbHifes_pay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbHifes_pay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel8
 
-             // 
 
-             this.uiLabel8.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel8.Location = new System.Drawing.Point(248, 148);
 
-             this.uiLabel8.Name = "uiLabel8";
 
-             this.uiLabel8.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel8.TabIndex = 19;
 
-             this.uiLabel8.Text = "居民大病保险";
 
-             this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel9
 
-             // 
 
-             this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel9.Location = new System.Drawing.Point(248, 107);
 
-             this.uiLabel9.Name = "uiLabel9";
 
-             this.uiLabel9.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel9.TabIndex = 18;
 
-             this.uiLabel9.Text = "企业补充医疗";
 
-             this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbCvlserv_pay
 
-             // 
 
-             this.tbCvlserv_pay.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbCvlserv_pay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbCvlserv_pay.Location = new System.Drawing.Point(381, 62);
 
-             this.tbCvlserv_pay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbCvlserv_pay.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbCvlserv_pay.Name = "tbCvlserv_pay";
 
-             this.tbCvlserv_pay.ShowText = false;
 
-             this.tbCvlserv_pay.Size = new System.Drawing.Size(100, 29);
 
-             this.tbCvlserv_pay.TabIndex = 17;
 
-             this.tbCvlserv_pay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbCvlserv_pay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel10
 
-             // 
 
-             this.uiLabel10.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel10.Location = new System.Drawing.Point(248, 66);
 
-             this.uiLabel10.Name = "uiLabel10";
 
-             this.uiLabel10.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel10.TabIndex = 16;
 
-             this.uiLabel10.Text = "公务员医疗补助";
 
-             this.uiLabel10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbInsuFundPayRito
 
-             // 
 
-             this.tbInsuFundPayRito.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbInsuFundPayRito.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbInsuFundPayRito.Location = new System.Drawing.Point(877, 148);
 
-             this.tbInsuFundPayRito.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbInsuFundPayRito.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbInsuFundPayRito.Name = "tbInsuFundPayRito";
 
-             this.tbInsuFundPayRito.ShowText = false;
 
-             this.tbInsuFundPayRito.Size = new System.Drawing.Size(100, 27);
 
-             this.tbInsuFundPayRito.TabIndex = 15;
 
-             this.tbInsuFundPayRito.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbInsuFundPayRito.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbInsuFundPay
 
-             // 
 
-             this.tbInsuFundPay.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbInsuFundPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbInsuFundPay.Location = new System.Drawing.Point(381, 19);
 
-             this.tbInsuFundPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbInsuFundPay.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbInsuFundPay.Name = "tbInsuFundPay";
 
-             this.tbInsuFundPay.ShowText = false;
 
-             this.tbInsuFundPay.Size = new System.Drawing.Size(100, 29);
 
-             this.tbInsuFundPay.TabIndex = 14;
 
-             this.tbInsuFundPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbInsuFundPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel11
 
-             // 
 
-             this.uiLabel11.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel11.Location = new System.Drawing.Point(730, 149);
 
-             this.uiLabel11.Name = "uiLabel11";
 
-             this.uiLabel11.Size = new System.Drawing.Size(146, 23);
 
-             this.uiLabel11.TabIndex = 13;
 
-             this.uiLabel11.Text = "统筹基金支付比例";
 
-             this.uiLabel11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel11.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel12
 
-             // 
 
-             this.uiLabel12.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel12.Location = new System.Drawing.Point(248, 25);
 
-             this.uiLabel12.Name = "uiLabel12";
 
-             this.uiLabel12.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel12.TabIndex = 12;
 
-             this.uiLabel12.Text = "统筹基金支出";
 
-             this.uiLabel12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel12.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbActualPayDeduLine
 
-             // 
 
-             this.tbActualPayDeduLine.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbActualPayDeduLine.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbActualPayDeduLine.Location = new System.Drawing.Point(128, 224);
 
-             this.tbActualPayDeduLine.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbActualPayDeduLine.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbActualPayDeduLine.Name = "tbActualPayDeduLine";
 
-             this.tbActualPayDeduLine.ShowText = false;
 
-             this.tbActualPayDeduLine.Size = new System.Drawing.Size(100, 29);
 
-             this.tbActualPayDeduLine.TabIndex = 11;
 
-             this.tbActualPayDeduLine.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbActualPayDeduLine.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel4
 
-             // 
 
-             this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel4.Location = new System.Drawing.Point(21, 228);
 
-             this.uiLabel4.Name = "uiLabel4";
 
-             this.uiLabel4.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel4.TabIndex = 10;
 
-             this.uiLabel4.Text = "实际支付起付线";
 
-             this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbInScopyAmount
 
-             // 
 
-             this.tbInScopyAmount.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbInScopyAmount.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbInScopyAmount.Location = new System.Drawing.Point(877, 191);
 
-             this.tbInScopyAmount.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbInScopyAmount.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbInScopyAmount.Name = "tbInScopyAmount";
 
-             this.tbInScopyAmount.ShowText = false;
 
-             this.tbInScopyAmount.Size = new System.Drawing.Size(100, 27);
 
-             this.tbInScopyAmount.TabIndex = 9;
 
-             this.tbInScopyAmount.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbInScopyAmount.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbPreSelfPay
 
-             // 
 
-             this.tbPreSelfPay.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbPreSelfPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbPreSelfPay.Location = new System.Drawing.Point(128, 142);
 
-             this.tbPreSelfPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbPreSelfPay.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbPreSelfPay.Name = "tbPreSelfPay";
 
-             this.tbPreSelfPay.ShowText = false;
 
-             this.tbPreSelfPay.Size = new System.Drawing.Size(100, 29);
 
-             this.tbPreSelfPay.TabIndex = 8;
 
-             this.tbPreSelfPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbPreSelfPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel5
 
-             // 
 
-             this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel5.Location = new System.Drawing.Point(730, 191);
 
-             this.uiLabel5.Name = "uiLabel5";
 
-             this.uiLabel5.Size = new System.Drawing.Size(146, 23);
 
-             this.uiLabel5.TabIndex = 7;
 
-             this.uiLabel5.Text = "符合政策范围金额";
 
-             this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel6
 
-             // 
 
-             this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel6.Location = new System.Drawing.Point(21, 146);
 
-             this.uiLabel6.Name = "uiLabel6";
 
-             this.uiLabel6.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel6.TabIndex = 6;
 
-             this.uiLabel6.Text = "先行自付金额";
 
-             this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbOverLimitOwnPay
 
-             // 
 
-             this.tbOverLimitOwnPay.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbOverLimitOwnPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbOverLimitOwnPay.Location = new System.Drawing.Point(128, 101);
 
-             this.tbOverLimitOwnPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbOverLimitOwnPay.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbOverLimitOwnPay.Name = "tbOverLimitOwnPay";
 
-             this.tbOverLimitOwnPay.ShowText = false;
 
-             this.tbOverLimitOwnPay.Size = new System.Drawing.Size(100, 29);
 
-             this.tbOverLimitOwnPay.TabIndex = 5;
 
-             this.tbOverLimitOwnPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbOverLimitOwnPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel3
 
-             // 
 
-             this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel3.Location = new System.Drawing.Point(21, 105);
 
-             this.uiLabel3.Name = "uiLabel3";
 
-             this.uiLabel3.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel3.TabIndex = 4;
 
-             this.uiLabel3.Text = "超限价自费费用";
 
-             this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbFullOwnPay
 
-             // 
 
-             this.tbFullOwnPay.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbFullOwnPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbFullOwnPay.Location = new System.Drawing.Point(128, 60);
 
-             this.tbFullOwnPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbFullOwnPay.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbFullOwnPay.Name = "tbFullOwnPay";
 
-             this.tbFullOwnPay.ShowText = false;
 
-             this.tbFullOwnPay.Size = new System.Drawing.Size(100, 29);
 
-             this.tbFullOwnPay.TabIndex = 3;
 
-             this.tbFullOwnPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbFullOwnPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbSumamt
 
-             // 
 
-             this.tbSumamt.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbSumamt.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbSumamt.Location = new System.Drawing.Point(128, 19);
 
-             this.tbSumamt.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbSumamt.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbSumamt.Name = "tbSumamt";
 
-             this.tbSumamt.ShowText = false;
 
-             this.tbSumamt.Size = new System.Drawing.Size(100, 29);
 
-             this.tbSumamt.TabIndex = 2;
 
-             this.tbSumamt.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbSumamt.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel2
 
-             // 
 
-             this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel2.Location = new System.Drawing.Point(21, 64);
 
-             this.uiLabel2.Name = "uiLabel2";
 
-             this.uiLabel2.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel2.TabIndex = 1;
 
-             this.uiLabel2.Text = "全自费金额";
 
-             this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel1
 
-             // 
 
-             this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel1.Location = new System.Drawing.Point(21, 23);
 
-             this.uiLabel1.Name = "uiLabel1";
 
-             this.uiLabel1.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel1.TabIndex = 0;
 
-             this.uiLabel1.Text = "医疗费总额";
 
-             this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // pnlSetlBaseInfo
 
-             // 
 
-             this.pnlSetlBaseInfo.Controls.Add(this.tbClearingType);
 
-             this.pnlSetlBaseInfo.Controls.Add(this.tbClearingWay);
 
-             this.pnlSetlBaseInfo.Controls.Add(this.uiLabel29);
 
-             this.pnlSetlBaseInfo.Controls.Add(this.uiLabel19);
 
-             this.pnlSetlBaseInfo.Controls.Add(this.tbPersonType);
 
-             this.pnlSetlBaseInfo.Controls.Add(this.tbInsuType);
 
-             this.pnlSetlBaseInfo.Controls.Add(this.uiLabel27);
 
-             this.pnlSetlBaseInfo.Controls.Add(this.uiLabel28);
 
-             this.pnlSetlBaseInfo.Controls.Add(this.tbPsnCertNO);
 
-             this.pnlSetlBaseInfo.Controls.Add(this.tbPsnCertType);
 
-             this.pnlSetlBaseInfo.Controls.Add(this.uiLabel25);
 
-             this.pnlSetlBaseInfo.Controls.Add(this.uiLabel26);
 
-             this.pnlSetlBaseInfo.Controls.Add(this.tbMedType);
 
-             this.pnlSetlBaseInfo.Controls.Add(this.tbAdmCertType);
 
-             this.pnlSetlBaseInfo.Controls.Add(this.uiLabel20);
 
-             this.pnlSetlBaseInfo.Controls.Add(this.uiLabel21);
 
-             this.pnlSetlBaseInfo.Dock = System.Windows.Forms.DockStyle.Top;
 
-             this.pnlSetlBaseInfo.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.pnlSetlBaseInfo.Location = new System.Drawing.Point(0, 32);
 
-             this.pnlSetlBaseInfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.pnlSetlBaseInfo.MinimumSize = new System.Drawing.Size(1, 1);
 
-             this.pnlSetlBaseInfo.Name = "pnlSetlBaseInfo";
 
-             this.pnlSetlBaseInfo.Size = new System.Drawing.Size(988, 89);
 
-             this.pnlSetlBaseInfo.TabIndex = 0;
 
-             this.pnlSetlBaseInfo.Text = null;
 
-             this.pnlSetlBaseInfo.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
 
-             this.pnlSetlBaseInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbClearingType
 
-             // 
 
-             this.tbClearingType.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbClearingType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbClearingType.Location = new System.Drawing.Point(857, 50);
 
-             this.tbClearingType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbClearingType.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbClearingType.Name = "tbClearingType";
 
-             this.tbClearingType.ShowText = false;
 
-             this.tbClearingType.Size = new System.Drawing.Size(119, 27);
 
-             this.tbClearingType.TabIndex = 61;
 
-             this.tbClearingType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbClearingType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbClearingWay
 
-             // 
 
-             this.tbClearingWay.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbClearingWay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbClearingWay.Location = new System.Drawing.Point(857, 13);
 
-             this.tbClearingWay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbClearingWay.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbClearingWay.Name = "tbClearingWay";
 
-             this.tbClearingWay.ShowText = false;
 
-             this.tbClearingWay.Size = new System.Drawing.Size(119, 27);
 
-             this.tbClearingWay.TabIndex = 60;
 
-             this.tbClearingWay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbClearingWay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel29
 
-             // 
 
-             this.uiLabel29.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel29.Location = new System.Drawing.Point(785, 49);
 
-             this.uiLabel29.Name = "uiLabel29";
 
-             this.uiLabel29.Size = new System.Drawing.Size(62, 23);
 
-             this.uiLabel29.TabIndex = 62;
 
-             this.uiLabel29.Text = "清算类别";
 
-             this.uiLabel29.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel29.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel19
 
-             // 
 
-             this.uiLabel19.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel19.Location = new System.Drawing.Point(785, 14);
 
-             this.uiLabel19.Name = "uiLabel19";
 
-             this.uiLabel19.Size = new System.Drawing.Size(62, 23);
 
-             this.uiLabel19.TabIndex = 60;
 
-             this.uiLabel19.Text = "清算方式";
 
-             this.uiLabel19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel19.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbPersonType
 
-             // 
 
-             this.tbPersonType.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbPersonType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbPersonType.Location = new System.Drawing.Point(601, 50);
 
-             this.tbPersonType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbPersonType.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbPersonType.Name = "tbPersonType";
 
-             this.tbPersonType.ShowText = false;
 
-             this.tbPersonType.Size = new System.Drawing.Size(163, 25);
 
-             this.tbPersonType.TabIndex = 57;
 
-             this.tbPersonType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbPersonType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbInsuType
 
-             // 
 
-             this.tbInsuType.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbInsuType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbInsuType.Location = new System.Drawing.Point(601, 12);
 
-             this.tbInsuType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbInsuType.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbInsuType.Name = "tbInsuType";
 
-             this.tbInsuType.ShowText = false;
 
-             this.tbInsuType.Size = new System.Drawing.Size(163, 25);
 
-             this.tbInsuType.TabIndex = 56;
 
-             this.tbInsuType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbInsuType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel27
 
-             // 
 
-             this.uiLabel27.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel27.Location = new System.Drawing.Point(530, 49);
 
-             this.uiLabel27.Name = "uiLabel27";
 
-             this.uiLabel27.Size = new System.Drawing.Size(65, 23);
 
-             this.uiLabel27.TabIndex = 55;
 
-             this.uiLabel27.Text = "人员类别";
 
-             this.uiLabel27.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel27.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel28
 
-             // 
 
-             this.uiLabel28.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel28.Location = new System.Drawing.Point(530, 14);
 
-             this.uiLabel28.Name = "uiLabel28";
 
-             this.uiLabel28.Size = new System.Drawing.Size(65, 23);
 
-             this.uiLabel28.TabIndex = 54;
 
-             this.uiLabel28.Text = "险种类型";
 
-             this.uiLabel28.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel28.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbPsnCertNO
 
-             // 
 
-             this.tbPsnCertNO.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbPsnCertNO.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbPsnCertNO.Location = new System.Drawing.Point(313, 50);
 
-             this.tbPsnCertNO.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbPsnCertNO.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbPsnCertNO.Name = "tbPsnCertNO";
 
-             this.tbPsnCertNO.ShowText = false;
 
-             this.tbPsnCertNO.Size = new System.Drawing.Size(192, 25);
 
-             this.tbPsnCertNO.TabIndex = 53;
 
-             this.tbPsnCertNO.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbPsnCertNO.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbPsnCertType
 
-             // 
 
-             this.tbPsnCertType.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbPsnCertType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbPsnCertType.Location = new System.Drawing.Point(314, 12);
 
-             this.tbPsnCertType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbPsnCertType.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbPsnCertType.Name = "tbPsnCertType";
 
-             this.tbPsnCertType.ShowText = false;
 
-             this.tbPsnCertType.Size = new System.Drawing.Size(191, 27);
 
-             this.tbPsnCertType.TabIndex = 52;
 
-             this.tbPsnCertType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbPsnCertType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel25
 
-             // 
 
-             this.uiLabel25.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel25.Location = new System.Drawing.Point(242, 49);
 
-             this.uiLabel25.Name = "uiLabel25";
 
-             this.uiLabel25.Size = new System.Drawing.Size(69, 23);
 
-             this.uiLabel25.TabIndex = 51;
 
-             this.uiLabel25.Text = "证件号码";
 
-             this.uiLabel25.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel25.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel26
 
-             // 
 
-             this.uiLabel26.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel26.Location = new System.Drawing.Point(242, 14);
 
-             this.uiLabel26.Name = "uiLabel26";
 
-             this.uiLabel26.Size = new System.Drawing.Size(69, 23);
 
-             this.uiLabel26.TabIndex = 50;
 
-             this.uiLabel26.Text = "证件类型";
 
-             this.uiLabel26.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel26.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbMedType
 
-             // 
 
-             this.tbMedType.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbMedType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbMedType.Location = new System.Drawing.Point(91, 50);
 
-             this.tbMedType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbMedType.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbMedType.Name = "tbMedType";
 
-             this.tbMedType.ShowText = false;
 
-             this.tbMedType.Size = new System.Drawing.Size(132, 25);
 
-             this.tbMedType.TabIndex = 49;
 
-             this.tbMedType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbMedType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // tbAdmCertType
 
-             // 
 
-             this.tbAdmCertType.Cursor = System.Windows.Forms.Cursors.IBeam;
 
-             this.tbAdmCertType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.tbAdmCertType.Location = new System.Drawing.Point(92, 12);
 
-             this.tbAdmCertType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.tbAdmCertType.MinimumSize = new System.Drawing.Size(1, 16);
 
-             this.tbAdmCertType.Name = "tbAdmCertType";
 
-             this.tbAdmCertType.ShowText = false;
 
-             this.tbAdmCertType.Size = new System.Drawing.Size(132, 27);
 
-             this.tbAdmCertType.TabIndex = 48;
 
-             this.tbAdmCertType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.tbAdmCertType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel20
 
-             // 
 
-             this.uiLabel20.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel20.Location = new System.Drawing.Point(22, 49);
 
-             this.uiLabel20.Name = "uiLabel20";
 
-             this.uiLabel20.Size = new System.Drawing.Size(64, 23);
 
-             this.uiLabel20.TabIndex = 47;
 
-             this.uiLabel20.Text = "医疗类别";
 
-             this.uiLabel20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel20.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel21
 
-             // 
 
-             this.uiLabel21.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel21.Location = new System.Drawing.Point(22, 14);
 
-             this.uiLabel21.Name = "uiLabel21";
 
-             this.uiLabel21.Size = new System.Drawing.Size(64, 23);
 
-             this.uiLabel21.TabIndex = 46;
 
-             this.uiLabel21.Text = "凭证类型";
 
-             this.uiLabel21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel21.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // uiLabel30
 
-             // 
 
-             this.uiLabel30.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.uiLabel30.Location = new System.Drawing.Point(716, 34);
 
-             this.uiLabel30.Name = "uiLabel30";
 
-             this.uiLabel30.Size = new System.Drawing.Size(100, 23);
 
-             this.uiLabel30.TabIndex = 58;
 
-             this.uiLabel30.Text = "医疗费总额";
 
-             this.uiLabel30.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
 
-             this.uiLabel30.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // gbSetldetail
 
-             // 
 
-             this.gbSetldetail.Controls.Add(this.dgvSetlDetail);
 
-             this.gbSetldetail.Dock = System.Windows.Forms.DockStyle.Bottom;
 
-             this.gbSetldetail.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.gbSetldetail.Location = new System.Drawing.Point(0, 392);
 
-             this.gbSetldetail.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 
-             this.gbSetldetail.MinimumSize = new System.Drawing.Size(1, 1);
 
-             this.gbSetldetail.Name = "gbSetldetail";
 
-             this.gbSetldetail.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
 
-             this.gbSetldetail.Size = new System.Drawing.Size(988, 152);
 
-             this.gbSetldetail.TabIndex = 1;
 
-             this.gbSetldetail.Text = "结算基金分项信息";
 
-             this.gbSetldetail.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
 
-             this.gbSetldetail.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // dgvSetlDetail
 
-             // 
 
-             this.dgvSetlDetail.AllowUserToAddRows = false;
 
-             dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
 
-             this.dgvSetlDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
 
-             this.dgvSetlDetail.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
 
-             this.dgvSetlDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
 
-             dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
 
-             dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
 
-             dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
 
-             dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
 
-             dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
 
-             dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
 
-             this.dgvSetlDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
 
-             this.dgvSetlDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
 
-             dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
 
-             dataGridViewCellStyle3.BackColor = System.Drawing.Color.White;
 
-             dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
 
-             dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
 
-             dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
 
-             dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
 
-             this.dgvSetlDetail.DefaultCellStyle = dataGridViewCellStyle3;
 
-             this.dgvSetlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
 
-             this.dgvSetlDetail.EnableHeadersVisualStyles = false;
 
-             this.dgvSetlDetail.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             this.dgvSetlDetail.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
 
-             this.dgvSetlDetail.Location = new System.Drawing.Point(0, 32);
 
-             this.dgvSetlDetail.Name = "dgvSetlDetail";
 
-             dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
 
-             dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
 
-             dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
 
-             dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
 
-             dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
 
-             dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
 
-             this.dgvSetlDetail.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
 
-             this.dgvSetlDetail.RowHeadersWidth = 51;
 
-             dataGridViewCellStyle5.BackColor = System.Drawing.Color.White;
 
-             dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 
-             dataGridViewCellStyle5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
 
-             dataGridViewCellStyle5.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
 
-             dataGridViewCellStyle5.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
 
-             this.dgvSetlDetail.RowsDefaultCellStyle = dataGridViewCellStyle5;
 
-             this.dgvSetlDetail.RowTemplate.Height = 23;
 
-             this.dgvSetlDetail.SelectedIndex = -1;
 
-             this.dgvSetlDetail.Size = new System.Drawing.Size(988, 120);
 
-             this.dgvSetlDetail.TabIndex = 1;
 
-             this.dgvSetlDetail.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
 
-             // 
 
-             // SettlementInfo
 
-             // 
 
-             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
 
-             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 
-             this.ClientSize = new System.Drawing.Size(988, 609);
 
-             this.Controls.Add(this.pnlClient);
 
-             this.Controls.Add(this.pnlBottom);
 
-             this.Name = "SettlementInfo";
 
-             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
 
-             this.Text = "患者结算信息一览表";
 
-             this.pnlBottom.ResumeLayout(false);
 
-             this.pnlClient.ResumeLayout(false);
 
-             this.gbSetlinfo.ResumeLayout(false);
 
-             this.pnlPayInfo.ResumeLayout(false);
 
-             this.pnlSetlBaseInfo.ResumeLayout(false);
 
-             this.gbSetldetail.ResumeLayout(false);
 
-             ((System.ComponentModel.ISupportInitialize)(this.dgvSetlDetail)).EndInit();
 
-             this.ResumeLayout(false);
 
-         }
 
-         #endregion
 
-         private Sunny.UI.UIPanel pnlBottom;
 
-         private Sunny.UI.UIPanel pnlClient;
 
-         private Sunny.UI.UIGroupBox gbSetlinfo;
 
-         private Sunny.UI.UIGroupBox gbSetldetail;
 
-         private Sunny.UI.UIDataGridView dgvSetlDetail;
 
-         private Sunny.UI.UIPanel pnlPayInfo;
 
-         private Sunny.UI.UITextBox tbOverLimitOwnPay;
 
-         private Sunny.UI.UILabel uiLabel3;
 
-         private Sunny.UI.UITextBox tbFullOwnPay;
 
-         private Sunny.UI.UITextBox tbSumamt;
 
-         private Sunny.UI.UILabel uiLabel2;
 
-         private Sunny.UI.UILabel uiLabel1;
 
-         private Sunny.UI.UIPanel pnlSetlBaseInfo;
 
-         private Sunny.UI.UITextBox tbAccountMutualAidAmount;
 
-         private Sunny.UI.UILabel uiLabel22;
 
-         private Sunny.UI.UITextBox tbBalc;
 
-         private Sunny.UI.UITextBox tbHospitalPartAmount;
 
-         private Sunny.UI.UILabel uiLabel23;
 
-         private Sunny.UI.UILabel uiLabel24;
 
-         private Sunny.UI.UITextBox tbPsnCashPay;
 
-         private Sunny.UI.UILabel uiLabel13;
 
-         private Sunny.UI.UITextBox tbPsnAccountPaySummat;
 
-         private Sunny.UI.UITextBox tbPsnSummat;
 
-         private Sunny.UI.UILabel uiLabel14;
 
-         private Sunny.UI.UILabel uiLabel15;
 
-         private Sunny.UI.UITextBox tbFundPaySummat;
 
-         private Sunny.UI.UILabel uiLabel16;
 
-         private Sunny.UI.UITextBox tbOtherPay;
 
-         private Sunny.UI.UITextBox tbAssian;
 
-         private Sunny.UI.UILabel uiLabel17;
 
-         private Sunny.UI.UILabel uiLabel18;
 
-         private Sunny.UI.UITextBox tbWorkerLargeMedical;
 
-         private Sunny.UI.UILabel uiLabel7;
 
-         private Sunny.UI.UITextBox tbHifmi_pay;
 
-         private Sunny.UI.UITextBox tbHifes_pay;
 
-         private Sunny.UI.UILabel uiLabel8;
 
-         private Sunny.UI.UILabel uiLabel9;
 
-         private Sunny.UI.UITextBox tbCvlserv_pay;
 
-         private Sunny.UI.UILabel uiLabel10;
 
-         private Sunny.UI.UITextBox tbInsuFundPayRito;
 
-         private Sunny.UI.UITextBox tbInsuFundPay;
 
-         private Sunny.UI.UILabel uiLabel11;
 
-         private Sunny.UI.UILabel uiLabel12;
 
-         private Sunny.UI.UITextBox tbActualPayDeduLine;
 
-         private Sunny.UI.UILabel uiLabel4;
 
-         private Sunny.UI.UITextBox tbInScopyAmount;
 
-         private Sunny.UI.UITextBox tbPreSelfPay;
 
-         private Sunny.UI.UILabel uiLabel5;
 
-         private Sunny.UI.UILabel uiLabel6;
 
-         private Sunny.UI.UITextBox tbClearingWay;
 
-         private Sunny.UI.UILabel uiLabel19;
 
-         private Sunny.UI.UITextBox tbPersonType;
 
-         private Sunny.UI.UITextBox tbInsuType;
 
-         private Sunny.UI.UILabel uiLabel27;
 
-         private Sunny.UI.UILabel uiLabel28;
 
-         private Sunny.UI.UITextBox tbPsnCertNO;
 
-         private Sunny.UI.UITextBox tbPsnCertType;
 
-         private Sunny.UI.UILabel uiLabel25;
 
-         private Sunny.UI.UILabel uiLabel26;
 
-         private Sunny.UI.UITextBox tbMedType;
 
-         private Sunny.UI.UITextBox tbAdmCertType;
 
-         private Sunny.UI.UILabel uiLabel20;
 
-         private Sunny.UI.UILabel uiLabel21;
 
-         private Sunny.UI.UILabel uiLabel30;
 
-         private Sunny.UI.UIButton uiButton1;
 
-         private Sunny.UI.UITextBox tbClearingType;
 
-         private Sunny.UI.UILabel uiLabel29;
 
-         private Sunny.UI.UIButton uiButton2;
 
-         private Sunny.UI.UITextBox tbownpayhosppart;
 
-         private Sunny.UI.UILabel uiLabel31;
 
-         private Sunny.UI.UICheckBox cbxMutualAidPay;
 
-         private Sunny.UI.UITextBox tbWltpayAmt;
 
-         private Sunny.UI.UILabel uiLabel32;
 
-     }
 
- }
 
 
  |