HandleException.designer.cs 130 KB

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