HandleException.designer.cs 135 KB

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