InpatientRegistration.designer.cs 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996
  1. 
  2. namespace PTMedicalInsurance.Forms
  3. {
  4. partial class InpatientRegistration
  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 dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  30. this.panel1 = new System.Windows.Forms.Panel();
  31. this.txtLocateCode = new Sunny.UI.UITextBox();
  32. this.chkEmergency = new Sunny.UI.UICheckBox();
  33. this.cbxAccountPay = new Sunny.UI.UICheckBox();
  34. this.Chk_RelTtpFlag = new Sunny.UI.UICheckBox();
  35. this.chkDanger = new Sunny.UI.UICheckBox();
  36. this.Chk_TraumaFlag = new Sunny.UI.UICheckBox();
  37. this.dblkcbxExitway = new PTControl.DBLookupCombox();
  38. this.label5 = new System.Windows.Forms.Label();
  39. this.label8 = new System.Windows.Forms.Label();
  40. this.dblkcbxSettelmentWay = new PTControl.DBLookupCombox();
  41. this.dblkcbxDisease = new PTControl.DBLookupCombox();
  42. this.dblkcbxMedicalType = new PTControl.DBLookupCombox();
  43. this.dblkcbxInsuranceType = new PTControl.DBLookupCombox();
  44. this.label4 = new System.Windows.Forms.Label();
  45. this.label3 = new System.Windows.Forms.Label();
  46. this.label2 = new System.Windows.Forms.Label();
  47. this.label1 = new System.Windows.Forms.Label();
  48. this.pnlFooter = new System.Windows.Forms.Panel();
  49. this.uiButton1 = new Sunny.UI.UIButton();
  50. this.button2 = new System.Windows.Forms.Button();
  51. this.button1 = new System.Windows.Forms.Button();
  52. this.dgvDiagnose = new System.Windows.Forms.DataGridView();
  53. this.diag_type_name = new System.Windows.Forms.DataGridViewTextBoxColumn();
  54. this.maindiag_flag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  55. this.diag_srt_no = new System.Windows.Forms.DataGridViewTextBoxColumn();
  56. this.diag_name = new System.Windows.Forms.DataGridViewTextBoxColumn();
  57. this.diag_code = new System.Windows.Forms.DataGridViewTextBoxColumn();
  58. this.diag_dept = new System.Windows.Forms.DataGridViewTextBoxColumn();
  59. this.adm_cond = new System.Windows.Forms.DataGridViewTextBoxColumn();
  60. this.dise_dor_no = new System.Windows.Forms.DataGridViewTextBoxColumn();
  61. this.dise_dor_name = new System.Windows.Forms.DataGridViewTextBoxColumn();
  62. this.diag_time = new System.Windows.Forms.DataGridViewTextBoxColumn();
  63. this.pnlBottom = new System.Windows.Forms.Panel();
  64. this.txtBirthDay = new Sunny.UI.UITextBox();
  65. this.txtInsuType = new Sunny.UI.UITextBox();
  66. this.txtAge = new Sunny.UI.UITextBox();
  67. this.uiLabel4 = new Sunny.UI.UILabel();
  68. this.lbAge = new Sunny.UI.UILabel();
  69. this.lb1 = new Sunny.UI.UILabel();
  70. this.txtPsnNO = new Sunny.UI.UITextBox();
  71. this.txtCorp = new Sunny.UI.UITextBox();
  72. this.uiLabel27 = new Sunny.UI.UILabel();
  73. this.uiLabel28 = new Sunny.UI.UILabel();
  74. this.txtPsnType = new Sunny.UI.UITextBox();
  75. this.txtCertNO = new Sunny.UI.UITextBox();
  76. this.txtAdmvs = new Sunny.UI.UITextBox();
  77. this.txtCertType = new Sunny.UI.UITextBox();
  78. this.uiLabel3 = new Sunny.UI.UILabel();
  79. this.uiLabel25 = new Sunny.UI.UILabel();
  80. this.uiLabel2 = new Sunny.UI.UILabel();
  81. this.uiLabel26 = new Sunny.UI.UILabel();
  82. this.txtBalc = new Sunny.UI.UITextBox();
  83. this.txtGend = new Sunny.UI.UITextBox();
  84. this.txtName = new Sunny.UI.UITextBox();
  85. this.uiLabel1 = new Sunny.UI.UILabel();
  86. this.uiLabel20 = new Sunny.UI.UILabel();
  87. this.grpHeader = new Sunny.UI.UIGroupBox();
  88. this.uiLabel21 = new Sunny.UI.UILabel();
  89. this.panel1.SuspendLayout();
  90. this.pnlFooter.SuspendLayout();
  91. ((System.ComponentModel.ISupportInitialize)(this.dgvDiagnose)).BeginInit();
  92. this.pnlBottom.SuspendLayout();
  93. this.grpHeader.SuspendLayout();
  94. this.SuspendLayout();
  95. //
  96. // panel1
  97. //
  98. this.panel1.BackColor = System.Drawing.SystemColors.Window;
  99. this.panel1.Controls.Add(this.txtLocateCode);
  100. this.panel1.Controls.Add(this.chkEmergency);
  101. this.panel1.Controls.Add(this.cbxAccountPay);
  102. this.panel1.Controls.Add(this.Chk_RelTtpFlag);
  103. this.panel1.Controls.Add(this.chkDanger);
  104. this.panel1.Controls.Add(this.Chk_TraumaFlag);
  105. this.panel1.Controls.Add(this.dblkcbxExitway);
  106. this.panel1.Controls.Add(this.label5);
  107. this.panel1.Controls.Add(this.label8);
  108. this.panel1.Controls.Add(this.dblkcbxSettelmentWay);
  109. this.panel1.Controls.Add(this.dblkcbxDisease);
  110. this.panel1.Controls.Add(this.dblkcbxMedicalType);
  111. this.panel1.Controls.Add(this.dblkcbxInsuranceType);
  112. this.panel1.Controls.Add(this.label4);
  113. this.panel1.Controls.Add(this.label3);
  114. this.panel1.Controls.Add(this.label2);
  115. this.panel1.Controls.Add(this.label1);
  116. this.panel1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
  117. this.panel1.Location = new System.Drawing.Point(0, 141);
  118. this.panel1.Name = "panel1";
  119. this.panel1.Size = new System.Drawing.Size(1267, 168);
  120. this.panel1.TabIndex = 12;
  121. //
  122. // txtLocateCode
  123. //
  124. this.txtLocateCode.Cursor = System.Windows.Forms.Cursors.IBeam;
  125. this.txtLocateCode.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  126. this.txtLocateCode.Location = new System.Drawing.Point(602, 126);
  127. this.txtLocateCode.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  128. this.txtLocateCode.MinimumSize = new System.Drawing.Size(1, 16);
  129. this.txtLocateCode.Name = "txtLocateCode";
  130. this.txtLocateCode.ShowText = false;
  131. this.txtLocateCode.Size = new System.Drawing.Size(257, 29);
  132. this.txtLocateCode.TabIndex = 51;
  133. this.txtLocateCode.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  134. this.txtLocateCode.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  135. //
  136. // chkEmergency
  137. //
  138. this.chkEmergency.Cursor = System.Windows.Forms.Cursors.Hand;
  139. this.chkEmergency.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  140. this.chkEmergency.Location = new System.Drawing.Point(944, 27);
  141. this.chkEmergency.MinimumSize = new System.Drawing.Size(1, 1);
  142. this.chkEmergency.Name = "chkEmergency";
  143. this.chkEmergency.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
  144. this.chkEmergency.Size = new System.Drawing.Size(86, 29);
  145. this.chkEmergency.TabIndex = 50;
  146. this.chkEmergency.Text = "急诊";
  147. this.chkEmergency.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  148. //
  149. // cbxAccountPay
  150. //
  151. this.cbxAccountPay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  152. this.cbxAccountPay.Checked = true;
  153. this.cbxAccountPay.Cursor = System.Windows.Forms.Cursors.Hand;
  154. this.cbxAccountPay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  155. this.cbxAccountPay.Location = new System.Drawing.Point(1100, 19);
  156. this.cbxAccountPay.MinimumSize = new System.Drawing.Size(1, 1);
  157. this.cbxAccountPay.Name = "cbxAccountPay";
  158. this.cbxAccountPay.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
  159. this.cbxAccountPay.Size = new System.Drawing.Size(128, 29);
  160. this.cbxAccountPay.TabIndex = 48;
  161. this.cbxAccountPay.Text = "账户支付";
  162. this.cbxAccountPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  163. //
  164. // Chk_RelTtpFlag
  165. //
  166. this.Chk_RelTtpFlag.Cursor = System.Windows.Forms.Cursors.Hand;
  167. this.Chk_RelTtpFlag.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  168. this.Chk_RelTtpFlag.Location = new System.Drawing.Point(1100, 76);
  169. this.Chk_RelTtpFlag.MinimumSize = new System.Drawing.Size(1, 1);
  170. this.Chk_RelTtpFlag.Name = "Chk_RelTtpFlag";
  171. this.Chk_RelTtpFlag.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
  172. this.Chk_RelTtpFlag.Size = new System.Drawing.Size(128, 29);
  173. this.Chk_RelTtpFlag.TabIndex = 46;
  174. this.Chk_RelTtpFlag.Text = "涉及第三方";
  175. this.Chk_RelTtpFlag.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  176. //
  177. // chkDanger
  178. //
  179. this.chkDanger.Cursor = System.Windows.Forms.Cursors.Hand;
  180. this.chkDanger.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  181. this.chkDanger.Location = new System.Drawing.Point(944, 125);
  182. this.chkDanger.MinimumSize = new System.Drawing.Size(1, 1);
  183. this.chkDanger.Name = "chkDanger";
  184. this.chkDanger.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
  185. this.chkDanger.Size = new System.Drawing.Size(139, 29);
  186. this.chkDanger.TabIndex = 45;
  187. this.chkDanger.Text = "危重患者";
  188. this.chkDanger.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  189. //
  190. // Chk_TraumaFlag
  191. //
  192. this.Chk_TraumaFlag.Cursor = System.Windows.Forms.Cursors.Hand;
  193. this.Chk_TraumaFlag.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  194. this.Chk_TraumaFlag.Location = new System.Drawing.Point(944, 76);
  195. this.Chk_TraumaFlag.MinimumSize = new System.Drawing.Size(1, 1);
  196. this.Chk_TraumaFlag.Name = "Chk_TraumaFlag";
  197. this.Chk_TraumaFlag.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
  198. this.Chk_TraumaFlag.Size = new System.Drawing.Size(102, 29);
  199. this.Chk_TraumaFlag.TabIndex = 45;
  200. this.Chk_TraumaFlag.Text = "外伤";
  201. this.Chk_TraumaFlag.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  202. //
  203. // dblkcbxExitway
  204. //
  205. this.dblkcbxExitway.FormattingEnabled = true;
  206. this.dblkcbxExitway.Location = new System.Drawing.Point(602, 79);
  207. this.dblkcbxExitway.Name = "dblkcbxExitway";
  208. this.dblkcbxExitway.NullValue = "";
  209. this.dblkcbxExitway.PopupGridAutoSize = false;
  210. this.dblkcbxExitway.RowFilterVisible = false;
  211. this.dblkcbxExitway.sDisplayField = "";
  212. this.dblkcbxExitway.sDisplayMember = "";
  213. this.dblkcbxExitway.SeparatorChar = "|";
  214. this.dblkcbxExitway.Size = new System.Drawing.Size(257, 30);
  215. this.dblkcbxExitway.sKeyWords = "";
  216. this.dblkcbxExitway.sValueMember = "";
  217. this.dblkcbxExitway.TabIndex = 44;
  218. this.dblkcbxExitway.Value = "";
  219. this.dblkcbxExitway.AfterSelector += new PTControl.AfterSelectorEventHandler(this.dblkcbxHospType_AfterSelector);
  220. //
  221. // label5
  222. //
  223. this.label5.AutoSize = true;
  224. this.label5.ForeColor = System.Drawing.SystemColors.InfoText;
  225. this.label5.Location = new System.Drawing.Point(506, 133);
  226. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  227. this.label5.Name = "label5";
  228. this.label5.Size = new System.Drawing.Size(98, 22);
  229. this.label5.TabIndex = 43;
  230. this.label5.Text = "本地编码";
  231. //
  232. // label8
  233. //
  234. this.label8.AutoSize = true;
  235. this.label8.ForeColor = System.Drawing.SystemColors.InfoText;
  236. this.label8.Location = new System.Drawing.Point(506, 82);
  237. this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  238. this.label8.Name = "label8";
  239. this.label8.Size = new System.Drawing.Size(98, 22);
  240. this.label8.TabIndex = 43;
  241. this.label8.Text = "离院方式";
  242. //
  243. // dblkcbxSettelmentWay
  244. //
  245. this.dblkcbxSettelmentWay.FormattingEnabled = true;
  246. this.dblkcbxSettelmentWay.Location = new System.Drawing.Point(163, 125);
  247. this.dblkcbxSettelmentWay.Name = "dblkcbxSettelmentWay";
  248. this.dblkcbxSettelmentWay.NullValue = "";
  249. this.dblkcbxSettelmentWay.PopupGridAutoSize = false;
  250. this.dblkcbxSettelmentWay.RowFilterVisible = false;
  251. this.dblkcbxSettelmentWay.sDisplayField = "";
  252. this.dblkcbxSettelmentWay.sDisplayMember = "";
  253. this.dblkcbxSettelmentWay.SeparatorChar = "|";
  254. this.dblkcbxSettelmentWay.Size = new System.Drawing.Size(257, 30);
  255. this.dblkcbxSettelmentWay.sKeyWords = "";
  256. this.dblkcbxSettelmentWay.sValueMember = "";
  257. this.dblkcbxSettelmentWay.TabIndex = 22;
  258. this.dblkcbxSettelmentWay.Value = "";
  259. this.dblkcbxSettelmentWay.AfterSelector += new PTControl.AfterSelectorEventHandler(this.dblkcbxSettelmentWay_AfterSelector);
  260. //
  261. // dblkcbxDisease
  262. //
  263. this.dblkcbxDisease.FormattingEnabled = true;
  264. this.dblkcbxDisease.Location = new System.Drawing.Point(163, 76);
  265. this.dblkcbxDisease.Name = "dblkcbxDisease";
  266. this.dblkcbxDisease.NullValue = "";
  267. this.dblkcbxDisease.PopupGridAutoSize = false;
  268. this.dblkcbxDisease.RowFilterVisible = false;
  269. this.dblkcbxDisease.sDisplayField = "";
  270. this.dblkcbxDisease.sDisplayMember = "";
  271. this.dblkcbxDisease.SeparatorChar = "|";
  272. this.dblkcbxDisease.Size = new System.Drawing.Size(257, 30);
  273. this.dblkcbxDisease.sKeyWords = "";
  274. this.dblkcbxDisease.sValueMember = "";
  275. this.dblkcbxDisease.TabIndex = 20;
  276. this.dblkcbxDisease.Value = "";
  277. this.dblkcbxDisease.AfterSelector += new PTControl.AfterSelectorEventHandler(this.dblkcbxDisease_AfterSelector);
  278. //
  279. // dblkcbxMedicalType
  280. //
  281. this.dblkcbxMedicalType.FormattingEnabled = true;
  282. this.dblkcbxMedicalType.Location = new System.Drawing.Point(602, 27);
  283. this.dblkcbxMedicalType.Name = "dblkcbxMedicalType";
  284. this.dblkcbxMedicalType.NullValue = "";
  285. this.dblkcbxMedicalType.PopupGridAutoSize = false;
  286. this.dblkcbxMedicalType.RowFilterVisible = false;
  287. this.dblkcbxMedicalType.sDisplayField = "";
  288. this.dblkcbxMedicalType.sDisplayMember = "";
  289. this.dblkcbxMedicalType.SeparatorChar = "|";
  290. this.dblkcbxMedicalType.Size = new System.Drawing.Size(257, 30);
  291. this.dblkcbxMedicalType.sKeyWords = "";
  292. this.dblkcbxMedicalType.sValueMember = "";
  293. this.dblkcbxMedicalType.TabIndex = 19;
  294. this.dblkcbxMedicalType.Value = "";
  295. this.dblkcbxMedicalType.AfterSelector += new PTControl.AfterSelectorEventHandler(this.dblkcbxMedicalType_AfterSelector);
  296. //
  297. // dblkcbxInsuranceType
  298. //
  299. this.dblkcbxInsuranceType.FormattingEnabled = true;
  300. this.dblkcbxInsuranceType.Location = new System.Drawing.Point(163, 27);
  301. this.dblkcbxInsuranceType.Name = "dblkcbxInsuranceType";
  302. this.dblkcbxInsuranceType.NullValue = "";
  303. this.dblkcbxInsuranceType.PopupGridAutoSize = false;
  304. this.dblkcbxInsuranceType.RowFilterVisible = false;
  305. this.dblkcbxInsuranceType.sDisplayField = "";
  306. this.dblkcbxInsuranceType.sDisplayMember = "";
  307. this.dblkcbxInsuranceType.SeparatorChar = "|";
  308. this.dblkcbxInsuranceType.Size = new System.Drawing.Size(257, 30);
  309. this.dblkcbxInsuranceType.sKeyWords = "";
  310. this.dblkcbxInsuranceType.sValueMember = "";
  311. this.dblkcbxInsuranceType.TabIndex = 18;
  312. this.dblkcbxInsuranceType.Value = "";
  313. this.dblkcbxInsuranceType.AfterSelector += new PTControl.AfterSelectorEventHandler(this.dblkcbxInsuranceType_AfterSelector);
  314. //
  315. // label4
  316. //
  317. this.label4.AutoSize = true;
  318. this.label4.ForeColor = System.Drawing.SystemColors.InfoText;
  319. this.label4.Location = new System.Drawing.Point(506, 30);
  320. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  321. this.label4.Name = "label4";
  322. this.label4.Size = new System.Drawing.Size(98, 22);
  323. this.label4.TabIndex = 15;
  324. this.label4.Text = "医疗类别";
  325. //
  326. // label3
  327. //
  328. this.label3.AutoSize = true;
  329. this.label3.ForeColor = System.Drawing.SystemColors.InfoText;
  330. this.label3.Location = new System.Drawing.Point(67, 128);
  331. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  332. this.label3.Name = "label3";
  333. this.label3.Size = new System.Drawing.Size(98, 22);
  334. this.label3.TabIndex = 14;
  335. this.label3.Text = "结算方式";
  336. //
  337. // label2
  338. //
  339. this.label2.AutoSize = true;
  340. this.label2.ForeColor = System.Drawing.SystemColors.InfoText;
  341. this.label2.Location = new System.Drawing.Point(67, 79);
  342. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  343. this.label2.Name = "label2";
  344. this.label2.Size = new System.Drawing.Size(98, 22);
  345. this.label2.TabIndex = 13;
  346. this.label2.Text = "病种名称\r\n";
  347. //
  348. // label1
  349. //
  350. this.label1.AutoSize = true;
  351. this.label1.ForeColor = System.Drawing.SystemColors.InfoText;
  352. this.label1.Location = new System.Drawing.Point(67, 30);
  353. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  354. this.label1.Name = "label1";
  355. this.label1.Size = new System.Drawing.Size(98, 22);
  356. this.label1.TabIndex = 12;
  357. this.label1.Text = "险种类型";
  358. //
  359. // pnlFooter
  360. //
  361. this.pnlFooter.BackColor = System.Drawing.SystemColors.Window;
  362. this.pnlFooter.Controls.Add(this.uiButton1);
  363. this.pnlFooter.Controls.Add(this.button2);
  364. this.pnlFooter.Controls.Add(this.button1);
  365. this.pnlFooter.Dock = System.Windows.Forms.DockStyle.Bottom;
  366. this.pnlFooter.Location = new System.Drawing.Point(0, 263);
  367. this.pnlFooter.Name = "pnlFooter";
  368. this.pnlFooter.Size = new System.Drawing.Size(1267, 63);
  369. this.pnlFooter.TabIndex = 14;
  370. //
  371. // uiButton1
  372. //
  373. this.uiButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  374. this.uiButton1.Cursor = System.Windows.Forms.Cursors.Hand;
  375. this.uiButton1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  376. this.uiButton1.Location = new System.Drawing.Point(12, 16);
  377. this.uiButton1.MinimumSize = new System.Drawing.Size(1, 1);
  378. this.uiButton1.Name = "uiButton1";
  379. this.uiButton1.Size = new System.Drawing.Size(205, 35);
  380. this.uiButton1.TabIndex = 3;
  381. this.uiButton1.Text = "人员待遇享受检查";
  382. this.uiButton1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  383. this.uiButton1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  384. this.uiButton1.Click += new System.EventHandler(this.uiButton1_Click);
  385. //
  386. // button2
  387. //
  388. this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  389. this.button2.Font = new System.Drawing.Font("新宋体", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  390. this.button2.Location = new System.Drawing.Point(1155, 15);
  391. this.button2.Name = "button2";
  392. this.button2.Size = new System.Drawing.Size(101, 39);
  393. this.button2.TabIndex = 1;
  394. this.button2.Text = "放 弃";
  395. this.button2.UseVisualStyleBackColor = true;
  396. this.button2.Click += new System.EventHandler(this.button2_Click);
  397. //
  398. // button1
  399. //
  400. this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  401. this.button1.Font = new System.Drawing.Font("新宋体", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  402. this.button1.Location = new System.Drawing.Point(1034, 15);
  403. this.button1.Name = "button1";
  404. this.button1.Size = new System.Drawing.Size(101, 39);
  405. this.button1.TabIndex = 0;
  406. this.button1.Text = "确 定";
  407. this.button1.UseVisualStyleBackColor = true;
  408. this.button1.Click += new System.EventHandler(this.button1_Click);
  409. //
  410. // dgvDiagnose
  411. //
  412. this.dgvDiagnose.AllowUserToAddRows = false;
  413. this.dgvDiagnose.BorderStyle = System.Windows.Forms.BorderStyle.None;
  414. dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.ButtonShadow;
  415. dataGridViewCellStyle1.Font = new System.Drawing.Font("新宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  416. dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
  417. dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  418. dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.WindowText;
  419. dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  420. this.dgvDiagnose.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
  421. this.dgvDiagnose.ColumnHeadersHeight = 40;
  422. this.dgvDiagnose.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  423. this.dgvDiagnose.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  424. this.diag_type_name,
  425. this.maindiag_flag,
  426. this.diag_srt_no,
  427. this.diag_name,
  428. this.diag_code,
  429. this.diag_dept,
  430. this.adm_cond,
  431. this.dise_dor_no,
  432. this.dise_dor_name,
  433. this.diag_time});
  434. this.dgvDiagnose.Dock = System.Windows.Forms.DockStyle.Fill;
  435. this.dgvDiagnose.Location = new System.Drawing.Point(0, 0);
  436. this.dgvDiagnose.Name = "dgvDiagnose";
  437. this.dgvDiagnose.RowHeadersWidth = 51;
  438. this.dgvDiagnose.RowTemplate.Height = 30;
  439. this.dgvDiagnose.Size = new System.Drawing.Size(1267, 263);
  440. this.dgvDiagnose.TabIndex = 0;
  441. //
  442. // diag_type_name
  443. //
  444. this.diag_type_name.DataPropertyName = "diag_type_name";
  445. this.diag_type_name.FillWeight = 110F;
  446. this.diag_type_name.HeaderText = "诊断类别";
  447. this.diag_type_name.MinimumWidth = 110;
  448. this.diag_type_name.Name = "diag_type_name";
  449. this.diag_type_name.Width = 110;
  450. //
  451. // maindiag_flag
  452. //
  453. this.maindiag_flag.DataPropertyName = "maindiag_flag";
  454. this.maindiag_flag.FillWeight = 75F;
  455. this.maindiag_flag.HeaderText = "主诊断";
  456. this.maindiag_flag.MinimumWidth = 75;
  457. this.maindiag_flag.Name = "maindiag_flag";
  458. this.maindiag_flag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  459. this.maindiag_flag.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  460. this.maindiag_flag.Width = 80;
  461. //
  462. // diag_srt_no
  463. //
  464. this.diag_srt_no.DataPropertyName = "diag_srt_no";
  465. this.diag_srt_no.FillWeight = 60F;
  466. this.diag_srt_no.HeaderText = "序号";
  467. this.diag_srt_no.MinimumWidth = 60;
  468. this.diag_srt_no.Name = "diag_srt_no";
  469. this.diag_srt_no.Width = 65;
  470. //
  471. // diag_name
  472. //
  473. this.diag_name.DataPropertyName = "diag_name";
  474. this.diag_name.FillWeight = 120F;
  475. this.diag_name.HeaderText = "诊断名称";
  476. this.diag_name.MinimumWidth = 120;
  477. this.diag_name.Name = "diag_name";
  478. this.diag_name.Width = 120;
  479. //
  480. // diag_code
  481. //
  482. this.diag_code.DataPropertyName = "diag_code";
  483. this.diag_code.FillWeight = 120F;
  484. this.diag_code.HeaderText = "诊断编码";
  485. this.diag_code.MinimumWidth = 120;
  486. this.diag_code.Name = "diag_code";
  487. this.diag_code.Width = 120;
  488. //
  489. // diag_dept
  490. //
  491. this.diag_dept.DataPropertyName = "diag_dept";
  492. this.diag_dept.FillWeight = 120F;
  493. this.diag_dept.HeaderText = "就诊科室";
  494. this.diag_dept.MinimumWidth = 120;
  495. this.diag_dept.Name = "diag_dept";
  496. this.diag_dept.Width = 120;
  497. //
  498. // adm_cond
  499. //
  500. this.adm_cond.DataPropertyName = "adm_cond";
  501. this.adm_cond.FillWeight = 120F;
  502. this.adm_cond.HeaderText = "入院病情";
  503. this.adm_cond.MinimumWidth = 120;
  504. this.adm_cond.Name = "adm_cond";
  505. this.adm_cond.Width = 120;
  506. //
  507. // dise_dor_no
  508. //
  509. this.dise_dor_no.DataPropertyName = "dise_dor_no";
  510. this.dise_dor_no.FillWeight = 140F;
  511. this.dise_dor_no.HeaderText = "医保医师编号";
  512. this.dise_dor_no.MinimumWidth = 140;
  513. this.dise_dor_no.Name = "dise_dor_no";
  514. this.dise_dor_no.Width = 140;
  515. //
  516. // dise_dor_name
  517. //
  518. this.dise_dor_name.DataPropertyName = "dise_dor_name";
  519. this.dise_dor_name.HeaderText = "医生姓名";
  520. this.dise_dor_name.MinimumWidth = 100;
  521. this.dise_dor_name.Name = "dise_dor_name";
  522. this.dise_dor_name.Width = 150;
  523. //
  524. // diag_time
  525. //
  526. this.diag_time.DataPropertyName = "diag_time";
  527. this.diag_time.FillWeight = 180F;
  528. this.diag_time.HeaderText = "诊断时间";
  529. this.diag_time.MinimumWidth = 180;
  530. this.diag_time.Name = "diag_time";
  531. this.diag_time.Width = 180;
  532. //
  533. // pnlBottom
  534. //
  535. this.pnlBottom.Controls.Add(this.dgvDiagnose);
  536. this.pnlBottom.Controls.Add(this.pnlFooter);
  537. this.pnlBottom.Location = new System.Drawing.Point(0, 315);
  538. this.pnlBottom.Name = "pnlBottom";
  539. this.pnlBottom.Size = new System.Drawing.Size(1267, 326);
  540. this.pnlBottom.TabIndex = 13;
  541. //
  542. // txtBirthDay
  543. //
  544. this.txtBirthDay.Cursor = System.Windows.Forms.Cursors.IBeam;
  545. this.txtBirthDay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  546. this.txtBirthDay.Location = new System.Drawing.Point(952, 30);
  547. this.txtBirthDay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  548. this.txtBirthDay.MinimumSize = new System.Drawing.Size(1, 16);
  549. this.txtBirthDay.Name = "txtBirthDay";
  550. this.txtBirthDay.ShowText = false;
  551. this.txtBirthDay.Size = new System.Drawing.Size(126, 25);
  552. this.txtBirthDay.TabIndex = 91;
  553. this.txtBirthDay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  554. this.txtBirthDay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  555. //
  556. // txtInsuType
  557. //
  558. this.txtInsuType.Cursor = System.Windows.Forms.Cursors.IBeam;
  559. this.txtInsuType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  560. this.txtInsuType.Location = new System.Drawing.Point(954, 99);
  561. this.txtInsuType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  562. this.txtInsuType.MinimumSize = new System.Drawing.Size(1, 16);
  563. this.txtInsuType.Name = "txtInsuType";
  564. this.txtInsuType.ShowText = false;
  565. this.txtInsuType.Size = new System.Drawing.Size(126, 25);
  566. this.txtInsuType.TabIndex = 93;
  567. this.txtInsuType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  568. this.txtInsuType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  569. //
  570. // txtAge
  571. //
  572. this.txtAge.Cursor = System.Windows.Forms.Cursors.IBeam;
  573. this.txtAge.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  574. this.txtAge.Location = new System.Drawing.Point(952, 65);
  575. this.txtAge.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  576. this.txtAge.MinimumSize = new System.Drawing.Size(1, 16);
  577. this.txtAge.Name = "txtAge";
  578. this.txtAge.ShowText = false;
  579. this.txtAge.Size = new System.Drawing.Size(126, 25);
  580. this.txtAge.TabIndex = 93;
  581. this.txtAge.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  582. this.txtAge.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  583. //
  584. // uiLabel4
  585. //
  586. this.uiLabel4.BackColor = System.Drawing.Color.Transparent;
  587. this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  588. this.uiLabel4.Location = new System.Drawing.Point(852, 101);
  589. this.uiLabel4.Name = "uiLabel4";
  590. this.uiLabel4.Size = new System.Drawing.Size(103, 23);
  591. this.uiLabel4.TabIndex = 94;
  592. this.uiLabel4.Text = "险种类型";
  593. this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  594. this.uiLabel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  595. //
  596. // lbAge
  597. //
  598. this.lbAge.BackColor = System.Drawing.Color.Transparent;
  599. this.lbAge.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  600. this.lbAge.Location = new System.Drawing.Point(873, 67);
  601. this.lbAge.Name = "lbAge";
  602. this.lbAge.Size = new System.Drawing.Size(68, 23);
  603. this.lbAge.TabIndex = 94;
  604. this.lbAge.Text = "年龄";
  605. this.lbAge.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  606. this.lbAge.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  607. //
  608. // lb1
  609. //
  610. this.lb1.BackColor = System.Drawing.Color.Transparent;
  611. this.lb1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  612. this.lb1.Location = new System.Drawing.Point(852, 32);
  613. this.lb1.Name = "lb1";
  614. this.lb1.Size = new System.Drawing.Size(93, 23);
  615. this.lb1.TabIndex = 92;
  616. this.lb1.Text = "出生日期";
  617. this.lb1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  618. this.lb1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  619. //
  620. // txtPsnNO
  621. //
  622. this.txtPsnNO.Cursor = System.Windows.Forms.Cursors.IBeam;
  623. this.txtPsnNO.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  624. this.txtPsnNO.Location = new System.Drawing.Point(646, 30);
  625. this.txtPsnNO.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  626. this.txtPsnNO.MinimumSize = new System.Drawing.Size(1, 16);
  627. this.txtPsnNO.Name = "txtPsnNO";
  628. this.txtPsnNO.ShowText = false;
  629. this.txtPsnNO.Size = new System.Drawing.Size(199, 25);
  630. this.txtPsnNO.TabIndex = 90;
  631. this.txtPsnNO.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  632. this.txtPsnNO.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  633. //
  634. // txtCorp
  635. //
  636. this.txtCorp.Cursor = System.Windows.Forms.Cursors.IBeam;
  637. this.txtCorp.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  638. this.txtCorp.Location = new System.Drawing.Point(334, 30);
  639. this.txtCorp.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  640. this.txtCorp.MinimumSize = new System.Drawing.Size(1, 16);
  641. this.txtCorp.Name = "txtCorp";
  642. this.txtCorp.ShowText = false;
  643. this.txtCorp.Size = new System.Drawing.Size(163, 25);
  644. this.txtCorp.TabIndex = 89;
  645. this.txtCorp.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  646. this.txtCorp.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  647. //
  648. // uiLabel27
  649. //
  650. this.uiLabel27.BackColor = System.Drawing.Color.Transparent;
  651. this.uiLabel27.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  652. this.uiLabel27.Location = new System.Drawing.Point(530, 32);
  653. this.uiLabel27.Name = "uiLabel27";
  654. this.uiLabel27.Size = new System.Drawing.Size(100, 23);
  655. this.uiLabel27.TabIndex = 88;
  656. this.uiLabel27.Text = "人员编号";
  657. this.uiLabel27.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  658. this.uiLabel27.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  659. //
  660. // uiLabel28
  661. //
  662. this.uiLabel28.BackColor = System.Drawing.Color.Transparent;
  663. this.uiLabel28.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  664. this.uiLabel28.Location = new System.Drawing.Point(236, 32);
  665. this.uiLabel28.Name = "uiLabel28";
  666. this.uiLabel28.Size = new System.Drawing.Size(92, 23);
  667. this.uiLabel28.TabIndex = 87;
  668. this.uiLabel28.Text = "单位名称";
  669. this.uiLabel28.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  670. this.uiLabel28.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  671. //
  672. // txtPsnType
  673. //
  674. this.txtPsnType.Cursor = System.Windows.Forms.Cursors.IBeam;
  675. this.txtPsnType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  676. this.txtPsnType.Location = new System.Drawing.Point(646, 99);
  677. this.txtPsnType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  678. this.txtPsnType.MinimumSize = new System.Drawing.Size(1, 16);
  679. this.txtPsnType.Name = "txtPsnType";
  680. this.txtPsnType.ShowText = false;
  681. this.txtPsnType.Size = new System.Drawing.Size(199, 25);
  682. this.txtPsnType.TabIndex = 86;
  683. this.txtPsnType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  684. this.txtPsnType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  685. //
  686. // txtCertNO
  687. //
  688. this.txtCertNO.Cursor = System.Windows.Forms.Cursors.IBeam;
  689. this.txtCertNO.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  690. this.txtCertNO.Location = new System.Drawing.Point(646, 65);
  691. this.txtCertNO.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  692. this.txtCertNO.MinimumSize = new System.Drawing.Size(1, 16);
  693. this.txtCertNO.Name = "txtCertNO";
  694. this.txtCertNO.ShowText = false;
  695. this.txtCertNO.Size = new System.Drawing.Size(199, 25);
  696. this.txtCertNO.TabIndex = 86;
  697. this.txtCertNO.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  698. this.txtCertNO.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  699. //
  700. // txtAdmvs
  701. //
  702. this.txtAdmvs.Cursor = System.Windows.Forms.Cursors.IBeam;
  703. this.txtAdmvs.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  704. this.txtAdmvs.Location = new System.Drawing.Point(334, 101);
  705. this.txtAdmvs.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  706. this.txtAdmvs.MinimumSize = new System.Drawing.Size(1, 16);
  707. this.txtAdmvs.Name = "txtAdmvs";
  708. this.txtAdmvs.ShowText = false;
  709. this.txtAdmvs.Size = new System.Drawing.Size(163, 25);
  710. this.txtAdmvs.TabIndex = 85;
  711. this.txtAdmvs.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  712. this.txtAdmvs.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  713. //
  714. // txtCertType
  715. //
  716. this.txtCertType.Cursor = System.Windows.Forms.Cursors.IBeam;
  717. this.txtCertType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  718. this.txtCertType.Location = new System.Drawing.Point(334, 65);
  719. this.txtCertType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  720. this.txtCertType.MinimumSize = new System.Drawing.Size(1, 16);
  721. this.txtCertType.Name = "txtCertType";
  722. this.txtCertType.ShowText = false;
  723. this.txtCertType.Size = new System.Drawing.Size(163, 25);
  724. this.txtCertType.TabIndex = 85;
  725. this.txtCertType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  726. this.txtCertType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  727. //
  728. // uiLabel3
  729. //
  730. this.uiLabel3.BackColor = System.Drawing.Color.Transparent;
  731. this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  732. this.uiLabel3.Location = new System.Drawing.Point(530, 101);
  733. this.uiLabel3.Name = "uiLabel3";
  734. this.uiLabel3.Size = new System.Drawing.Size(100, 25);
  735. this.uiLabel3.TabIndex = 84;
  736. this.uiLabel3.Text = "人员类别";
  737. this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  738. this.uiLabel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  739. //
  740. // uiLabel25
  741. //
  742. this.uiLabel25.BackColor = System.Drawing.Color.Transparent;
  743. this.uiLabel25.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  744. this.uiLabel25.Location = new System.Drawing.Point(530, 67);
  745. this.uiLabel25.Name = "uiLabel25";
  746. this.uiLabel25.Size = new System.Drawing.Size(100, 23);
  747. this.uiLabel25.TabIndex = 84;
  748. this.uiLabel25.Text = "证件号码";
  749. this.uiLabel25.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  750. this.uiLabel25.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  751. //
  752. // uiLabel2
  753. //
  754. this.uiLabel2.BackColor = System.Drawing.Color.Transparent;
  755. this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  756. this.uiLabel2.Location = new System.Drawing.Point(236, 103);
  757. this.uiLabel2.Name = "uiLabel2";
  758. this.uiLabel2.Size = new System.Drawing.Size(92, 23);
  759. this.uiLabel2.TabIndex = 83;
  760. this.uiLabel2.Text = "参保地区";
  761. this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  762. this.uiLabel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  763. //
  764. // uiLabel26
  765. //
  766. this.uiLabel26.BackColor = System.Drawing.Color.Transparent;
  767. this.uiLabel26.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  768. this.uiLabel26.Location = new System.Drawing.Point(231, 67);
  769. this.uiLabel26.Name = "uiLabel26";
  770. this.uiLabel26.Size = new System.Drawing.Size(97, 23);
  771. this.uiLabel26.TabIndex = 83;
  772. this.uiLabel26.Text = "证件类型";
  773. this.uiLabel26.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  774. this.uiLabel26.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  775. //
  776. // txtBalc
  777. //
  778. this.txtBalc.Cursor = System.Windows.Forms.Cursors.IBeam;
  779. this.txtBalc.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  780. this.txtBalc.Location = new System.Drawing.Point(124, 103);
  781. this.txtBalc.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  782. this.txtBalc.MinimumSize = new System.Drawing.Size(1, 16);
  783. this.txtBalc.Name = "txtBalc";
  784. this.txtBalc.ShowText = false;
  785. this.txtBalc.Size = new System.Drawing.Size(100, 25);
  786. this.txtBalc.TabIndex = 82;
  787. this.txtBalc.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  788. this.txtBalc.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  789. //
  790. // txtGend
  791. //
  792. this.txtGend.Cursor = System.Windows.Forms.Cursors.IBeam;
  793. this.txtGend.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  794. this.txtGend.Location = new System.Drawing.Point(124, 65);
  795. this.txtGend.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  796. this.txtGend.MinimumSize = new System.Drawing.Size(1, 16);
  797. this.txtGend.Name = "txtGend";
  798. this.txtGend.ShowText = false;
  799. this.txtGend.Size = new System.Drawing.Size(100, 25);
  800. this.txtGend.TabIndex = 82;
  801. this.txtGend.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  802. this.txtGend.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  803. //
  804. // txtName
  805. //
  806. this.txtName.Cursor = System.Windows.Forms.Cursors.IBeam;
  807. this.txtName.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  808. this.txtName.Location = new System.Drawing.Point(124, 30);
  809. this.txtName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  810. this.txtName.MinimumSize = new System.Drawing.Size(1, 16);
  811. this.txtName.Name = "txtName";
  812. this.txtName.ShowText = false;
  813. this.txtName.Size = new System.Drawing.Size(100, 25);
  814. this.txtName.TabIndex = 81;
  815. this.txtName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  816. this.txtName.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  817. //
  818. // uiLabel1
  819. //
  820. this.uiLabel1.BackColor = System.Drawing.Color.Transparent;
  821. this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  822. this.uiLabel1.Location = new System.Drawing.Point(62, 105);
  823. this.uiLabel1.Name = "uiLabel1";
  824. this.uiLabel1.Size = new System.Drawing.Size(61, 23);
  825. this.uiLabel1.TabIndex = 80;
  826. this.uiLabel1.Text = "余额";
  827. this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  828. this.uiLabel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  829. //
  830. // uiLabel20
  831. //
  832. this.uiLabel20.BackColor = System.Drawing.Color.Transparent;
  833. this.uiLabel20.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  834. this.uiLabel20.Location = new System.Drawing.Point(62, 67);
  835. this.uiLabel20.Name = "uiLabel20";
  836. this.uiLabel20.Size = new System.Drawing.Size(61, 23);
  837. this.uiLabel20.TabIndex = 80;
  838. this.uiLabel20.Text = "性别";
  839. this.uiLabel20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  840. this.uiLabel20.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  841. //
  842. // grpHeader
  843. //
  844. this.grpHeader.Controls.Add(this.txtBirthDay);
  845. this.grpHeader.Controls.Add(this.txtInsuType);
  846. this.grpHeader.Controls.Add(this.txtAge);
  847. this.grpHeader.Controls.Add(this.uiLabel4);
  848. this.grpHeader.Controls.Add(this.lbAge);
  849. this.grpHeader.Controls.Add(this.lb1);
  850. this.grpHeader.Controls.Add(this.txtPsnNO);
  851. this.grpHeader.Controls.Add(this.txtCorp);
  852. this.grpHeader.Controls.Add(this.uiLabel27);
  853. this.grpHeader.Controls.Add(this.uiLabel28);
  854. this.grpHeader.Controls.Add(this.txtPsnType);
  855. this.grpHeader.Controls.Add(this.txtCertNO);
  856. this.grpHeader.Controls.Add(this.txtAdmvs);
  857. this.grpHeader.Controls.Add(this.txtCertType);
  858. this.grpHeader.Controls.Add(this.uiLabel3);
  859. this.grpHeader.Controls.Add(this.uiLabel25);
  860. this.grpHeader.Controls.Add(this.uiLabel2);
  861. this.grpHeader.Controls.Add(this.uiLabel26);
  862. this.grpHeader.Controls.Add(this.txtBalc);
  863. this.grpHeader.Controls.Add(this.txtGend);
  864. this.grpHeader.Controls.Add(this.txtName);
  865. this.grpHeader.Controls.Add(this.uiLabel1);
  866. this.grpHeader.Controls.Add(this.uiLabel20);
  867. this.grpHeader.Controls.Add(this.uiLabel21);
  868. this.grpHeader.Dock = System.Windows.Forms.DockStyle.Top;
  869. this.grpHeader.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  870. this.grpHeader.Location = new System.Drawing.Point(0, 0);
  871. this.grpHeader.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  872. this.grpHeader.MinimumSize = new System.Drawing.Size(1, 1);
  873. this.grpHeader.Name = "grpHeader";
  874. this.grpHeader.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  875. this.grpHeader.Size = new System.Drawing.Size(1267, 134);
  876. this.grpHeader.TabIndex = 16;
  877. this.grpHeader.Text = "基本信息";
  878. this.grpHeader.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  879. this.grpHeader.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  880. //
  881. // uiLabel21
  882. //
  883. this.uiLabel21.BackColor = System.Drawing.Color.Transparent;
  884. this.uiLabel21.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  885. this.uiLabel21.Location = new System.Drawing.Point(62, 32);
  886. this.uiLabel21.Name = "uiLabel21";
  887. this.uiLabel21.Size = new System.Drawing.Size(61, 23);
  888. this.uiLabel21.TabIndex = 79;
  889. this.uiLabel21.Text = "姓名";
  890. this.uiLabel21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  891. this.uiLabel21.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  892. //
  893. // InpatientRegistration
  894. //
  895. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  896. this.ClientSize = new System.Drawing.Size(1267, 641);
  897. this.Controls.Add(this.grpHeader);
  898. this.Controls.Add(this.pnlBottom);
  899. this.Controls.Add(this.panel1);
  900. this.Font = new System.Drawing.Font("新宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  901. this.Margin = new System.Windows.Forms.Padding(4);
  902. this.Name = "InpatientRegistration";
  903. this.Text = "医保登记";
  904. this.Load += new System.EventHandler(this.InpatientRegistration_Load);
  905. this.panel1.ResumeLayout(false);
  906. this.panel1.PerformLayout();
  907. this.pnlFooter.ResumeLayout(false);
  908. ((System.ComponentModel.ISupportInitialize)(this.dgvDiagnose)).EndInit();
  909. this.pnlBottom.ResumeLayout(false);
  910. this.grpHeader.ResumeLayout(false);
  911. this.ResumeLayout(false);
  912. }
  913. #endregion
  914. public string DiseaseTypeValue
  915. {
  916. get { return dtDisease.Columns[""].ToString(); }
  917. }
  918. private System.Windows.Forms.Panel panel1;
  919. public PTControl.DBLookupCombox dblkcbxSettelmentWay;
  920. public PTControl.DBLookupCombox dblkcbxMedicalType;
  921. public PTControl.DBLookupCombox dblkcbxInsuranceType;
  922. private System.Windows.Forms.Label label4;
  923. private System.Windows.Forms.Label label3;
  924. private System.Windows.Forms.Label label2;
  925. private System.Windows.Forms.Label label1;
  926. private System.Windows.Forms.Panel pnlFooter;
  927. private System.Windows.Forms.Button button2;
  928. private System.Windows.Forms.Button button1;
  929. private Sunny.UI.UIButton uiButton1;
  930. public PTControl.DBLookupCombox dblkcbxDisease;
  931. public Sunny.UI.UICheckBox cbxAccountPay;
  932. public Sunny.UI.UICheckBox Chk_RelTtpFlag;
  933. public Sunny.UI.UICheckBox Chk_TraumaFlag;
  934. public PTControl.DBLookupCombox dblkcbxExitway;
  935. private System.Windows.Forms.Label label8;
  936. private System.Windows.Forms.DataGridView dgvDiagnose;
  937. private System.Windows.Forms.DataGridViewTextBoxColumn diag_type_name;
  938. private System.Windows.Forms.DataGridViewCheckBoxColumn maindiag_flag;
  939. private System.Windows.Forms.DataGridViewTextBoxColumn diag_srt_no;
  940. private System.Windows.Forms.DataGridViewTextBoxColumn diag_name;
  941. private System.Windows.Forms.DataGridViewTextBoxColumn diag_code;
  942. private System.Windows.Forms.DataGridViewTextBoxColumn diag_dept;
  943. private System.Windows.Forms.DataGridViewTextBoxColumn adm_cond;
  944. private System.Windows.Forms.DataGridViewTextBoxColumn dise_dor_no;
  945. private System.Windows.Forms.DataGridViewTextBoxColumn dise_dor_name;
  946. private System.Windows.Forms.DataGridViewTextBoxColumn diag_time;
  947. private System.Windows.Forms.Panel pnlBottom;
  948. public Sunny.UI.UICheckBox chkEmergency;
  949. public Sunny.UI.UICheckBox chkDanger;
  950. private Sunny.UI.UITextBox txtLocateCode;
  951. private System.Windows.Forms.Label label5;
  952. private Sunny.UI.UITextBox txtBirthDay;
  953. private Sunny.UI.UITextBox txtInsuType;
  954. private Sunny.UI.UITextBox txtAge;
  955. private Sunny.UI.UILabel uiLabel4;
  956. private Sunny.UI.UILabel lbAge;
  957. private Sunny.UI.UILabel lb1;
  958. private Sunny.UI.UITextBox txtPsnNO;
  959. private Sunny.UI.UITextBox txtCorp;
  960. private Sunny.UI.UILabel uiLabel27;
  961. private Sunny.UI.UILabel uiLabel28;
  962. private Sunny.UI.UITextBox txtPsnType;
  963. private Sunny.UI.UITextBox txtCertNO;
  964. private Sunny.UI.UITextBox txtAdmvs;
  965. private Sunny.UI.UITextBox txtCertType;
  966. private Sunny.UI.UILabel uiLabel3;
  967. private Sunny.UI.UILabel uiLabel25;
  968. private Sunny.UI.UILabel uiLabel2;
  969. private Sunny.UI.UILabel uiLabel26;
  970. private Sunny.UI.UITextBox txtBalc;
  971. private Sunny.UI.UITextBox txtGend;
  972. private Sunny.UI.UITextBox txtName;
  973. private Sunny.UI.UILabel uiLabel1;
  974. private Sunny.UI.UILabel uiLabel20;
  975. private Sunny.UI.UIGroupBox grpHeader;
  976. private Sunny.UI.UILabel uiLabel21;
  977. }
  978. }