ToPutOnRecord.Designer.cs 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635
  1. 
  2. namespace PTMedicalInsurance.Forms.ToPutOnRecord
  3. {
  4. partial class ToPutOnRecord
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle76 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle77 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle78 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle79 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle80 = new System.Windows.Forms.DataGridViewCellStyle();
  34. this.tabRecord = new System.Windows.Forms.TabControl();
  35. this.tabPage1 = new System.Windows.Forms.TabPage();
  36. this.panel1 = new System.Windows.Forms.Panel();
  37. this.panel5 = new System.Windows.Forms.Panel();
  38. this.groupBox1 = new System.Windows.Forms.GroupBox();
  39. this.rtbCancleReason_1 = new System.Windows.Forms.RichTextBox();
  40. this.rbDeclareNo_1 = new System.Windows.Forms.RadioButton();
  41. this.rbPsnNo_1 = new System.Windows.Forms.RadioButton();
  42. this.rbName_1 = new System.Windows.Forms.RadioButton();
  43. this.btCancleByHis_1 = new System.Windows.Forms.Button();
  44. this.btQueryCenterRecord_1 = new System.Windows.Forms.Button();
  45. this.tbPsnNo2_1 = new System.Windows.Forms.TextBox();
  46. this.btCancleByCenter_1 = new System.Windows.Forms.Button();
  47. this.btClose_1 = new System.Windows.Forms.Button();
  48. this.btQueryHisRecord_1 = new System.Windows.Forms.Button();
  49. this.dgvApplyResult = new Sunny.UI.UIDataGridView();
  50. this.textBox4 = new System.Windows.Forms.TextBox();
  51. this.panel2 = new System.Windows.Forms.Panel();
  52. this.panel3 = new System.Windows.Forms.Panel();
  53. this.dblkcbxDieaseCode_1 = new PTControl.DBLookupCombox();
  54. this.dblkcbxCbd_1 = new PTControl.DBLookupCombox();
  55. this.dblkcbxHospitalCode_1 = new PTControl.DBLookupCombox();
  56. this.dpAuth = new System.Windows.Forms.DateTimePicker();
  57. this.dpEnd = new System.Windows.Forms.DateTimePicker();
  58. this.dpStart = new System.Windows.Forms.DateTimePicker();
  59. this.btApply_1 = new System.Windows.Forms.Button();
  60. this.label6 = new System.Windows.Forms.Label();
  61. this.label1 = new System.Windows.Forms.Label();
  62. this.label2 = new System.Windows.Forms.Label();
  63. this.label9 = new System.Windows.Forms.Label();
  64. this.label8 = new System.Windows.Forms.Label();
  65. this.label5 = new System.Windows.Forms.Label();
  66. this.textBox3 = new System.Windows.Forms.TextBox();
  67. this.lab_EndDate = new System.Windows.Forms.Label();
  68. this.lab_StaDate = new System.Windows.Forms.Label();
  69. this.dblkcbxDept_1 = new PTControl.DBLookupCombox();
  70. this.dblkcbxDoctor_1 = new PTControl.DBLookupCombox();
  71. this.panel4 = new System.Windows.Forms.Panel();
  72. this.tbAddress_1 = new System.Windows.Forms.TextBox();
  73. this.tbTel_1 = new System.Windows.Forms.TextBox();
  74. this.tbPsnNO_1 = new System.Windows.Forms.TextBox();
  75. this.tbName_1 = new System.Windows.Forms.TextBox();
  76. this.dblkcbxInsuranceType_1 = new PTControl.DBLookupCombox();
  77. this.btReadCard_1 = new System.Windows.Forms.Button();
  78. this.label10 = new System.Windows.Forms.Label();
  79. this.label13 = new System.Windows.Forms.Label();
  80. this.textBox6 = new System.Windows.Forms.TextBox();
  81. this.label15 = new System.Windows.Forms.Label();
  82. this.label19 = new System.Windows.Forms.Label();
  83. this.label26 = new System.Windows.Forms.Label();
  84. this.tabPage2 = new System.Windows.Forms.TabPage();
  85. this.tabPage3 = new System.Windows.Forms.TabPage();
  86. this.uiButton1 = new Sunny.UI.UIButton();
  87. this.uiButton2 = new Sunny.UI.UIButton();
  88. this.uiLabel1 = new Sunny.UI.UILabel();
  89. this.uiLabel2 = new Sunny.UI.UILabel();
  90. this.uiLabel3 = new Sunny.UI.UILabel();
  91. this.uiLabel4 = new Sunny.UI.UILabel();
  92. this.uiLabel6 = new Sunny.UI.UILabel();
  93. this.uiTextBox1 = new Sunny.UI.UITextBox();
  94. this.uiTextBox2 = new Sunny.UI.UITextBox();
  95. this.uiTextBox3 = new Sunny.UI.UITextBox();
  96. this.uiTextBox4 = new Sunny.UI.UITextBox();
  97. this.uiLabel5 = new Sunny.UI.UILabel();
  98. this.uiLabel7 = new Sunny.UI.UILabel();
  99. this.uiLabel8 = new Sunny.UI.UILabel();
  100. this.uiLabel9 = new Sunny.UI.UILabel();
  101. this.uiLabel10 = new Sunny.UI.UILabel();
  102. this.uiLabel11 = new Sunny.UI.UILabel();
  103. this.uiTextBox5 = new Sunny.UI.UITextBox();
  104. this.uiTextBox6 = new Sunny.UI.UITextBox();
  105. this.uiTextBox7 = new Sunny.UI.UITextBox();
  106. this.uiTextBox8 = new Sunny.UI.UITextBox();
  107. this.uiTextBox9 = new Sunny.UI.UITextBox();
  108. this.uiTextBox10 = new Sunny.UI.UITextBox();
  109. this.uiTextBox11 = new Sunny.UI.UITextBox();
  110. this.uiLabel12 = new Sunny.UI.UILabel();
  111. this.uiLabel13 = new Sunny.UI.UILabel();
  112. this.uiLabel14 = new Sunny.UI.UILabel();
  113. this.uiLabel15 = new Sunny.UI.UILabel();
  114. this.uiTextBox12 = new Sunny.UI.UITextBox();
  115. this.uiTextBox13 = new Sunny.UI.UITextBox();
  116. this.uiLabel16 = new Sunny.UI.UILabel();
  117. this.uiLabel17 = new Sunny.UI.UILabel();
  118. this.uiLabel18 = new Sunny.UI.UILabel();
  119. this.uiLabel19 = new Sunny.UI.UILabel();
  120. this.uiLabel20 = new Sunny.UI.UILabel();
  121. this.uiDatetimePicker2 = new Sunny.UI.UIDatetimePicker();
  122. this.uiDatetimePicker1 = new Sunny.UI.UIDatetimePicker();
  123. this.uiTextBox14 = new Sunny.UI.UITextBox();
  124. this.uiTextBox15 = new Sunny.UI.UITextBox();
  125. this.uiTextBox16 = new Sunny.UI.UITextBox();
  126. this.uiTextBox17 = new Sunny.UI.UITextBox();
  127. this.uiPanel1 = new Sunny.UI.UIPanel();
  128. this.uiLabel21 = new Sunny.UI.UILabel();
  129. this.uiLabel22 = new Sunny.UI.UILabel();
  130. this.uiDatetimePicker3 = new Sunny.UI.UIDatetimePicker();
  131. this.uiDatetimePicker4 = new Sunny.UI.UIDatetimePicker();
  132. this.tabRecord.SuspendLayout();
  133. this.tabPage1.SuspendLayout();
  134. this.panel1.SuspendLayout();
  135. this.panel5.SuspendLayout();
  136. this.groupBox1.SuspendLayout();
  137. ((System.ComponentModel.ISupportInitialize)(this.dgvApplyResult)).BeginInit();
  138. this.panel2.SuspendLayout();
  139. this.panel3.SuspendLayout();
  140. this.panel4.SuspendLayout();
  141. this.tabPage3.SuspendLayout();
  142. this.uiPanel1.SuspendLayout();
  143. this.SuspendLayout();
  144. //
  145. // tabRecord
  146. //
  147. this.tabRecord.Controls.Add(this.tabPage1);
  148. this.tabRecord.Controls.Add(this.tabPage2);
  149. this.tabRecord.Controls.Add(this.tabPage3);
  150. this.tabRecord.Dock = System.Windows.Forms.DockStyle.Fill;
  151. this.tabRecord.Location = new System.Drawing.Point(0, 0);
  152. this.tabRecord.Name = "tabRecord";
  153. this.tabRecord.SelectedIndex = 0;
  154. this.tabRecord.Size = new System.Drawing.Size(1527, 933);
  155. this.tabRecord.TabIndex = 1;
  156. //
  157. // tabPage1
  158. //
  159. this.tabPage1.Controls.Add(this.panel1);
  160. this.tabPage1.Controls.Add(this.panel2);
  161. this.tabPage1.Location = new System.Drawing.Point(4, 22);
  162. this.tabPage1.Name = "tabPage1";
  163. this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
  164. this.tabPage1.Size = new System.Drawing.Size(1519, 907);
  165. this.tabPage1.TabIndex = 0;
  166. this.tabPage1.Text = "慢特病备案";
  167. this.tabPage1.UseVisualStyleBackColor = true;
  168. //
  169. // panel1
  170. //
  171. this.panel1.Controls.Add(this.panel5);
  172. this.panel1.Controls.Add(this.dgvApplyResult);
  173. this.panel1.Controls.Add(this.textBox4);
  174. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  175. this.panel1.Location = new System.Drawing.Point(3, 277);
  176. this.panel1.Name = "panel1";
  177. this.panel1.Size = new System.Drawing.Size(1513, 627);
  178. this.panel1.TabIndex = 2048;
  179. //
  180. // panel5
  181. //
  182. this.panel5.Controls.Add(this.groupBox1);
  183. this.panel5.Controls.Add(this.rbDeclareNo_1);
  184. this.panel5.Controls.Add(this.rbPsnNo_1);
  185. this.panel5.Controls.Add(this.rbName_1);
  186. this.panel5.Controls.Add(this.btCancleByHis_1);
  187. this.panel5.Controls.Add(this.btQueryCenterRecord_1);
  188. this.panel5.Controls.Add(this.tbPsnNo2_1);
  189. this.panel5.Controls.Add(this.btCancleByCenter_1);
  190. this.panel5.Controls.Add(this.btClose_1);
  191. this.panel5.Controls.Add(this.btQueryHisRecord_1);
  192. this.panel5.Dock = System.Windows.Forms.DockStyle.Right;
  193. this.panel5.Location = new System.Drawing.Point(1125, 31);
  194. this.panel5.Name = "panel5";
  195. this.panel5.Size = new System.Drawing.Size(388, 596);
  196. this.panel5.TabIndex = 2061;
  197. //
  198. // groupBox1
  199. //
  200. this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  201. | System.Windows.Forms.AnchorStyles.Right)));
  202. this.groupBox1.Controls.Add(this.rtbCancleReason_1);
  203. this.groupBox1.Location = new System.Drawing.Point(48, 154);
  204. this.groupBox1.Name = "groupBox1";
  205. this.groupBox1.Size = new System.Drawing.Size(319, 208);
  206. this.groupBox1.TabIndex = 2095;
  207. this.groupBox1.TabStop = false;
  208. this.groupBox1.Text = "如果撤销,请填写撤销原因";
  209. //
  210. // rtbCancleReason_1
  211. //
  212. this.rtbCancleReason_1.Dock = System.Windows.Forms.DockStyle.Fill;
  213. this.rtbCancleReason_1.Location = new System.Drawing.Point(3, 17);
  214. this.rtbCancleReason_1.Name = "rtbCancleReason_1";
  215. this.rtbCancleReason_1.Size = new System.Drawing.Size(313, 188);
  216. this.rtbCancleReason_1.TabIndex = 0;
  217. this.rtbCancleReason_1.Text = "病人要求";
  218. //
  219. // rbDeclareNo_1
  220. //
  221. this.rbDeclareNo_1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  222. | System.Windows.Forms.AnchorStyles.Right)));
  223. this.rbDeclareNo_1.AutoSize = true;
  224. this.rbDeclareNo_1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  225. this.rbDeclareNo_1.Location = new System.Drawing.Point(48, 83);
  226. this.rbDeclareNo_1.Name = "rbDeclareNo_1";
  227. this.rbDeclareNo_1.Size = new System.Drawing.Size(169, 20);
  228. this.rbDeclareNo_1.TabIndex = 2094;
  229. this.rbDeclareNo_1.TabStop = true;
  230. this.rbDeclareNo_1.Text = "通过待遇流水号查询";
  231. this.rbDeclareNo_1.UseVisualStyleBackColor = true;
  232. //
  233. // rbPsnNo_1
  234. //
  235. this.rbPsnNo_1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  236. | System.Windows.Forms.AnchorStyles.Right)));
  237. this.rbPsnNo_1.AutoSize = true;
  238. this.rbPsnNo_1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  239. this.rbPsnNo_1.Location = new System.Drawing.Point(48, 51);
  240. this.rbPsnNo_1.Name = "rbPsnNo_1";
  241. this.rbPsnNo_1.Size = new System.Drawing.Size(153, 20);
  242. this.rbPsnNo_1.TabIndex = 2093;
  243. this.rbPsnNo_1.TabStop = true;
  244. this.rbPsnNo_1.Text = "通过个人编号查询";
  245. this.rbPsnNo_1.UseVisualStyleBackColor = true;
  246. //
  247. // rbName_1
  248. //
  249. this.rbName_1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  250. | System.Windows.Forms.AnchorStyles.Right)));
  251. this.rbName_1.AutoSize = true;
  252. this.rbName_1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  253. this.rbName_1.Location = new System.Drawing.Point(48, 17);
  254. this.rbName_1.Name = "rbName_1";
  255. this.rbName_1.Size = new System.Drawing.Size(121, 20);
  256. this.rbName_1.TabIndex = 2092;
  257. this.rbName_1.TabStop = true;
  258. this.rbName_1.Text = "通过姓名查询";
  259. this.rbName_1.UseVisualStyleBackColor = true;
  260. //
  261. // btCancleByHis_1
  262. //
  263. this.btCancleByHis_1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  264. | System.Windows.Forms.AnchorStyles.Right)));
  265. this.btCancleByHis_1.Location = new System.Drawing.Point(202, 412);
  266. this.btCancleByHis_1.Name = "btCancleByHis_1";
  267. this.btCancleByHis_1.Size = new System.Drawing.Size(143, 36);
  268. this.btCancleByHis_1.TabIndex = 2091;
  269. this.btCancleByHis_1.Text = "通过HIS记录撤销";
  270. this.btCancleByHis_1.UseVisualStyleBackColor = true;
  271. this.btCancleByHis_1.Click += new System.EventHandler(this.btCancleByHis_1_Click);
  272. //
  273. // btQueryCenterRecord_1
  274. //
  275. this.btQueryCenterRecord_1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  276. | System.Windows.Forms.AnchorStyles.Right)));
  277. this.btQueryCenterRecord_1.Location = new System.Drawing.Point(48, 487);
  278. this.btQueryCenterRecord_1.Name = "btQueryCenterRecord_1";
  279. this.btQueryCenterRecord_1.Size = new System.Drawing.Size(143, 36);
  280. this.btQueryCenterRecord_1.TabIndex = 2090;
  281. this.btQueryCenterRecord_1.Text = "查询中心记录";
  282. this.btQueryCenterRecord_1.UseVisualStyleBackColor = true;
  283. this.btQueryCenterRecord_1.Click += new System.EventHandler(this.btQueryCenterRecord_1_Click);
  284. //
  285. // tbPsnNo2_1
  286. //
  287. this.tbPsnNo2_1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  288. | System.Windows.Forms.AnchorStyles.Right)));
  289. this.tbPsnNo2_1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  290. this.tbPsnNo2_1.Location = new System.Drawing.Point(48, 117);
  291. this.tbPsnNo2_1.Name = "tbPsnNo2_1";
  292. this.tbPsnNo2_1.Size = new System.Drawing.Size(335, 23);
  293. this.tbPsnNo2_1.TabIndex = 2087;
  294. this.tbPsnNo2_1.Text = "44190000133083619983";
  295. //
  296. // btCancleByCenter_1
  297. //
  298. this.btCancleByCenter_1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  299. | System.Windows.Forms.AnchorStyles.Right)));
  300. this.btCancleByCenter_1.Location = new System.Drawing.Point(202, 487);
  301. this.btCancleByCenter_1.Name = "btCancleByCenter_1";
  302. this.btCancleByCenter_1.Size = new System.Drawing.Size(143, 36);
  303. this.btCancleByCenter_1.TabIndex = 2;
  304. this.btCancleByCenter_1.Text = "通过中心记录撤销";
  305. this.btCancleByCenter_1.UseVisualStyleBackColor = true;
  306. //
  307. // btClose_1
  308. //
  309. this.btClose_1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  310. | System.Windows.Forms.AnchorStyles.Right)));
  311. this.btClose_1.Location = new System.Drawing.Point(48, 545);
  312. this.btClose_1.Name = "btClose_1";
  313. this.btClose_1.Size = new System.Drawing.Size(297, 36);
  314. this.btClose_1.TabIndex = 1;
  315. this.btClose_1.Text = "退出";
  316. this.btClose_1.UseVisualStyleBackColor = true;
  317. this.btClose_1.Click += new System.EventHandler(this.btClose_1_Click);
  318. //
  319. // btQueryHisRecord_1
  320. //
  321. this.btQueryHisRecord_1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  322. | System.Windows.Forms.AnchorStyles.Right)));
  323. this.btQueryHisRecord_1.Location = new System.Drawing.Point(48, 412);
  324. this.btQueryHisRecord_1.Name = "btQueryHisRecord_1";
  325. this.btQueryHisRecord_1.Size = new System.Drawing.Size(143, 36);
  326. this.btQueryHisRecord_1.TabIndex = 0;
  327. this.btQueryHisRecord_1.Text = "查询HIS记录";
  328. this.btQueryHisRecord_1.UseVisualStyleBackColor = true;
  329. this.btQueryHisRecord_1.Click += new System.EventHandler(this.btQueryHisRecord_1_Click);
  330. //
  331. // dgvApplyResult
  332. //
  333. this.dgvApplyResult.AllowUserToAddRows = false;
  334. dataGridViewCellStyle76.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  335. this.dgvApplyResult.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle76;
  336. this.dgvApplyResult.BackgroundColor = System.Drawing.Color.White;
  337. this.dgvApplyResult.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  338. dataGridViewCellStyle77.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  339. dataGridViewCellStyle77.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  340. dataGridViewCellStyle77.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  341. dataGridViewCellStyle77.ForeColor = System.Drawing.Color.White;
  342. dataGridViewCellStyle77.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  343. dataGridViewCellStyle77.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  344. dataGridViewCellStyle77.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  345. this.dgvApplyResult.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle77;
  346. this.dgvApplyResult.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  347. dataGridViewCellStyle78.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  348. dataGridViewCellStyle78.BackColor = System.Drawing.SystemColors.Window;
  349. dataGridViewCellStyle78.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  350. dataGridViewCellStyle78.ForeColor = System.Drawing.SystemColors.ControlText;
  351. dataGridViewCellStyle78.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  352. dataGridViewCellStyle78.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  353. dataGridViewCellStyle78.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  354. this.dgvApplyResult.DefaultCellStyle = dataGridViewCellStyle78;
  355. this.dgvApplyResult.Dock = System.Windows.Forms.DockStyle.Fill;
  356. this.dgvApplyResult.EnableHeadersVisualStyles = false;
  357. this.dgvApplyResult.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  358. this.dgvApplyResult.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  359. this.dgvApplyResult.Location = new System.Drawing.Point(0, 31);
  360. this.dgvApplyResult.Name = "dgvApplyResult";
  361. dataGridViewCellStyle79.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  362. dataGridViewCellStyle79.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  363. dataGridViewCellStyle79.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  364. dataGridViewCellStyle79.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  365. dataGridViewCellStyle79.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  366. dataGridViewCellStyle79.SelectionForeColor = System.Drawing.Color.White;
  367. dataGridViewCellStyle79.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  368. this.dgvApplyResult.RowHeadersDefaultCellStyle = dataGridViewCellStyle79;
  369. this.dgvApplyResult.RowHeadersWidth = 51;
  370. dataGridViewCellStyle80.BackColor = System.Drawing.Color.White;
  371. dataGridViewCellStyle80.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  372. this.dgvApplyResult.RowsDefaultCellStyle = dataGridViewCellStyle80;
  373. this.dgvApplyResult.RowTemplate.Height = 23;
  374. this.dgvApplyResult.SelectedIndex = -1;
  375. this.dgvApplyResult.Size = new System.Drawing.Size(1513, 596);
  376. this.dgvApplyResult.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  377. this.dgvApplyResult.TabIndex = 2060;
  378. this.dgvApplyResult.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  379. //
  380. // textBox4
  381. //
  382. this.textBox4.BackColor = System.Drawing.SystemColors.Control;
  383. this.textBox4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  384. this.textBox4.Dock = System.Windows.Forms.DockStyle.Top;
  385. this.textBox4.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  386. this.textBox4.Location = new System.Drawing.Point(0, 0);
  387. this.textBox4.Name = "textBox4";
  388. this.textBox4.ReadOnly = true;
  389. this.textBox4.Size = new System.Drawing.Size(1513, 31);
  390. this.textBox4.TabIndex = 2059;
  391. this.textBox4.TabStop = false;
  392. this.textBox4.Text = "申请结果";
  393. this.textBox4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  394. //
  395. // panel2
  396. //
  397. this.panel2.Controls.Add(this.panel3);
  398. this.panel2.Controls.Add(this.panel4);
  399. this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
  400. this.panel2.Location = new System.Drawing.Point(3, 3);
  401. this.panel2.Name = "panel2";
  402. this.panel2.Size = new System.Drawing.Size(1513, 274);
  403. this.panel2.TabIndex = 2047;
  404. //
  405. // panel3
  406. //
  407. this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  408. this.panel3.Controls.Add(this.dblkcbxDieaseCode_1);
  409. this.panel3.Controls.Add(this.dblkcbxCbd_1);
  410. this.panel3.Controls.Add(this.dblkcbxHospitalCode_1);
  411. this.panel3.Controls.Add(this.dpAuth);
  412. this.panel3.Controls.Add(this.dpEnd);
  413. this.panel3.Controls.Add(this.dpStart);
  414. this.panel3.Controls.Add(this.btApply_1);
  415. this.panel3.Controls.Add(this.label6);
  416. this.panel3.Controls.Add(this.label1);
  417. this.panel3.Controls.Add(this.label2);
  418. this.panel3.Controls.Add(this.label9);
  419. this.panel3.Controls.Add(this.label8);
  420. this.panel3.Controls.Add(this.label5);
  421. this.panel3.Controls.Add(this.textBox3);
  422. this.panel3.Controls.Add(this.lab_EndDate);
  423. this.panel3.Controls.Add(this.lab_StaDate);
  424. this.panel3.Controls.Add(this.dblkcbxDept_1);
  425. this.panel3.Controls.Add(this.dblkcbxDoctor_1);
  426. this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
  427. this.panel3.Location = new System.Drawing.Point(0, 116);
  428. this.panel3.Name = "panel3";
  429. this.panel3.Size = new System.Drawing.Size(1513, 158);
  430. this.panel3.TabIndex = 2048;
  431. //
  432. // dblkcbxDieaseCode_1
  433. //
  434. this.dblkcbxDieaseCode_1.FormattingEnabled = true;
  435. this.dblkcbxDieaseCode_1.Location = new System.Drawing.Point(109, 44);
  436. this.dblkcbxDieaseCode_1.Name = "dblkcbxDieaseCode_1";
  437. this.dblkcbxDieaseCode_1.NullValue = "";
  438. this.dblkcbxDieaseCode_1.PopupGridAutoSize = false;
  439. this.dblkcbxDieaseCode_1.RowFilterVisible = false;
  440. this.dblkcbxDieaseCode_1.sDisplayField = "";
  441. this.dblkcbxDieaseCode_1.sDisplayMember = "";
  442. this.dblkcbxDieaseCode_1.SeparatorChar = "|";
  443. this.dblkcbxDieaseCode_1.Size = new System.Drawing.Size(496, 20);
  444. this.dblkcbxDieaseCode_1.sKeyWords = "";
  445. this.dblkcbxDieaseCode_1.sValueMember = "";
  446. this.dblkcbxDieaseCode_1.TabIndex = 2108;
  447. this.dblkcbxDieaseCode_1.Value = "";
  448. this.dblkcbxDieaseCode_1.AfterSelector += new PTControl.AfterSelectorEventHandler(this.dblkcbxDieaseCode_1_AfterSelector);
  449. //
  450. // dblkcbxCbd_1
  451. //
  452. this.dblkcbxCbd_1.FormattingEnabled = true;
  453. this.dblkcbxCbd_1.Location = new System.Drawing.Point(760, 81);
  454. this.dblkcbxCbd_1.Name = "dblkcbxCbd_1";
  455. this.dblkcbxCbd_1.NullValue = "";
  456. this.dblkcbxCbd_1.PopupGridAutoSize = false;
  457. this.dblkcbxCbd_1.RowFilterVisible = false;
  458. this.dblkcbxCbd_1.sDisplayField = "";
  459. this.dblkcbxCbd_1.sDisplayMember = "";
  460. this.dblkcbxCbd_1.SeparatorChar = "|";
  461. this.dblkcbxCbd_1.Size = new System.Drawing.Size(280, 20);
  462. this.dblkcbxCbd_1.sKeyWords = "";
  463. this.dblkcbxCbd_1.sValueMember = "";
  464. this.dblkcbxCbd_1.TabIndex = 2110;
  465. this.dblkcbxCbd_1.Value = "";
  466. this.dblkcbxCbd_1.AfterSelector += new PTControl.AfterSelectorEventHandler(this.dblkcbxCbd_1_AfterSelector);
  467. //
  468. // dblkcbxHospitalCode_1
  469. //
  470. this.dblkcbxHospitalCode_1.FormattingEnabled = true;
  471. this.dblkcbxHospitalCode_1.Location = new System.Drawing.Point(759, 43);
  472. this.dblkcbxHospitalCode_1.Name = "dblkcbxHospitalCode_1";
  473. this.dblkcbxHospitalCode_1.NullValue = "";
  474. this.dblkcbxHospitalCode_1.PopupGridAutoSize = false;
  475. this.dblkcbxHospitalCode_1.RowFilterVisible = false;
  476. this.dblkcbxHospitalCode_1.sDisplayField = "";
  477. this.dblkcbxHospitalCode_1.sDisplayMember = "";
  478. this.dblkcbxHospitalCode_1.SeparatorChar = "|";
  479. this.dblkcbxHospitalCode_1.Size = new System.Drawing.Size(280, 20);
  480. this.dblkcbxHospitalCode_1.sKeyWords = "";
  481. this.dblkcbxHospitalCode_1.sValueMember = "";
  482. this.dblkcbxHospitalCode_1.TabIndex = 2115;
  483. this.dblkcbxHospitalCode_1.Value = "";
  484. this.dblkcbxHospitalCode_1.AfterSelector += new PTControl.AfterSelectorEventHandler(this.dblkcbxHospitalCode_1_AfterSelector);
  485. //
  486. // dpAuth
  487. //
  488. this.dpAuth.Location = new System.Drawing.Point(727, 121);
  489. this.dpAuth.Name = "dpAuth";
  490. this.dpAuth.Size = new System.Drawing.Size(192, 21);
  491. this.dpAuth.TabIndex = 2114;
  492. //
  493. // dpEnd
  494. //
  495. this.dpEnd.Location = new System.Drawing.Point(366, 121);
  496. this.dpEnd.Name = "dpEnd";
  497. this.dpEnd.Size = new System.Drawing.Size(240, 21);
  498. this.dpEnd.TabIndex = 2113;
  499. //
  500. // dpStart
  501. //
  502. this.dpStart.Location = new System.Drawing.Point(80, 121);
  503. this.dpStart.Name = "dpStart";
  504. this.dpStart.Size = new System.Drawing.Size(192, 21);
  505. this.dpStart.TabIndex = 2112;
  506. //
  507. // btApply_1
  508. //
  509. this.btApply_1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  510. this.btApply_1.BackColor = System.Drawing.Color.Transparent;
  511. this.btApply_1.FlatAppearance.BorderColor = System.Drawing.Color.Blue;
  512. this.btApply_1.FlatAppearance.BorderSize = 2;
  513. this.btApply_1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  514. this.btApply_1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  515. this.btApply_1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  516. this.btApply_1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  517. this.btApply_1.Location = new System.Drawing.Point(1284, 59);
  518. this.btApply_1.Name = "btApply_1";
  519. this.btApply_1.Size = new System.Drawing.Size(111, 41);
  520. this.btApply_1.TabIndex = 2107;
  521. this.btApply_1.TabStop = false;
  522. this.btApply_1.Text = "申请";
  523. this.btApply_1.UseVisualStyleBackColor = false;
  524. this.btApply_1.Click += new System.EventHandler(this.btApply_1_Click);
  525. //
  526. // label6
  527. //
  528. this.label6.AutoSize = true;
  529. this.label6.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  530. this.label6.ForeColor = System.Drawing.Color.Red;
  531. this.label6.Location = new System.Drawing.Point(628, 86);
  532. this.label6.Name = "label6";
  533. this.label6.Size = new System.Drawing.Size(133, 14);
  534. this.label6.TabIndex = 2105;
  535. this.label6.Text = "参保机构医保区划:";
  536. //
  537. // label1
  538. //
  539. this.label1.AutoSize = true;
  540. this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  541. this.label1.ForeColor = System.Drawing.Color.Red;
  542. this.label1.Location = new System.Drawing.Point(300, 86);
  543. this.label1.Name = "label1";
  544. this.label1.Size = new System.Drawing.Size(70, 14);
  545. this.label1.TabIndex = 2102;
  546. this.label1.Text = "科室名称:";
  547. //
  548. // label2
  549. //
  550. this.label2.AutoSize = true;
  551. this.label2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  552. this.label2.ForeColor = System.Drawing.Color.Red;
  553. this.label2.Location = new System.Drawing.Point(7, 86);
  554. this.label2.Name = "label2";
  555. this.label2.Size = new System.Drawing.Size(98, 14);
  556. this.label2.TabIndex = 2095;
  557. this.label2.Text = "诊断医师姓名:";
  558. //
  559. // label9
  560. //
  561. this.label9.AutoSize = true;
  562. this.label9.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  563. this.label9.ForeColor = System.Drawing.Color.Red;
  564. this.label9.Location = new System.Drawing.Point(628, 125);
  565. this.label9.Name = "label9";
  566. this.label9.Size = new System.Drawing.Size(98, 14);
  567. this.label9.TabIndex = 2085;
  568. this.label9.Text = "医院鉴定日期:";
  569. //
  570. // label8
  571. //
  572. this.label8.AutoSize = true;
  573. this.label8.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  574. this.label8.ForeColor = System.Drawing.Color.Red;
  575. this.label8.Location = new System.Drawing.Point(628, 47);
  576. this.label8.Name = "label8";
  577. this.label8.Size = new System.Drawing.Size(133, 14);
  578. this.label8.TabIndex = 2061;
  579. this.label8.Text = "选点定点医药机构:";
  580. //
  581. // label5
  582. //
  583. this.label5.AutoSize = true;
  584. this.label5.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  585. this.label5.ForeColor = System.Drawing.Color.Red;
  586. this.label5.Location = new System.Drawing.Point(7, 47);
  587. this.label5.Name = "label5";
  588. this.label5.Size = new System.Drawing.Size(105, 14);
  589. this.label5.TabIndex = 2056;
  590. this.label5.Text = "慢特病种名称:";
  591. //
  592. // textBox3
  593. //
  594. this.textBox3.BackColor = System.Drawing.SystemColors.Control;
  595. this.textBox3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  596. this.textBox3.Dock = System.Windows.Forms.DockStyle.Top;
  597. this.textBox3.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  598. this.textBox3.Location = new System.Drawing.Point(0, 0);
  599. this.textBox3.Multiline = true;
  600. this.textBox3.Name = "textBox3";
  601. this.textBox3.ReadOnly = true;
  602. this.textBox3.Size = new System.Drawing.Size(1509, 33);
  603. this.textBox3.TabIndex = 2055;
  604. this.textBox3.TabStop = false;
  605. this.textBox3.Text = "慢特病信息";
  606. this.textBox3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  607. //
  608. // lab_EndDate
  609. //
  610. this.lab_EndDate.AutoSize = true;
  611. this.lab_EndDate.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  612. this.lab_EndDate.ForeColor = System.Drawing.Color.Red;
  613. this.lab_EndDate.Location = new System.Drawing.Point(300, 125);
  614. this.lab_EndDate.Name = "lab_EndDate";
  615. this.lab_EndDate.Size = new System.Drawing.Size(77, 14);
  616. this.lab_EndDate.TabIndex = 2053;
  617. this.lab_EndDate.Text = "结束日期:";
  618. //
  619. // lab_StaDate
  620. //
  621. this.lab_StaDate.AutoSize = true;
  622. this.lab_StaDate.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  623. this.lab_StaDate.ForeColor = System.Drawing.Color.Red;
  624. this.lab_StaDate.Location = new System.Drawing.Point(7, 125);
  625. this.lab_StaDate.Name = "lab_StaDate";
  626. this.lab_StaDate.Size = new System.Drawing.Size(77, 14);
  627. this.lab_StaDate.TabIndex = 2052;
  628. this.lab_StaDate.Text = "开始日期:";
  629. //
  630. // dblkcbxDept_1
  631. //
  632. this.dblkcbxDept_1.FormattingEnabled = true;
  633. this.dblkcbxDept_1.Location = new System.Drawing.Point(370, 81);
  634. this.dblkcbxDept_1.Name = "dblkcbxDept_1";
  635. this.dblkcbxDept_1.NullValue = "";
  636. this.dblkcbxDept_1.PopupGridAutoSize = false;
  637. this.dblkcbxDept_1.RowFilterVisible = false;
  638. this.dblkcbxDept_1.sDisplayField = "";
  639. this.dblkcbxDept_1.sDisplayMember = "";
  640. this.dblkcbxDept_1.SeparatorChar = "|";
  641. this.dblkcbxDept_1.Size = new System.Drawing.Size(240, 20);
  642. this.dblkcbxDept_1.sKeyWords = "";
  643. this.dblkcbxDept_1.sValueMember = "";
  644. this.dblkcbxDept_1.TabIndex = 2111;
  645. this.dblkcbxDept_1.Value = "";
  646. this.dblkcbxDept_1.AfterSelector += new PTControl.AfterSelectorEventHandler(this.dblkcbxDept_1_AfterSelector);
  647. //
  648. // dblkcbxDoctor_1
  649. //
  650. this.dblkcbxDoctor_1.FormattingEnabled = true;
  651. this.dblkcbxDoctor_1.Location = new System.Drawing.Point(106, 81);
  652. this.dblkcbxDoctor_1.Name = "dblkcbxDoctor_1";
  653. this.dblkcbxDoctor_1.NullValue = "";
  654. this.dblkcbxDoctor_1.PopupGridAutoSize = false;
  655. this.dblkcbxDoctor_1.RowFilterVisible = false;
  656. this.dblkcbxDoctor_1.sDisplayField = "";
  657. this.dblkcbxDoctor_1.sDisplayMember = "";
  658. this.dblkcbxDoctor_1.SeparatorChar = "|";
  659. this.dblkcbxDoctor_1.Size = new System.Drawing.Size(166, 20);
  660. this.dblkcbxDoctor_1.sKeyWords = "";
  661. this.dblkcbxDoctor_1.sValueMember = "";
  662. this.dblkcbxDoctor_1.TabIndex = 2109;
  663. this.dblkcbxDoctor_1.Value = "";
  664. this.dblkcbxDoctor_1.AfterSelector += new PTControl.AfterSelectorEventHandler(this.dblkcbxDoctor_1_AfterSelector);
  665. //
  666. // panel4
  667. //
  668. this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  669. this.panel4.Controls.Add(this.tbAddress_1);
  670. this.panel4.Controls.Add(this.tbTel_1);
  671. this.panel4.Controls.Add(this.tbPsnNO_1);
  672. this.panel4.Controls.Add(this.tbName_1);
  673. this.panel4.Controls.Add(this.dblkcbxInsuranceType_1);
  674. this.panel4.Controls.Add(this.btReadCard_1);
  675. this.panel4.Controls.Add(this.label10);
  676. this.panel4.Controls.Add(this.label13);
  677. this.panel4.Controls.Add(this.textBox6);
  678. this.panel4.Controls.Add(this.label15);
  679. this.panel4.Controls.Add(this.label19);
  680. this.panel4.Controls.Add(this.label26);
  681. this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
  682. this.panel4.Location = new System.Drawing.Point(0, 0);
  683. this.panel4.Name = "panel4";
  684. this.panel4.Size = new System.Drawing.Size(1513, 116);
  685. this.panel4.TabIndex = 2047;
  686. this.panel4.TabStop = true;
  687. //
  688. // tbAddress_1
  689. //
  690. this.tbAddress_1.Location = new System.Drawing.Point(357, 80);
  691. this.tbAddress_1.Name = "tbAddress_1";
  692. this.tbAddress_1.Size = new System.Drawing.Size(674, 21);
  693. this.tbAddress_1.TabIndex = 2099;
  694. //
  695. // tbTel_1
  696. //
  697. this.tbTel_1.Location = new System.Drawing.Point(83, 82);
  698. this.tbTel_1.Name = "tbTel_1";
  699. this.tbTel_1.Size = new System.Drawing.Size(197, 21);
  700. this.tbTel_1.TabIndex = 2098;
  701. //
  702. // tbPsnNO_1
  703. //
  704. this.tbPsnNO_1.Location = new System.Drawing.Point(722, 39);
  705. this.tbPsnNO_1.Name = "tbPsnNO_1";
  706. this.tbPsnNO_1.Size = new System.Drawing.Size(309, 21);
  707. this.tbPsnNO_1.TabIndex = 2097;
  708. //
  709. // tbName_1
  710. //
  711. this.tbName_1.Location = new System.Drawing.Point(83, 39);
  712. this.tbName_1.Name = "tbName_1";
  713. this.tbName_1.Size = new System.Drawing.Size(197, 21);
  714. this.tbName_1.TabIndex = 2096;
  715. //
  716. // dblkcbxInsuranceType_1
  717. //
  718. this.dblkcbxInsuranceType_1.FormattingEnabled = true;
  719. this.dblkcbxInsuranceType_1.Location = new System.Drawing.Point(357, 39);
  720. this.dblkcbxInsuranceType_1.Name = "dblkcbxInsuranceType_1";
  721. this.dblkcbxInsuranceType_1.NullValue = "";
  722. this.dblkcbxInsuranceType_1.PopupGridAutoSize = false;
  723. this.dblkcbxInsuranceType_1.RowFilterVisible = false;
  724. this.dblkcbxInsuranceType_1.sDisplayField = "";
  725. this.dblkcbxInsuranceType_1.sDisplayMember = "";
  726. this.dblkcbxInsuranceType_1.SeparatorChar = "|";
  727. this.dblkcbxInsuranceType_1.Size = new System.Drawing.Size(257, 20);
  728. this.dblkcbxInsuranceType_1.sKeyWords = "";
  729. this.dblkcbxInsuranceType_1.sValueMember = "";
  730. this.dblkcbxInsuranceType_1.TabIndex = 2095;
  731. this.dblkcbxInsuranceType_1.Value = "";
  732. //
  733. // btReadCard_1
  734. //
  735. this.btReadCard_1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  736. this.btReadCard_1.BackColor = System.Drawing.Color.Transparent;
  737. this.btReadCard_1.FlatAppearance.BorderColor = System.Drawing.Color.Blue;
  738. this.btReadCard_1.FlatAppearance.BorderSize = 2;
  739. this.btReadCard_1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  740. this.btReadCard_1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
  741. this.btReadCard_1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  742. this.btReadCard_1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  743. this.btReadCard_1.Location = new System.Drawing.Point(1284, 43);
  744. this.btReadCard_1.Name = "btReadCard_1";
  745. this.btReadCard_1.Size = new System.Drawing.Size(111, 45);
  746. this.btReadCard_1.TabIndex = 2094;
  747. this.btReadCard_1.TabStop = false;
  748. this.btReadCard_1.Text = "读 卡";
  749. this.btReadCard_1.UseVisualStyleBackColor = false;
  750. this.btReadCard_1.Click += new System.EventHandler(this.btReadCard_1_Click);
  751. //
  752. // label10
  753. //
  754. this.label10.AutoSize = true;
  755. this.label10.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  756. this.label10.ForeColor = System.Drawing.Color.Red;
  757. this.label10.Location = new System.Drawing.Point(286, 43);
  758. this.label10.Name = "label10";
  759. this.label10.Size = new System.Drawing.Size(77, 14);
  760. this.label10.TabIndex = 2057;
  761. this.label10.Text = "险种类型:";
  762. //
  763. // label13
  764. //
  765. this.label13.AutoSize = true;
  766. this.label13.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  767. this.label13.ForeColor = System.Drawing.Color.Red;
  768. this.label13.Location = new System.Drawing.Point(648, 43);
  769. this.label13.Name = "label13";
  770. this.label13.Size = new System.Drawing.Size(77, 14);
  771. this.label13.TabIndex = 2055;
  772. this.label13.Text = "人员编号:";
  773. //
  774. // textBox6
  775. //
  776. this.textBox6.BackColor = System.Drawing.SystemColors.Control;
  777. this.textBox6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  778. this.textBox6.Dock = System.Windows.Forms.DockStyle.Top;
  779. this.textBox6.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  780. this.textBox6.Location = new System.Drawing.Point(0, 0);
  781. this.textBox6.Multiline = true;
  782. this.textBox6.Name = "textBox6";
  783. this.textBox6.ReadOnly = true;
  784. this.textBox6.Size = new System.Drawing.Size(1509, 33);
  785. this.textBox6.TabIndex = 1300;
  786. this.textBox6.TabStop = false;
  787. this.textBox6.Text = "基本信息";
  788. this.textBox6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  789. //
  790. // label15
  791. //
  792. this.label15.AutoSize = true;
  793. this.label15.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  794. this.label15.ForeColor = System.Drawing.Color.Red;
  795. this.label15.Location = new System.Drawing.Point(286, 85);
  796. this.label15.Name = "label15";
  797. this.label15.Size = new System.Drawing.Size(77, 14);
  798. this.label15.TabIndex = 111;
  799. this.label15.Text = "联系地址:";
  800. //
  801. // label19
  802. //
  803. this.label19.AutoSize = true;
  804. this.label19.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  805. this.label19.ForeColor = System.Drawing.Color.Red;
  806. this.label19.Location = new System.Drawing.Point(11, 85);
  807. this.label19.Name = "label19";
  808. this.label19.Size = new System.Drawing.Size(77, 14);
  809. this.label19.TabIndex = 932;
  810. this.label19.Text = "联系电话:";
  811. //
  812. // label26
  813. //
  814. this.label26.AutoSize = true;
  815. this.label26.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  816. this.label26.ForeColor = System.Drawing.Color.Red;
  817. this.label26.Location = new System.Drawing.Point(10, 43);
  818. this.label26.Name = "label26";
  819. this.label26.Size = new System.Drawing.Size(77, 14);
  820. this.label26.TabIndex = 133;
  821. this.label26.Text = "人员姓名:";
  822. //
  823. // tabPage2
  824. //
  825. this.tabPage2.Location = new System.Drawing.Point(4, 22);
  826. this.tabPage2.Name = "tabPage2";
  827. this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
  828. this.tabPage2.Size = new System.Drawing.Size(1519, 907);
  829. this.tabPage2.TabIndex = 1;
  830. this.tabPage2.Text = "定点备案";
  831. this.tabPage2.UseVisualStyleBackColor = true;
  832. //
  833. // tabPage3
  834. //
  835. this.tabPage3.Controls.Add(this.uiPanel1);
  836. this.tabPage3.Location = new System.Drawing.Point(4, 22);
  837. this.tabPage3.Name = "tabPage3";
  838. this.tabPage3.Size = new System.Drawing.Size(1519, 907);
  839. this.tabPage3.TabIndex = 2;
  840. this.tabPage3.Text = "外伤备案";
  841. this.tabPage3.UseVisualStyleBackColor = true;
  842. //
  843. // uiButton1
  844. //
  845. this.uiButton1.Cursor = System.Windows.Forms.Cursors.Hand;
  846. this.uiButton1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  847. this.uiButton1.Location = new System.Drawing.Point(31, 231);
  848. this.uiButton1.MinimumSize = new System.Drawing.Size(1, 1);
  849. this.uiButton1.Name = "uiButton1";
  850. this.uiButton1.Size = new System.Drawing.Size(92, 33);
  851. this.uiButton1.TabIndex = 0;
  852. this.uiButton1.Text = "申请备案";
  853. this.uiButton1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  854. this.uiButton1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  855. this.uiButton1.Click += new System.EventHandler(this.uiButton1_Click);
  856. //
  857. // uiButton2
  858. //
  859. this.uiButton2.Cursor = System.Windows.Forms.Cursors.Hand;
  860. this.uiButton2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  861. this.uiButton2.Location = new System.Drawing.Point(23, 41);
  862. this.uiButton2.MinimumSize = new System.Drawing.Size(1, 1);
  863. this.uiButton2.Name = "uiButton2";
  864. this.uiButton2.Size = new System.Drawing.Size(100, 35);
  865. this.uiButton2.TabIndex = 1;
  866. this.uiButton2.Text = "读卡";
  867. this.uiButton2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  868. this.uiButton2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  869. this.uiButton2.Click += new System.EventHandler(this.uiButton2_Click);
  870. //
  871. // uiLabel1
  872. //
  873. this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  874. this.uiLabel1.ForeColor = System.Drawing.Color.Red;
  875. this.uiLabel1.Location = new System.Drawing.Point(239, 53);
  876. this.uiLabel1.Name = "uiLabel1";
  877. this.uiLabel1.Size = new System.Drawing.Size(100, 23);
  878. this.uiLabel1.Style = Sunny.UI.UIStyle.Custom;
  879. this.uiLabel1.TabIndex = 2;
  880. this.uiLabel1.Text = "人员姓名";
  881. this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  882. this.uiLabel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  883. //
  884. // uiLabel2
  885. //
  886. this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  887. this.uiLabel2.ForeColor = System.Drawing.Color.Red;
  888. this.uiLabel2.Location = new System.Drawing.Point(687, 53);
  889. this.uiLabel2.Name = "uiLabel2";
  890. this.uiLabel2.Size = new System.Drawing.Size(140, 23);
  891. this.uiLabel2.Style = Sunny.UI.UIStyle.Custom;
  892. this.uiLabel2.TabIndex = 3;
  893. this.uiLabel2.Text = "医保人员编号";
  894. this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  895. this.uiLabel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  896. //
  897. // uiLabel3
  898. //
  899. this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  900. this.uiLabel3.ForeColor = System.Drawing.Color.Red;
  901. this.uiLabel3.Location = new System.Drawing.Point(687, 112);
  902. this.uiLabel3.Name = "uiLabel3";
  903. this.uiLabel3.Size = new System.Drawing.Size(100, 23);
  904. this.uiLabel3.Style = Sunny.UI.UIStyle.Custom;
  905. this.uiLabel3.TabIndex = 4;
  906. this.uiLabel3.Text = "身份证号";
  907. this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  908. this.uiLabel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  909. //
  910. // uiLabel4
  911. //
  912. this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  913. this.uiLabel4.ForeColor = System.Drawing.Color.Red;
  914. this.uiLabel4.Location = new System.Drawing.Point(229, 112);
  915. this.uiLabel4.Name = "uiLabel4";
  916. this.uiLabel4.Size = new System.Drawing.Size(100, 23);
  917. this.uiLabel4.Style = Sunny.UI.UIStyle.Custom;
  918. this.uiLabel4.TabIndex = 5;
  919. this.uiLabel4.Text = "证件类型";
  920. this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  921. this.uiLabel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  922. //
  923. // uiLabel6
  924. //
  925. this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  926. this.uiLabel6.ForeColor = System.Drawing.Color.Red;
  927. this.uiLabel6.Location = new System.Drawing.Point(1098, 53);
  928. this.uiLabel6.Name = "uiLabel6";
  929. this.uiLabel6.Size = new System.Drawing.Size(100, 23);
  930. this.uiLabel6.Style = Sunny.UI.UIStyle.Custom;
  931. this.uiLabel6.TabIndex = 7;
  932. this.uiLabel6.Text = "参保区划";
  933. this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  934. this.uiLabel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  935. //
  936. // uiTextBox1
  937. //
  938. this.uiTextBox1.Cursor = System.Windows.Forms.Cursors.IBeam;
  939. this.uiTextBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  940. this.uiTextBox1.Location = new System.Drawing.Point(395, 47);
  941. this.uiTextBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  942. this.uiTextBox1.MinimumSize = new System.Drawing.Size(1, 16);
  943. this.uiTextBox1.Name = "uiTextBox1";
  944. this.uiTextBox1.ShowText = false;
  945. this.uiTextBox1.Size = new System.Drawing.Size(222, 29);
  946. this.uiTextBox1.TabIndex = 8;
  947. this.uiTextBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  948. this.uiTextBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  949. //
  950. // uiTextBox2
  951. //
  952. this.uiTextBox2.Cursor = System.Windows.Forms.Cursors.IBeam;
  953. this.uiTextBox2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  954. this.uiTextBox2.Location = new System.Drawing.Point(834, 47);
  955. this.uiTextBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  956. this.uiTextBox2.MinimumSize = new System.Drawing.Size(1, 16);
  957. this.uiTextBox2.Name = "uiTextBox2";
  958. this.uiTextBox2.ShowText = false;
  959. this.uiTextBox2.Size = new System.Drawing.Size(222, 29);
  960. this.uiTextBox2.TabIndex = 9;
  961. this.uiTextBox2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  962. this.uiTextBox2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  963. //
  964. // uiTextBox3
  965. //
  966. this.uiTextBox3.Cursor = System.Windows.Forms.Cursors.IBeam;
  967. this.uiTextBox3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  968. this.uiTextBox3.Location = new System.Drawing.Point(387, 112);
  969. this.uiTextBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  970. this.uiTextBox3.MinimumSize = new System.Drawing.Size(1, 16);
  971. this.uiTextBox3.Name = "uiTextBox3";
  972. this.uiTextBox3.ShowText = false;
  973. this.uiTextBox3.Size = new System.Drawing.Size(222, 29);
  974. this.uiTextBox3.TabIndex = 10;
  975. this.uiTextBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  976. this.uiTextBox3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  977. //
  978. // uiTextBox4
  979. //
  980. this.uiTextBox4.Cursor = System.Windows.Forms.Cursors.IBeam;
  981. this.uiTextBox4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  982. this.uiTextBox4.Location = new System.Drawing.Point(834, 112);
  983. this.uiTextBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  984. this.uiTextBox4.MinimumSize = new System.Drawing.Size(1, 16);
  985. this.uiTextBox4.Name = "uiTextBox4";
  986. this.uiTextBox4.ShowText = false;
  987. this.uiTextBox4.Size = new System.Drawing.Size(222, 29);
  988. this.uiTextBox4.TabIndex = 11;
  989. this.uiTextBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  990. this.uiTextBox4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  991. //
  992. // uiLabel5
  993. //
  994. this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  995. this.uiLabel5.Location = new System.Drawing.Point(226, 303);
  996. this.uiLabel5.Name = "uiLabel5";
  997. this.uiLabel5.Size = new System.Drawing.Size(100, 23);
  998. this.uiLabel5.TabIndex = 12;
  999. this.uiLabel5.Text = "伤害部位";
  1000. this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1001. this.uiLabel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1002. //
  1003. // uiLabel7
  1004. //
  1005. this.uiLabel7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1006. this.uiLabel7.Location = new System.Drawing.Point(687, 162);
  1007. this.uiLabel7.Name = "uiLabel7";
  1008. this.uiLabel7.Size = new System.Drawing.Size(100, 23);
  1009. this.uiLabel7.TabIndex = 13;
  1010. this.uiLabel7.Text = "单位名称";
  1011. this.uiLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1012. this.uiLabel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1013. this.uiLabel7.Click += new System.EventHandler(this.uiLabel7_Click);
  1014. //
  1015. // uiLabel8
  1016. //
  1017. this.uiLabel8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1018. this.uiLabel8.Location = new System.Drawing.Point(239, 162);
  1019. this.uiLabel8.Name = "uiLabel8";
  1020. this.uiLabel8.Size = new System.Drawing.Size(100, 23);
  1021. this.uiLabel8.TabIndex = 14;
  1022. this.uiLabel8.Text = "单位编号";
  1023. this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1024. this.uiLabel8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1025. //
  1026. // uiLabel9
  1027. //
  1028. this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1029. this.uiLabel9.Location = new System.Drawing.Point(687, 241);
  1030. this.uiLabel9.Name = "uiLabel9";
  1031. this.uiLabel9.Size = new System.Drawing.Size(100, 23);
  1032. this.uiLabel9.TabIndex = 15;
  1033. this.uiLabel9.Text = "结算ID";
  1034. this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1035. this.uiLabel9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1036. //
  1037. // uiLabel10
  1038. //
  1039. this.uiLabel10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1040. this.uiLabel10.Location = new System.Drawing.Point(239, 236);
  1041. this.uiLabel10.Name = "uiLabel10";
  1042. this.uiLabel10.Size = new System.Drawing.Size(100, 23);
  1043. this.uiLabel10.TabIndex = 16;
  1044. this.uiLabel10.Text = "就诊ID";
  1045. this.uiLabel10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1046. this.uiLabel10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1047. //
  1048. // uiLabel11
  1049. //
  1050. this.uiLabel11.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1051. this.uiLabel11.ForeColor = System.Drawing.Color.Red;
  1052. this.uiLabel11.Location = new System.Drawing.Point(687, 303);
  1053. this.uiLabel11.Name = "uiLabel11";
  1054. this.uiLabel11.Size = new System.Drawing.Size(100, 23);
  1055. this.uiLabel11.Style = Sunny.UI.UIStyle.Custom;
  1056. this.uiLabel11.TabIndex = 17;
  1057. this.uiLabel11.Text = "受伤时间";
  1058. this.uiLabel11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1059. this.uiLabel11.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1060. //
  1061. // uiTextBox5
  1062. //
  1063. this.uiTextBox5.Cursor = System.Windows.Forms.Cursors.IBeam;
  1064. this.uiTextBox5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1065. this.uiTextBox5.Location = new System.Drawing.Point(1221, 53);
  1066. this.uiTextBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1067. this.uiTextBox5.MinimumSize = new System.Drawing.Size(1, 16);
  1068. this.uiTextBox5.Name = "uiTextBox5";
  1069. this.uiTextBox5.ShowText = false;
  1070. this.uiTextBox5.Size = new System.Drawing.Size(222, 29);
  1071. this.uiTextBox5.TabIndex = 18;
  1072. this.uiTextBox5.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1073. this.uiTextBox5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1074. //
  1075. // uiTextBox6
  1076. //
  1077. this.uiTextBox6.Cursor = System.Windows.Forms.Cursors.IBeam;
  1078. this.uiTextBox6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1079. this.uiTextBox6.Location = new System.Drawing.Point(387, 162);
  1080. this.uiTextBox6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1081. this.uiTextBox6.MinimumSize = new System.Drawing.Size(1, 16);
  1082. this.uiTextBox6.Name = "uiTextBox6";
  1083. this.uiTextBox6.ShowText = false;
  1084. this.uiTextBox6.Size = new System.Drawing.Size(222, 29);
  1085. this.uiTextBox6.TabIndex = 19;
  1086. this.uiTextBox6.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1087. this.uiTextBox6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1088. //
  1089. // uiTextBox7
  1090. //
  1091. this.uiTextBox7.Cursor = System.Windows.Forms.Cursors.IBeam;
  1092. this.uiTextBox7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1093. this.uiTextBox7.Location = new System.Drawing.Point(834, 162);
  1094. this.uiTextBox7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1095. this.uiTextBox7.MinimumSize = new System.Drawing.Size(1, 16);
  1096. this.uiTextBox7.Name = "uiTextBox7";
  1097. this.uiTextBox7.ShowText = false;
  1098. this.uiTextBox7.Size = new System.Drawing.Size(222, 29);
  1099. this.uiTextBox7.TabIndex = 20;
  1100. this.uiTextBox7.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1101. this.uiTextBox7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1102. //
  1103. // uiTextBox8
  1104. //
  1105. this.uiTextBox8.Cursor = System.Windows.Forms.Cursors.IBeam;
  1106. this.uiTextBox8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1107. this.uiTextBox8.Location = new System.Drawing.Point(387, 241);
  1108. this.uiTextBox8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1109. this.uiTextBox8.MinimumSize = new System.Drawing.Size(1, 16);
  1110. this.uiTextBox8.Name = "uiTextBox8";
  1111. this.uiTextBox8.ShowText = false;
  1112. this.uiTextBox8.Size = new System.Drawing.Size(222, 29);
  1113. this.uiTextBox8.TabIndex = 21;
  1114. this.uiTextBox8.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1115. this.uiTextBox8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1116. //
  1117. // uiTextBox9
  1118. //
  1119. this.uiTextBox9.Cursor = System.Windows.Forms.Cursors.IBeam;
  1120. this.uiTextBox9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1121. this.uiTextBox9.Location = new System.Drawing.Point(834, 241);
  1122. this.uiTextBox9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1123. this.uiTextBox9.MinimumSize = new System.Drawing.Size(1, 16);
  1124. this.uiTextBox9.Name = "uiTextBox9";
  1125. this.uiTextBox9.ShowText = false;
  1126. this.uiTextBox9.Size = new System.Drawing.Size(222, 29);
  1127. this.uiTextBox9.TabIndex = 22;
  1128. this.uiTextBox9.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1129. this.uiTextBox9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1130. //
  1131. // uiTextBox10
  1132. //
  1133. this.uiTextBox10.Cursor = System.Windows.Forms.Cursors.IBeam;
  1134. this.uiTextBox10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1135. this.uiTextBox10.Location = new System.Drawing.Point(387, 297);
  1136. this.uiTextBox10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1137. this.uiTextBox10.MinimumSize = new System.Drawing.Size(1, 16);
  1138. this.uiTextBox10.Name = "uiTextBox10";
  1139. this.uiTextBox10.ShowText = false;
  1140. this.uiTextBox10.Size = new System.Drawing.Size(222, 29);
  1141. this.uiTextBox10.TabIndex = 23;
  1142. this.uiTextBox10.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1143. this.uiTextBox10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1144. //
  1145. // uiTextBox11
  1146. //
  1147. this.uiTextBox11.Cursor = System.Windows.Forms.Cursors.IBeam;
  1148. this.uiTextBox11.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1149. this.uiTextBox11.Location = new System.Drawing.Point(1212, 315);
  1150. this.uiTextBox11.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1151. this.uiTextBox11.MinimumSize = new System.Drawing.Size(1, 16);
  1152. this.uiTextBox11.Name = "uiTextBox11";
  1153. this.uiTextBox11.ShowText = false;
  1154. this.uiTextBox11.Size = new System.Drawing.Size(222, 29);
  1155. this.uiTextBox11.TabIndex = 24;
  1156. this.uiTextBox11.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1157. this.uiTextBox11.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1158. //
  1159. // uiLabel12
  1160. //
  1161. this.uiLabel12.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1162. this.uiLabel12.Location = new System.Drawing.Point(1098, 321);
  1163. this.uiLabel12.Name = "uiLabel12";
  1164. this.uiLabel12.Size = new System.Drawing.Size(100, 23);
  1165. this.uiLabel12.TabIndex = 25;
  1166. this.uiLabel12.Text = "受伤地点";
  1167. this.uiLabel12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1168. this.uiLabel12.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1169. //
  1170. // uiLabel13
  1171. //
  1172. this.uiLabel13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1173. this.uiLabel13.Location = new System.Drawing.Point(226, 381);
  1174. this.uiLabel13.Name = "uiLabel13";
  1175. this.uiLabel13.Size = new System.Drawing.Size(100, 23);
  1176. this.uiLabel13.TabIndex = 26;
  1177. this.uiLabel13.Text = "致伤原因";
  1178. this.uiLabel13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1179. this.uiLabel13.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1180. //
  1181. // uiLabel14
  1182. //
  1183. this.uiLabel14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1184. this.uiLabel14.Location = new System.Drawing.Point(677, 381);
  1185. this.uiLabel14.Name = "uiLabel14";
  1186. this.uiLabel14.Size = new System.Drawing.Size(100, 23);
  1187. this.uiLabel14.TabIndex = 27;
  1188. this.uiLabel14.Text = "入院方式";
  1189. this.uiLabel14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1190. this.uiLabel14.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1191. //
  1192. // uiLabel15
  1193. //
  1194. this.uiLabel15.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1195. this.uiLabel15.ForeColor = System.Drawing.Color.Red;
  1196. this.uiLabel15.Location = new System.Drawing.Point(1088, 396);
  1197. this.uiLabel15.Name = "uiLabel15";
  1198. this.uiLabel15.Size = new System.Drawing.Size(100, 23);
  1199. this.uiLabel15.Style = Sunny.UI.UIStyle.Custom;
  1200. this.uiLabel15.TabIndex = 28;
  1201. this.uiLabel15.Text = "入院时间";
  1202. this.uiLabel15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1203. this.uiLabel15.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1204. //
  1205. // uiTextBox12
  1206. //
  1207. this.uiTextBox12.Cursor = System.Windows.Forms.Cursors.IBeam;
  1208. this.uiTextBox12.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1209. this.uiTextBox12.Location = new System.Drawing.Point(387, 381);
  1210. this.uiTextBox12.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1211. this.uiTextBox12.MinimumSize = new System.Drawing.Size(1, 16);
  1212. this.uiTextBox12.Name = "uiTextBox12";
  1213. this.uiTextBox12.ShowText = false;
  1214. this.uiTextBox12.Size = new System.Drawing.Size(222, 29);
  1215. this.uiTextBox12.TabIndex = 29;
  1216. this.uiTextBox12.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1217. this.uiTextBox12.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1218. //
  1219. // uiTextBox13
  1220. //
  1221. this.uiTextBox13.Cursor = System.Windows.Forms.Cursors.IBeam;
  1222. this.uiTextBox13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1223. this.uiTextBox13.Location = new System.Drawing.Point(834, 381);
  1224. this.uiTextBox13.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1225. this.uiTextBox13.MinimumSize = new System.Drawing.Size(1, 16);
  1226. this.uiTextBox13.Name = "uiTextBox13";
  1227. this.uiTextBox13.ShowText = false;
  1228. this.uiTextBox13.Size = new System.Drawing.Size(222, 29);
  1229. this.uiTextBox13.TabIndex = 30;
  1230. this.uiTextBox13.Text = "门诊";
  1231. this.uiTextBox13.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1232. this.uiTextBox13.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1233. //
  1234. // uiLabel16
  1235. //
  1236. this.uiLabel16.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1237. this.uiLabel16.ForeColor = System.Drawing.Color.Red;
  1238. this.uiLabel16.Location = new System.Drawing.Point(36, 334);
  1239. this.uiLabel16.Name = "uiLabel16";
  1240. this.uiLabel16.Size = new System.Drawing.Size(100, 51);
  1241. this.uiLabel16.Style = Sunny.UI.UIStyle.Custom;
  1242. this.uiLabel16.TabIndex = 31;
  1243. this.uiLabel16.Text = "红色必填";
  1244. this.uiLabel16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1245. this.uiLabel16.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1246. //
  1247. // uiLabel17
  1248. //
  1249. this.uiLabel17.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1250. this.uiLabel17.Location = new System.Drawing.Point(194, 469);
  1251. this.uiLabel17.Name = "uiLabel17";
  1252. this.uiLabel17.Size = new System.Drawing.Size(132, 23);
  1253. this.uiLabel17.TabIndex = 32;
  1254. this.uiLabel17.Text = "入院诊断描述";
  1255. this.uiLabel17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1256. this.uiLabel17.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1257. //
  1258. // uiLabel18
  1259. //
  1260. this.uiLabel18.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1261. this.uiLabel18.Location = new System.Drawing.Point(1098, 247);
  1262. this.uiLabel18.Name = "uiLabel18";
  1263. this.uiLabel18.Size = new System.Drawing.Size(100, 29);
  1264. this.uiLabel18.TabIndex = 33;
  1265. this.uiLabel18.Text = "联系电话";
  1266. this.uiLabel18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1267. this.uiLabel18.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1268. //
  1269. // uiLabel19
  1270. //
  1271. this.uiLabel19.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1272. this.uiLabel19.Location = new System.Drawing.Point(1098, 168);
  1273. this.uiLabel19.Name = "uiLabel19";
  1274. this.uiLabel19.Size = new System.Drawing.Size(100, 23);
  1275. this.uiLabel19.TabIndex = 34;
  1276. this.uiLabel19.Text = "联系地址";
  1277. this.uiLabel19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1278. this.uiLabel19.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1279. //
  1280. // uiLabel20
  1281. //
  1282. this.uiLabel20.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1283. this.uiLabel20.Location = new System.Drawing.Point(1098, 112);
  1284. this.uiLabel20.Name = "uiLabel20";
  1285. this.uiLabel20.Size = new System.Drawing.Size(100, 23);
  1286. this.uiLabel20.TabIndex = 35;
  1287. this.uiLabel20.Text = "险种类型";
  1288. this.uiLabel20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1289. this.uiLabel20.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1290. //
  1291. // uiDatetimePicker2
  1292. //
  1293. this.uiDatetimePicker2.FillColor = System.Drawing.Color.White;
  1294. this.uiDatetimePicker2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1295. this.uiDatetimePicker2.Location = new System.Drawing.Point(834, 303);
  1296. this.uiDatetimePicker2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1297. this.uiDatetimePicker2.MaxLength = 19;
  1298. this.uiDatetimePicker2.MinimumSize = new System.Drawing.Size(63, 0);
  1299. this.uiDatetimePicker2.Name = "uiDatetimePicker2";
  1300. this.uiDatetimePicker2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1301. this.uiDatetimePicker2.Size = new System.Drawing.Size(200, 29);
  1302. this.uiDatetimePicker2.SymbolDropDown = 61555;
  1303. this.uiDatetimePicker2.SymbolNormal = 61555;
  1304. this.uiDatetimePicker2.TabIndex = 37;
  1305. this.uiDatetimePicker2.Text = "2026-04-07 15:27:16";
  1306. this.uiDatetimePicker2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1307. this.uiDatetimePicker2.Value = new System.DateTime(2026, 4, 7, 15, 27, 16, 291);
  1308. this.uiDatetimePicker2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1309. //
  1310. // uiDatetimePicker1
  1311. //
  1312. this.uiDatetimePicker1.FillColor = System.Drawing.Color.White;
  1313. this.uiDatetimePicker1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1314. this.uiDatetimePicker1.Location = new System.Drawing.Point(1221, 390);
  1315. this.uiDatetimePicker1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1316. this.uiDatetimePicker1.MaxLength = 19;
  1317. this.uiDatetimePicker1.MinimumSize = new System.Drawing.Size(63, 0);
  1318. this.uiDatetimePicker1.Name = "uiDatetimePicker1";
  1319. this.uiDatetimePicker1.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1320. this.uiDatetimePicker1.Size = new System.Drawing.Size(200, 29);
  1321. this.uiDatetimePicker1.SymbolDropDown = 61555;
  1322. this.uiDatetimePicker1.SymbolNormal = 61555;
  1323. this.uiDatetimePicker1.TabIndex = 38;
  1324. this.uiDatetimePicker1.Text = "2026-04-07 15:27:16";
  1325. this.uiDatetimePicker1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1326. this.uiDatetimePicker1.Value = new System.DateTime(2026, 4, 7, 15, 27, 16, 291);
  1327. this.uiDatetimePicker1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1328. //
  1329. // uiTextBox14
  1330. //
  1331. this.uiTextBox14.Cursor = System.Windows.Forms.Cursors.IBeam;
  1332. this.uiTextBox14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1333. this.uiTextBox14.Location = new System.Drawing.Point(387, 463);
  1334. this.uiTextBox14.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1335. this.uiTextBox14.MinimumSize = new System.Drawing.Size(1, 16);
  1336. this.uiTextBox14.Name = "uiTextBox14";
  1337. this.uiTextBox14.ShowText = false;
  1338. this.uiTextBox14.Size = new System.Drawing.Size(222, 29);
  1339. this.uiTextBox14.TabIndex = 39;
  1340. this.uiTextBox14.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1341. this.uiTextBox14.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1342. //
  1343. // uiTextBox15
  1344. //
  1345. this.uiTextBox15.Cursor = System.Windows.Forms.Cursors.IBeam;
  1346. this.uiTextBox15.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1347. this.uiTextBox15.Location = new System.Drawing.Point(1221, 118);
  1348. this.uiTextBox15.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1349. this.uiTextBox15.MinimumSize = new System.Drawing.Size(1, 16);
  1350. this.uiTextBox15.Name = "uiTextBox15";
  1351. this.uiTextBox15.ShowText = false;
  1352. this.uiTextBox15.Size = new System.Drawing.Size(222, 29);
  1353. this.uiTextBox15.TabIndex = 40;
  1354. this.uiTextBox15.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1355. this.uiTextBox15.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1356. //
  1357. // uiTextBox16
  1358. //
  1359. this.uiTextBox16.Cursor = System.Windows.Forms.Cursors.IBeam;
  1360. this.uiTextBox16.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1361. this.uiTextBox16.Location = new System.Drawing.Point(1221, 168);
  1362. this.uiTextBox16.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1363. this.uiTextBox16.MinimumSize = new System.Drawing.Size(1, 16);
  1364. this.uiTextBox16.Name = "uiTextBox16";
  1365. this.uiTextBox16.ShowText = false;
  1366. this.uiTextBox16.Size = new System.Drawing.Size(222, 29);
  1367. this.uiTextBox16.TabIndex = 41;
  1368. this.uiTextBox16.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1369. this.uiTextBox16.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1370. //
  1371. // uiTextBox17
  1372. //
  1373. this.uiTextBox17.Cursor = System.Windows.Forms.Cursors.IBeam;
  1374. this.uiTextBox17.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1375. this.uiTextBox17.Location = new System.Drawing.Point(1221, 247);
  1376. this.uiTextBox17.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1377. this.uiTextBox17.MinimumSize = new System.Drawing.Size(1, 16);
  1378. this.uiTextBox17.Name = "uiTextBox17";
  1379. this.uiTextBox17.ShowText = false;
  1380. this.uiTextBox17.Size = new System.Drawing.Size(222, 29);
  1381. this.uiTextBox17.TabIndex = 42;
  1382. this.uiTextBox17.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1383. this.uiTextBox17.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1384. //
  1385. // uiPanel1
  1386. //
  1387. this.uiPanel1.Controls.Add(this.uiDatetimePicker4);
  1388. this.uiPanel1.Controls.Add(this.uiDatetimePicker3);
  1389. this.uiPanel1.Controls.Add(this.uiLabel22);
  1390. this.uiPanel1.Controls.Add(this.uiLabel21);
  1391. this.uiPanel1.Controls.Add(this.uiButton2);
  1392. this.uiPanel1.Controls.Add(this.uiTextBox14);
  1393. this.uiPanel1.Controls.Add(this.uiTextBox17);
  1394. this.uiPanel1.Controls.Add(this.uiLabel17);
  1395. this.uiPanel1.Controls.Add(this.uiDatetimePicker1);
  1396. this.uiPanel1.Controls.Add(this.uiLabel16);
  1397. this.uiPanel1.Controls.Add(this.uiLabel1);
  1398. this.uiPanel1.Controls.Add(this.uiDatetimePicker2);
  1399. this.uiPanel1.Controls.Add(this.uiTextBox16);
  1400. this.uiPanel1.Controls.Add(this.uiTextBox1);
  1401. this.uiPanel1.Controls.Add(this.uiTextBox15);
  1402. this.uiPanel1.Controls.Add(this.uiTextBox13);
  1403. this.uiPanel1.Controls.Add(this.uiLabel2);
  1404. this.uiPanel1.Controls.Add(this.uiTextBox12);
  1405. this.uiPanel1.Controls.Add(this.uiTextBox2);
  1406. this.uiPanel1.Controls.Add(this.uiLabel15);
  1407. this.uiPanel1.Controls.Add(this.uiLabel19);
  1408. this.uiPanel1.Controls.Add(this.uiLabel14);
  1409. this.uiPanel1.Controls.Add(this.uiLabel6);
  1410. this.uiPanel1.Controls.Add(this.uiLabel13);
  1411. this.uiPanel1.Controls.Add(this.uiLabel18);
  1412. this.uiPanel1.Controls.Add(this.uiLabel12);
  1413. this.uiPanel1.Controls.Add(this.uiTextBox5);
  1414. this.uiPanel1.Controls.Add(this.uiTextBox11);
  1415. this.uiPanel1.Controls.Add(this.uiLabel20);
  1416. this.uiPanel1.Controls.Add(this.uiTextBox10);
  1417. this.uiPanel1.Controls.Add(this.uiLabel11);
  1418. this.uiPanel1.Controls.Add(this.uiLabel4);
  1419. this.uiPanel1.Controls.Add(this.uiLabel5);
  1420. this.uiPanel1.Controls.Add(this.uiLabel3);
  1421. this.uiPanel1.Controls.Add(this.uiTextBox3);
  1422. this.uiPanel1.Controls.Add(this.uiButton1);
  1423. this.uiPanel1.Controls.Add(this.uiTextBox4);
  1424. this.uiPanel1.Controls.Add(this.uiLabel8);
  1425. this.uiPanel1.Controls.Add(this.uiLabel7);
  1426. this.uiPanel1.Controls.Add(this.uiLabel9);
  1427. this.uiPanel1.Controls.Add(this.uiLabel10);
  1428. this.uiPanel1.Controls.Add(this.uiTextBox6);
  1429. this.uiPanel1.Controls.Add(this.uiTextBox9);
  1430. this.uiPanel1.Controls.Add(this.uiTextBox7);
  1431. this.uiPanel1.Controls.Add(this.uiTextBox8);
  1432. this.uiPanel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1433. this.uiPanel1.Location = new System.Drawing.Point(4, 10);
  1434. this.uiPanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1435. this.uiPanel1.MinimumSize = new System.Drawing.Size(1, 1);
  1436. this.uiPanel1.Name = "uiPanel1";
  1437. this.uiPanel1.Size = new System.Drawing.Size(1523, 901);
  1438. this.uiPanel1.TabIndex = 43;
  1439. this.uiPanel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1440. this.uiPanel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1441. //
  1442. // uiLabel21
  1443. //
  1444. this.uiLabel21.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1445. this.uiLabel21.Location = new System.Drawing.Point(677, 469);
  1446. this.uiLabel21.Name = "uiLabel21";
  1447. this.uiLabel21.Size = new System.Drawing.Size(100, 23);
  1448. this.uiLabel21.TabIndex = 43;
  1449. this.uiLabel21.Text = "开始日期";
  1450. this.uiLabel21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1451. this.uiLabel21.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1452. //
  1453. // uiLabel22
  1454. //
  1455. this.uiLabel22.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1456. this.uiLabel22.Location = new System.Drawing.Point(1088, 463);
  1457. this.uiLabel22.Name = "uiLabel22";
  1458. this.uiLabel22.Size = new System.Drawing.Size(100, 23);
  1459. this.uiLabel22.TabIndex = 44;
  1460. this.uiLabel22.Text = "结束日期";
  1461. this.uiLabel22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1462. this.uiLabel22.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1463. //
  1464. // uiDatetimePicker3
  1465. //
  1466. this.uiDatetimePicker3.DateFormat = "yyyy-MM-dd";
  1467. this.uiDatetimePicker3.FillColor = System.Drawing.Color.White;
  1468. this.uiDatetimePicker3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1469. this.uiDatetimePicker3.Location = new System.Drawing.Point(834, 463);
  1470. this.uiDatetimePicker3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1471. this.uiDatetimePicker3.MaxLength = 10;
  1472. this.uiDatetimePicker3.MinimumSize = new System.Drawing.Size(63, 0);
  1473. this.uiDatetimePicker3.Name = "uiDatetimePicker3";
  1474. this.uiDatetimePicker3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1475. this.uiDatetimePicker3.Size = new System.Drawing.Size(200, 29);
  1476. this.uiDatetimePicker3.SymbolDropDown = 61555;
  1477. this.uiDatetimePicker3.SymbolNormal = 61555;
  1478. this.uiDatetimePicker3.TabIndex = 45;
  1479. this.uiDatetimePicker3.Text = "2026-04-07";
  1480. this.uiDatetimePicker3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1481. this.uiDatetimePicker3.Value = new System.DateTime(2026, 4, 7, 15, 27, 16, 291);
  1482. this.uiDatetimePicker3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1483. //
  1484. // uiDatetimePicker4
  1485. //
  1486. this.uiDatetimePicker4.DateFormat = "yyyy-MM-dd";
  1487. this.uiDatetimePicker4.FillColor = System.Drawing.Color.White;
  1488. this.uiDatetimePicker4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1489. this.uiDatetimePicker4.Location = new System.Drawing.Point(1221, 457);
  1490. this.uiDatetimePicker4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1491. this.uiDatetimePicker4.MaxLength = 10;
  1492. this.uiDatetimePicker4.MinimumSize = new System.Drawing.Size(63, 0);
  1493. this.uiDatetimePicker4.Name = "uiDatetimePicker4";
  1494. this.uiDatetimePicker4.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1495. this.uiDatetimePicker4.Size = new System.Drawing.Size(200, 29);
  1496. this.uiDatetimePicker4.SymbolDropDown = 61555;
  1497. this.uiDatetimePicker4.SymbolNormal = 61555;
  1498. this.uiDatetimePicker4.TabIndex = 46;
  1499. this.uiDatetimePicker4.Text = "2026-04-07";
  1500. this.uiDatetimePicker4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1501. this.uiDatetimePicker4.Value = new System.DateTime(2026, 4, 7, 15, 27, 16, 291);
  1502. this.uiDatetimePicker4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1503. //
  1504. // ToPutOnRecord
  1505. //
  1506. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1507. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1508. this.ClientSize = new System.Drawing.Size(1527, 933);
  1509. this.Controls.Add(this.tabRecord);
  1510. this.Name = "ToPutOnRecord";
  1511. this.Text = "医保备案相关";
  1512. this.tabRecord.ResumeLayout(false);
  1513. this.tabPage1.ResumeLayout(false);
  1514. this.panel1.ResumeLayout(false);
  1515. this.panel1.PerformLayout();
  1516. this.panel5.ResumeLayout(false);
  1517. this.panel5.PerformLayout();
  1518. this.groupBox1.ResumeLayout(false);
  1519. ((System.ComponentModel.ISupportInitialize)(this.dgvApplyResult)).EndInit();
  1520. this.panel2.ResumeLayout(false);
  1521. this.panel3.ResumeLayout(false);
  1522. this.panel3.PerformLayout();
  1523. this.panel4.ResumeLayout(false);
  1524. this.panel4.PerformLayout();
  1525. this.tabPage3.ResumeLayout(false);
  1526. this.uiPanel1.ResumeLayout(false);
  1527. this.ResumeLayout(false);
  1528. }
  1529. #endregion
  1530. private System.Windows.Forms.TabControl tabRecord;
  1531. private System.Windows.Forms.TabPage tabPage1;
  1532. private System.Windows.Forms.TabPage tabPage2;
  1533. private System.Windows.Forms.Panel panel2;
  1534. private System.Windows.Forms.Panel panel4;
  1535. private System.Windows.Forms.Label label10;
  1536. private System.Windows.Forms.Label label13;
  1537. private System.Windows.Forms.TextBox textBox6;
  1538. private System.Windows.Forms.Label label15;
  1539. private System.Windows.Forms.Label label19;
  1540. private System.Windows.Forms.Label label26;
  1541. private System.Windows.Forms.Button btReadCard_1;
  1542. private System.Windows.Forms.Panel panel1;
  1543. private System.Windows.Forms.TextBox textBox4;
  1544. private System.Windows.Forms.Panel panel5;
  1545. private Sunny.UI.UIDataGridView dgvApplyResult;
  1546. private System.Windows.Forms.TextBox tbPsnNo2_1;
  1547. private System.Windows.Forms.Button btCancleByCenter_1;
  1548. private System.Windows.Forms.Button btClose_1;
  1549. private System.Windows.Forms.Button btQueryHisRecord_1;
  1550. private System.Windows.Forms.TextBox tbAddress_1;
  1551. private System.Windows.Forms.TextBox tbTel_1;
  1552. private System.Windows.Forms.TextBox tbPsnNO_1;
  1553. private System.Windows.Forms.TextBox tbName_1;
  1554. public PTControl.DBLookupCombox dblkcbxInsuranceType_1;
  1555. private System.Windows.Forms.Button btCancleByHis_1;
  1556. private System.Windows.Forms.Button btQueryCenterRecord_1;
  1557. private System.Windows.Forms.RadioButton rbDeclareNo_1;
  1558. private System.Windows.Forms.RadioButton rbPsnNo_1;
  1559. private System.Windows.Forms.RadioButton rbName_1;
  1560. private System.Windows.Forms.GroupBox groupBox1;
  1561. private System.Windows.Forms.RichTextBox rtbCancleReason_1;
  1562. private System.Windows.Forms.Panel panel3;
  1563. private System.Windows.Forms.DateTimePicker dpAuth;
  1564. private System.Windows.Forms.DateTimePicker dpEnd;
  1565. private System.Windows.Forms.DateTimePicker dpStart;
  1566. private System.Windows.Forms.Button btApply_1;
  1567. private System.Windows.Forms.Label label6;
  1568. private System.Windows.Forms.Label label1;
  1569. private System.Windows.Forms.Label label2;
  1570. private System.Windows.Forms.Label label9;
  1571. private System.Windows.Forms.Label label8;
  1572. private System.Windows.Forms.Label label5;
  1573. private System.Windows.Forms.TextBox textBox3;
  1574. private System.Windows.Forms.Label lab_EndDate;
  1575. private System.Windows.Forms.Label lab_StaDate;
  1576. public PTControl.DBLookupCombox dblkcbxDieaseCode_1;
  1577. public PTControl.DBLookupCombox dblkcbxDoctor_1;
  1578. public PTControl.DBLookupCombox dblkcbxCbd_1;
  1579. public PTControl.DBLookupCombox dblkcbxDept_1;
  1580. public PTControl.DBLookupCombox dblkcbxHospitalCode_1;
  1581. private System.Windows.Forms.TabPage tabPage3;
  1582. private Sunny.UI.UIButton uiButton1;
  1583. private Sunny.UI.UIButton uiButton2;
  1584. private Sunny.UI.UILabel uiLabel6;
  1585. private Sunny.UI.UILabel uiLabel4;
  1586. private Sunny.UI.UILabel uiLabel3;
  1587. private Sunny.UI.UILabel uiLabel2;
  1588. private Sunny.UI.UILabel uiLabel1;
  1589. private Sunny.UI.UILabel uiLabel11;
  1590. private Sunny.UI.UILabel uiLabel10;
  1591. private Sunny.UI.UILabel uiLabel9;
  1592. private Sunny.UI.UILabel uiLabel8;
  1593. private Sunny.UI.UILabel uiLabel7;
  1594. private Sunny.UI.UILabel uiLabel5;
  1595. private Sunny.UI.UITextBox uiTextBox4;
  1596. private Sunny.UI.UITextBox uiTextBox3;
  1597. private Sunny.UI.UITextBox uiTextBox2;
  1598. private Sunny.UI.UITextBox uiTextBox1;
  1599. private Sunny.UI.UITextBox uiTextBox5;
  1600. private Sunny.UI.UITextBox uiTextBox17;
  1601. private Sunny.UI.UITextBox uiTextBox16;
  1602. private Sunny.UI.UITextBox uiTextBox15;
  1603. private Sunny.UI.UITextBox uiTextBox14;
  1604. private Sunny.UI.UIDatetimePicker uiDatetimePicker1;
  1605. private Sunny.UI.UIDatetimePicker uiDatetimePicker2;
  1606. private Sunny.UI.UILabel uiLabel20;
  1607. private Sunny.UI.UILabel uiLabel19;
  1608. private Sunny.UI.UILabel uiLabel18;
  1609. private Sunny.UI.UILabel uiLabel17;
  1610. private Sunny.UI.UILabel uiLabel16;
  1611. private Sunny.UI.UITextBox uiTextBox13;
  1612. private Sunny.UI.UITextBox uiTextBox12;
  1613. private Sunny.UI.UILabel uiLabel15;
  1614. private Sunny.UI.UILabel uiLabel14;
  1615. private Sunny.UI.UILabel uiLabel13;
  1616. private Sunny.UI.UILabel uiLabel12;
  1617. private Sunny.UI.UITextBox uiTextBox11;
  1618. private Sunny.UI.UITextBox uiTextBox10;
  1619. private Sunny.UI.UITextBox uiTextBox9;
  1620. private Sunny.UI.UITextBox uiTextBox8;
  1621. private Sunny.UI.UITextBox uiTextBox7;
  1622. private Sunny.UI.UITextBox uiTextBox6;
  1623. private Sunny.UI.UIPanel uiPanel1;
  1624. private Sunny.UI.UIDatetimePicker uiDatetimePicker4;
  1625. private Sunny.UI.UIDatetimePicker uiDatetimePicker3;
  1626. private Sunny.UI.UILabel uiLabel22;
  1627. private Sunny.UI.UILabel uiLabel21;
  1628. }
  1629. }