HandleException.designer.cs 121 KB

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