From 31766afb3ed6c3ac1106750c83f68a4808bf4c14 Mon Sep 17 00:00:00 2001 From: luoxingjian <1010378449@qq.com> Date: Tue, 12 Nov 2024 16:51:07 +0800 Subject: [PATCH] =?UTF-8?q?=E8=81=8C=E4=B8=9A=E5=8F=B2=E9=97=AE=E8=AF=8A?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=E4=B8=8E=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PEIS/Entity/ExamCareerHisInq.cs | 124 ++ PEIS/Model/Exam/CareerHisInqModel.cs | 18 + PEIS/PEIS.csproj | 13 + PEIS/Presenter/CareerHisInqPresenter.cs | 24 + PEIS/Properties/licenses.licx | 10 - PEIS/View/Exam/CareerHisInqForm.Designer.cs | 1472 +++++++++++++++++++ PEIS/View/Exam/CareerHisInqForm.cs | 58 + PEIS/View/Exam/CareerHisInqForm.resx | 139 ++ PEIS/View/Exam/ICareerHisInqView.cs | 17 + 9 files changed, 1865 insertions(+), 10 deletions(-) create mode 100644 PEIS/Entity/ExamCareerHisInq.cs create mode 100644 PEIS/Model/Exam/CareerHisInqModel.cs create mode 100644 PEIS/Presenter/CareerHisInqPresenter.cs create mode 100644 PEIS/View/Exam/CareerHisInqForm.Designer.cs create mode 100644 PEIS/View/Exam/CareerHisInqForm.cs create mode 100644 PEIS/View/Exam/CareerHisInqForm.resx create mode 100644 PEIS/View/Exam/ICareerHisInqView.cs diff --git a/PEIS/Entity/ExamCareerHisInq.cs b/PEIS/Entity/ExamCareerHisInq.cs new file mode 100644 index 0000000..892bc2b --- /dev/null +++ b/PEIS/Entity/ExamCareerHisInq.cs @@ -0,0 +1,124 @@ +using PEIS.Utils; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace PEIS.Entity +{ + /// + /// 职业史问诊 + /// + public class ExamCareerHisInq : ObjectData + { + public override String TableName => "Exam_CareerHisInq"; + /// + /// 患者id + /// + public Int64? PID { get; set; } + /// + /// 既往史 + /// + public string PastHistory { get; set; } + /// + /// 现病史 + /// + public string PreHisIllness { get; set; } + /// + /// 家族史 + /// + public string FamilyHistory { get; set; } + /// + /// 手术史 + /// + public string SurgicalHistory { get; set; } + /// + ///结婚日期-结婚史 + /// + public string MarriageDate { get; set; } + /// + ///配偶职业及健康状况-结婚史 + /// + public string SpouseOctionhealth{ get; set; } + /// + ///配偶放射历史-结婚史 + /// + public string SpouseRadiationHis{ get; set; } + /// + /// 初潮-月经史 + /// + public string Menarche { get; set; } + /// + /// 经期(天)-月经史 + /// + public string MenarchePeriod { get; set; } + /// + /// 周期(天)-月经史 + /// + public string MenarcheCycle { get; set; } + /// + /// 末次月经/停经年龄-月经史 + /// + public string LastMenstrualPod { get; set; } + /// + /// 现有子女(人)-生育史 + /// + public string ExistingChildren { get; set; } + /// + ///流产(次)-生育史 + /// + public string Abortion { get; set; } + /// + ///早产(次)-生育史 + /// + public string PrematureDelivery { get; set; } + /// + ///死产(次)-生育史 + /// + public string Stillbirth { get; set; } + /// + ///异常胎(次)-生育史 + /// + public string AbnormalFetus { get; set; } + /// + /// 吸烟情况(1:不吸烟;2:偶吸烟;3:经常吸)--烟酒史 + /// + public Int64? SmokeState { get; set; } + /// + /// 吸烟数量(支/天)--烟酒史 + /// + public string SmokeQuantity { get; set; } + /// + /// 吸烟年限年(年)--烟酒史 + /// + public string SmokeYears { get; set; } + /// + /// 吸烟年限月(月)--烟酒史 + /// + public string SmokeMonths { get; set; } + /// + /// 饮酒情况(1:不饮酒;2:偶饮酒;3:经常饮)--烟酒史 + /// + public Int64? DrinkState { get; set; } + /// + /// 饮酒数量(mL/天)--烟酒史 + /// + public string DrinkQuantity { get; set; } + /// + ///饮酒年限年(年)--烟酒史 + /// + public string DrinkYears { get; set; } + /// + /// 睡眠情况 + /// + public string SleepCondition { get; set; } + /// + /// 其他 + /// + public string Other { get; set; } + /// + /// 症状 + /// + public string Symptom { get; set; } + } +} diff --git a/PEIS/Model/Exam/CareerHisInqModel.cs b/PEIS/Model/Exam/CareerHisInqModel.cs new file mode 100644 index 0000000..0a39041 --- /dev/null +++ b/PEIS/Model/Exam/CareerHisInqModel.cs @@ -0,0 +1,18 @@ +using PEIS.Entity; +using PEIS.Utils; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace PEIS.Model.Exam +{ + public class CareerHisInqModel + { + public BasePatient GetPatient(Int64 pID) + { + var item = DAOHelp.GetDataBySQL($@"Select * From Base_Patient a WHERE a.ID = {pID}"); + return item.Count != 0 ? item[0] : null; + } + } +} diff --git a/PEIS/PEIS.csproj b/PEIS/PEIS.csproj index 7075a43..1a2b354 100644 --- a/PEIS/PEIS.csproj +++ b/PEIS/PEIS.csproj @@ -193,10 +193,13 @@ + + + @@ -383,6 +386,13 @@ TeamReportForm.cs + + Form + + + CareerHisInqForm.cs + + Form @@ -571,6 +581,9 @@ TeamReportForm.cs + + CareerHisInqForm.cs + PartForm.cs Designer diff --git a/PEIS/Presenter/CareerHisInqPresenter.cs b/PEIS/Presenter/CareerHisInqPresenter.cs new file mode 100644 index 0000000..5d0dd74 --- /dev/null +++ b/PEIS/Presenter/CareerHisInqPresenter.cs @@ -0,0 +1,24 @@ +using PEIS.Base; +using PEIS.Model.Exam; +using PEIS.View.Exam; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace PEIS.Presenter +{ + internal class CareerHisInqPresenter: Presenter + { + public CareerHisInqPresenter(ICareerHisInqView view) : base(view) + { + } + protected override void OnViewSet() + { + View.GetPatients += (send, args) => + { + View.ShowPatient(new CareerHisInqModel().GetPatient(args.ID)); + }; + } + } +} diff --git a/PEIS/Properties/licenses.licx b/PEIS/Properties/licenses.licx index e1b99c7..98d9998 100644 --- a/PEIS/Properties/licenses.licx +++ b/PEIS/Properties/licenses.licx @@ -1,11 +1 @@ -DevExpress.Patch.InMemoryPatch, DevExpress.Patch.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7fc7bfca2443de66 -DevExpress.XtraEditors.SearchLookUpEdit, DevExpress.XtraGrid.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a -DevExpress.XtraEditors.Repository.RepositoryItemComboBox, DevExpress.XtraEditors.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a -DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit, DevExpress.XtraEditors.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a -DevExpress.XtraNavBar.NavBarControl, DevExpress.XtraNavBar.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a -DevExpress.XtraTabbedMdi.XtraTabbedMdiManager, DevExpress.XtraBars.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a -DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit, DevExpress.XtraGrid.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a -DevExpress.XtraEditors.DateEdit, DevExpress.XtraEditors.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a -DevExpress.XtraEditors.Repository.RepositoryItemSearchLookUpEdit, DevExpress.XtraGrid.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a -DevExpress.XtraEditors.Repository.RepositoryItemTextEdit, DevExpress.XtraEditors.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/PEIS/View/Exam/CareerHisInqForm.Designer.cs b/PEIS/View/Exam/CareerHisInqForm.Designer.cs new file mode 100644 index 0000000..17aceeb --- /dev/null +++ b/PEIS/View/Exam/CareerHisInqForm.Designer.cs @@ -0,0 +1,1472 @@ +namespace PEIS.View.Exam +{ + partial class CareerHisInqForm + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CareerHisInqForm)); + this.panel1 = new System.Windows.Forms.Panel(); + this.button1 = new System.Windows.Forms.Button(); + this.textBox12 = new System.Windows.Forms.TextBox(); + this.label12 = new System.Windows.Forms.Label(); + this.textBox11 = new System.Windows.Forms.TextBox(); + this.label11 = new System.Windows.Forms.Label(); + this.textBox10 = new System.Windows.Forms.TextBox(); + this.label10 = new System.Windows.Forms.Label(); + this.textBox9 = new System.Windows.Forms.TextBox(); + this.label9 = new System.Windows.Forms.Label(); + this.textBox8 = new System.Windows.Forms.TextBox(); + this.label8 = new System.Windows.Forms.Label(); + this.textBox7 = new System.Windows.Forms.TextBox(); + this.label7 = new System.Windows.Forms.Label(); + this.textBox6 = new System.Windows.Forms.TextBox(); + this.label6 = new System.Windows.Forms.Label(); + this.textBox5 = new System.Windows.Forms.TextBox(); + this.label5 = new System.Windows.Forms.Label(); + this.textBox4 = new System.Windows.Forms.TextBox(); + this.label4 = new System.Windows.Forms.Label(); + this.textBox3 = new System.Windows.Forms.TextBox(); + this.label3 = new System.Windows.Forms.Label(); + this.textBox2 = new System.Windows.Forms.TextBox(); + this.label2 = new System.Windows.Forms.Label(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.label1 = new System.Windows.Forms.Label(); + this.advPropertyGrid1 = new FastReport.DevComponents.DotNetBar.AdvPropertyGrid(); + this.panelMain = new System.Windows.Forms.Panel(); + this.groupBox1 = new System.Windows.Forms.GroupBox(); + this.button6 = new System.Windows.Forms.Button(); + this.textBox36 = new System.Windows.Forms.TextBox(); + this.label44 = new System.Windows.Forms.Label(); + this.textBox35 = new System.Windows.Forms.TextBox(); + this.label43 = new System.Windows.Forms.Label(); + this.textBox34 = new System.Windows.Forms.TextBox(); + this.label42 = new System.Windows.Forms.Label(); + this.label41 = new System.Windows.Forms.Label(); + this.textBox33 = new System.Windows.Forms.TextBox(); + this.label40 = new System.Windows.Forms.Label(); + this.textBox32 = new System.Windows.Forms.TextBox(); + this.label39 = new System.Windows.Forms.Label(); + this.textBox31 = new System.Windows.Forms.TextBox(); + this.label38 = new System.Windows.Forms.Label(); + this.textBox30 = new System.Windows.Forms.TextBox(); + this.label37 = new System.Windows.Forms.Label(); + this.textBox29 = new System.Windows.Forms.TextBox(); + this.radioButton6 = new System.Windows.Forms.RadioButton(); + this.radioButton5 = new System.Windows.Forms.RadioButton(); + this.radioButton4 = new System.Windows.Forms.RadioButton(); + this.radioButton3 = new System.Windows.Forms.RadioButton(); + this.radioButton2 = new System.Windows.Forms.RadioButton(); + this.radioButton1 = new System.Windows.Forms.RadioButton(); + this.label36 = new System.Windows.Forms.Label(); + this.textBox28 = new System.Windows.Forms.TextBox(); + this.label35 = new System.Windows.Forms.Label(); + this.label34 = new System.Windows.Forms.Label(); + this.textBox27 = new System.Windows.Forms.TextBox(); + this.label33 = new System.Windows.Forms.Label(); + this.textBox26 = new System.Windows.Forms.TextBox(); + this.label32 = new System.Windows.Forms.Label(); + this.textBox25 = new System.Windows.Forms.TextBox(); + this.label31 = new System.Windows.Forms.Label(); + this.textBox24 = new System.Windows.Forms.TextBox(); + this.label30 = new System.Windows.Forms.Label(); + this.label29 = new System.Windows.Forms.Label(); + this.label28 = new System.Windows.Forms.Label(); + this.textBox23 = new System.Windows.Forms.TextBox(); + this.label27 = new System.Windows.Forms.Label(); + this.label26 = new System.Windows.Forms.Label(); + this.textBox22 = new System.Windows.Forms.TextBox(); + this.label25 = new System.Windows.Forms.Label(); + this.label24 = new System.Windows.Forms.Label(); + this.textBox21 = new System.Windows.Forms.TextBox(); + this.label23 = new System.Windows.Forms.Label(); + this.textBox20 = new System.Windows.Forms.TextBox(); + this.label22 = new System.Windows.Forms.Label(); + this.label21 = new System.Windows.Forms.Label(); + this.textBox19 = new System.Windows.Forms.TextBox(); + this.label20 = new System.Windows.Forms.Label(); + this.textBox18 = new System.Windows.Forms.TextBox(); + this.label19 = new System.Windows.Forms.Label(); + this.textBox17 = new System.Windows.Forms.TextBox(); + this.label18 = new System.Windows.Forms.Label(); + this.label17 = new System.Windows.Forms.Label(); + this.button5 = new System.Windows.Forms.Button(); + this.textBox16 = new System.Windows.Forms.TextBox(); + this.label16 = new System.Windows.Forms.Label(); + this.button4 = new System.Windows.Forms.Button(); + this.textBox15 = new System.Windows.Forms.TextBox(); + this.label15 = new System.Windows.Forms.Label(); + this.button3 = new System.Windows.Forms.Button(); + this.textBox14 = new System.Windows.Forms.TextBox(); + this.label14 = new System.Windows.Forms.Label(); + this.button2 = new System.Windows.Forms.Button(); + this.textBox13 = new System.Windows.Forms.TextBox(); + this.label13 = new System.Windows.Forms.Label(); + this.tabControl1 = new System.Windows.Forms.TabControl(); + this.tabPage1 = new System.Windows.Forms.TabPage(); + this.gridControl1 = new DevExpress.XtraGrid.GridControl(); + this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView(); + this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.tabPage2 = new System.Windows.Forms.TabPage(); + this.panelButtom = new System.Windows.Forms.Panel(); + this.CancelBtn = new System.Windows.Forms.Button(); + this.ConfirmBtn = new System.Windows.Forms.Button(); + this.superTabControl1 = new FastReport.DevComponents.DotNetBar.SuperTabControl(); + this.panel1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.advPropertyGrid1)).BeginInit(); + this.panelMain.SuspendLayout(); + this.groupBox1.SuspendLayout(); + this.tabControl1.SuspendLayout(); + this.tabPage1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit(); + this.panelButtom.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).BeginInit(); + this.SuspendLayout(); + // + // panel1 + // + this.panel1.Controls.Add(this.button1); + this.panel1.Controls.Add(this.textBox12); + this.panel1.Controls.Add(this.label12); + this.panel1.Controls.Add(this.textBox11); + this.panel1.Controls.Add(this.label11); + this.panel1.Controls.Add(this.textBox10); + this.panel1.Controls.Add(this.label10); + this.panel1.Controls.Add(this.textBox9); + this.panel1.Controls.Add(this.label9); + this.panel1.Controls.Add(this.textBox8); + this.panel1.Controls.Add(this.label8); + this.panel1.Controls.Add(this.textBox7); + this.panel1.Controls.Add(this.label7); + this.panel1.Controls.Add(this.textBox6); + this.panel1.Controls.Add(this.label6); + this.panel1.Controls.Add(this.textBox5); + this.panel1.Controls.Add(this.label5); + this.panel1.Controls.Add(this.textBox4); + this.panel1.Controls.Add(this.label4); + this.panel1.Controls.Add(this.textBox3); + this.panel1.Controls.Add(this.label3); + this.panel1.Controls.Add(this.textBox2); + this.panel1.Controls.Add(this.label2); + this.panel1.Controls.Add(this.textBox1); + this.panel1.Controls.Add(this.label1); + this.panel1.Dock = System.Windows.Forms.DockStyle.Top; + this.panel1.Location = new System.Drawing.Point(0, 0); + this.panel1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(1261, 136); + this.panel1.TabIndex = 0; + // + // button1 + // + this.button1.Location = new System.Drawing.Point(1048, 85); + this.button1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(131, 33); + this.button1.TabIndex = 24; + this.button1.Text = "完善个人信息"; + this.button1.UseVisualStyleBackColor = true; + // + // textBox12 + // + this.textBox12.Location = new System.Drawing.Point(911, 90); + this.textBox12.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox12.Name = "textBox12"; + this.textBox12.Size = new System.Drawing.Size(103, 23); + this.textBox12.TabIndex = 23; + // + // label12 + // + this.label12.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label12.Location = new System.Drawing.Point(820, 90); + this.label12.Name = "label12"; + this.label12.Size = new System.Drawing.Size(84, 24); + this.label12.TabIndex = 22; + this.label12.Text = "接害工龄"; + this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox11 + // + this.textBox11.Location = new System.Drawing.Point(652, 90); + this.textBox11.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox11.Name = "textBox11"; + this.textBox11.Size = new System.Drawing.Size(160, 23); + this.textBox11.TabIndex = 21; + // + // label11 + // + this.label11.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label11.Location = new System.Drawing.Point(561, 90); + this.label11.Name = "label11"; + this.label11.Size = new System.Drawing.Size(84, 24); + this.label11.TabIndex = 20; + this.label11.Text = "总工龄"; + this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox10 + // + this.textBox10.Location = new System.Drawing.Point(393, 90); + this.textBox10.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox10.Name = "textBox10"; + this.textBox10.Size = new System.Drawing.Size(160, 23); + this.textBox10.TabIndex = 19; + // + // label10 + // + this.label10.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label10.Location = new System.Drawing.Point(302, 90); + this.label10.Name = "label10"; + this.label10.Size = new System.Drawing.Size(84, 24); + this.label10.TabIndex = 18; + this.label10.Text = "部门/车间"; + this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox9 + // + this.textBox9.Location = new System.Drawing.Point(134, 90); + this.textBox9.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox9.Name = "textBox9"; + this.textBox9.Size = new System.Drawing.Size(160, 23); + this.textBox9.TabIndex = 17; + // + // label9 + // + this.label9.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label9.Location = new System.Drawing.Point(43, 90); + this.label9.Name = "label9"; + this.label9.Size = new System.Drawing.Size(84, 24); + this.label9.TabIndex = 16; + this.label9.Text = "工 种"; + this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox8 + // + this.textBox8.Location = new System.Drawing.Point(911, 54); + this.textBox8.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox8.Name = "textBox8"; + this.textBox8.Size = new System.Drawing.Size(305, 23); + this.textBox8.TabIndex = 15; + // + // label8 + // + this.label8.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label8.Location = new System.Drawing.Point(820, 54); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(84, 24); + this.label8.TabIndex = 14; + this.label8.Text = "单位"; + this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox7 + // + this.textBox7.Location = new System.Drawing.Point(393, 54); + this.textBox7.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox7.Name = "textBox7"; + this.textBox7.Size = new System.Drawing.Size(419, 23); + this.textBox7.TabIndex = 13; + // + // label7 + // + this.label7.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label7.Location = new System.Drawing.Point(302, 54); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(84, 24); + this.label7.TabIndex = 12; + this.label7.Text = "危害因数"; + this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox6 + // + this.textBox6.Location = new System.Drawing.Point(134, 54); + this.textBox6.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox6.Name = "textBox6"; + this.textBox6.Size = new System.Drawing.Size(160, 23); + this.textBox6.TabIndex = 11; + // + // label6 + // + this.label6.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label6.Location = new System.Drawing.Point(43, 54); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(84, 24); + this.label6.TabIndex = 10; + this.label6.Text = "类 别"; + this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox5 + // + this.textBox5.Location = new System.Drawing.Point(1113, 21); + this.textBox5.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox5.Name = "textBox5"; + this.textBox5.Size = new System.Drawing.Size(103, 23); + this.textBox5.TabIndex = 9; + // + // label5 + // + this.label5.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label5.Location = new System.Drawing.Point(1022, 23); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(84, 24); + this.label5.TabIndex = 8; + this.label5.Text = "年 龄"; + this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox4 + // + this.textBox4.Location = new System.Drawing.Point(911, 21); + this.textBox4.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox4.Name = "textBox4"; + this.textBox4.Size = new System.Drawing.Size(103, 23); + this.textBox4.TabIndex = 7; + // + // label4 + // + this.label4.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label4.Location = new System.Drawing.Point(820, 23); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(84, 24); + this.label4.TabIndex = 6; + this.label4.Text = "性 别"; + this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox3 + // + this.textBox3.Location = new System.Drawing.Point(652, 23); + this.textBox3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox3.Name = "textBox3"; + this.textBox3.Size = new System.Drawing.Size(160, 23); + this.textBox3.TabIndex = 5; + // + // label3 + // + this.label3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(561, 23); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(84, 24); + this.label3.TabIndex = 4; + this.label3.Text = "姓 名"; + this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox2 + // + this.textBox2.Location = new System.Drawing.Point(393, 21); + this.textBox2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox2.Name = "textBox2"; + this.textBox2.Size = new System.Drawing.Size(160, 23); + this.textBox2.TabIndex = 3; + // + // label2 + // + this.label2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(302, 23); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(84, 24); + this.label2.TabIndex = 2; + this.label2.Text = "体检编号"; + this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox1 + // + this.textBox1.Location = new System.Drawing.Point(134, 21); + this.textBox1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(160, 23); + this.textBox1.TabIndex = 1; + // + // label1 + // + this.label1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(43, 27); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(84, 24); + this.label1.TabIndex = 0; + this.label1.Text = "流水号"; + this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // advPropertyGrid1 + // + this.advPropertyGrid1.GridLinesColor = System.Drawing.Color.WhiteSmoke; + this.advPropertyGrid1.Location = new System.Drawing.Point(0, 0); + this.advPropertyGrid1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.advPropertyGrid1.Name = "advPropertyGrid1"; + this.advPropertyGrid1.Size = new System.Drawing.Size(87, 33); + this.advPropertyGrid1.TabIndex = 1; + this.advPropertyGrid1.Text = "advPropertyGrid1"; + // + // panelMain + // + this.panelMain.AutoScroll = true; + this.panelMain.Controls.Add(this.groupBox1); + this.panelMain.Controls.Add(this.tabControl1); + this.panelMain.Controls.Add(this.panel1); + this.panelMain.Dock = System.Windows.Forms.DockStyle.Fill; + this.panelMain.Location = new System.Drawing.Point(0, 0); + this.panelMain.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.panelMain.Name = "panelMain"; + this.panelMain.Size = new System.Drawing.Size(1261, 933); + this.panelMain.TabIndex = 2; + // + // groupBox1 + // + this.groupBox1.Controls.Add(this.button6); + this.groupBox1.Controls.Add(this.textBox36); + this.groupBox1.Controls.Add(this.label44); + this.groupBox1.Controls.Add(this.textBox35); + this.groupBox1.Controls.Add(this.label43); + this.groupBox1.Controls.Add(this.textBox34); + this.groupBox1.Controls.Add(this.label42); + this.groupBox1.Controls.Add(this.label41); + this.groupBox1.Controls.Add(this.textBox33); + this.groupBox1.Controls.Add(this.label40); + this.groupBox1.Controls.Add(this.textBox32); + this.groupBox1.Controls.Add(this.label39); + this.groupBox1.Controls.Add(this.textBox31); + this.groupBox1.Controls.Add(this.label38); + this.groupBox1.Controls.Add(this.textBox30); + this.groupBox1.Controls.Add(this.label37); + this.groupBox1.Controls.Add(this.textBox29); + this.groupBox1.Controls.Add(this.radioButton6); + this.groupBox1.Controls.Add(this.radioButton5); + this.groupBox1.Controls.Add(this.radioButton4); + this.groupBox1.Controls.Add(this.radioButton3); + this.groupBox1.Controls.Add(this.radioButton2); + this.groupBox1.Controls.Add(this.radioButton1); + this.groupBox1.Controls.Add(this.label36); + this.groupBox1.Controls.Add(this.textBox28); + this.groupBox1.Controls.Add(this.label35); + this.groupBox1.Controls.Add(this.label34); + this.groupBox1.Controls.Add(this.textBox27); + this.groupBox1.Controls.Add(this.label33); + this.groupBox1.Controls.Add(this.textBox26); + this.groupBox1.Controls.Add(this.label32); + this.groupBox1.Controls.Add(this.textBox25); + this.groupBox1.Controls.Add(this.label31); + this.groupBox1.Controls.Add(this.textBox24); + this.groupBox1.Controls.Add(this.label30); + this.groupBox1.Controls.Add(this.label29); + this.groupBox1.Controls.Add(this.label28); + this.groupBox1.Controls.Add(this.textBox23); + this.groupBox1.Controls.Add(this.label27); + this.groupBox1.Controls.Add(this.label26); + this.groupBox1.Controls.Add(this.textBox22); + this.groupBox1.Controls.Add(this.label25); + this.groupBox1.Controls.Add(this.label24); + this.groupBox1.Controls.Add(this.textBox21); + this.groupBox1.Controls.Add(this.label23); + this.groupBox1.Controls.Add(this.textBox20); + this.groupBox1.Controls.Add(this.label22); + this.groupBox1.Controls.Add(this.label21); + this.groupBox1.Controls.Add(this.textBox19); + this.groupBox1.Controls.Add(this.label20); + this.groupBox1.Controls.Add(this.textBox18); + this.groupBox1.Controls.Add(this.label19); + this.groupBox1.Controls.Add(this.textBox17); + this.groupBox1.Controls.Add(this.label18); + this.groupBox1.Controls.Add(this.label17); + this.groupBox1.Controls.Add(this.button5); + this.groupBox1.Controls.Add(this.textBox16); + this.groupBox1.Controls.Add(this.label16); + this.groupBox1.Controls.Add(this.button4); + this.groupBox1.Controls.Add(this.textBox15); + this.groupBox1.Controls.Add(this.label15); + this.groupBox1.Controls.Add(this.button3); + this.groupBox1.Controls.Add(this.textBox14); + this.groupBox1.Controls.Add(this.label14); + this.groupBox1.Controls.Add(this.button2); + this.groupBox1.Controls.Add(this.textBox13); + this.groupBox1.Controls.Add(this.label13); + this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; + this.groupBox1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.groupBox1.Location = new System.Drawing.Point(0, 319); + this.groupBox1.Margin = new System.Windows.Forms.Padding(19, 4, 3, 4); + this.groupBox1.Name = "groupBox1"; + this.groupBox1.Padding = new System.Windows.Forms.Padding(19, 4, 3, 4); + this.groupBox1.Size = new System.Drawing.Size(1261, 614); + this.groupBox1.TabIndex = 2; + this.groupBox1.TabStop = false; + this.groupBox1.Text = "问诊"; + // + // button6 + // + this.button6.Location = new System.Drawing.Point(1049, 565); + this.button6.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.button6.Name = "button6"; + this.button6.Size = new System.Drawing.Size(72, 33); + this.button6.TabIndex = 94; + this.button6.Text = "选择"; + this.button6.UseVisualStyleBackColor = true; + // + // textBox36 + // + this.textBox36.Location = new System.Drawing.Point(134, 567); + this.textBox36.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox36.Name = "textBox36"; + this.textBox36.Size = new System.Drawing.Size(916, 23); + this.textBox36.TabIndex = 93; + // + // label44 + // + this.label44.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label44.Location = new System.Drawing.Point(28, 566); + this.label44.Name = "label44"; + this.label44.Size = new System.Drawing.Size(105, 24); + this.label44.TabIndex = 92; + this.label44.Text = "十一、症状:"; + this.label44.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox35 + // + this.textBox35.Location = new System.Drawing.Point(135, 529); + this.textBox35.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox35.Name = "textBox35"; + this.textBox35.Size = new System.Drawing.Size(916, 23); + this.textBox35.TabIndex = 91; + // + // label43 + // + this.label43.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label43.Location = new System.Drawing.Point(28, 529); + this.label43.Name = "label43"; + this.label43.Size = new System.Drawing.Size(105, 24); + this.label43.TabIndex = 90; + this.label43.Text = "十、其 他:"; + this.label43.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox34 + // + this.textBox34.Location = new System.Drawing.Point(135, 488); + this.textBox34.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox34.Name = "textBox34"; + this.textBox34.Size = new System.Drawing.Size(916, 23); + this.textBox34.TabIndex = 89; + // + // label42 + // + this.label42.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label42.Location = new System.Drawing.Point(12, 487); + this.label42.Name = "label42"; + this.label42.Size = new System.Drawing.Size(121, 24); + this.label42.TabIndex = 88; + this.label42.Text = "九、睡眠情况:"; + this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // label41 + // + this.label41.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label41.Location = new System.Drawing.Point(591, 433); + this.label41.Name = "label41"; + this.label41.Size = new System.Drawing.Size(26, 24); + this.label41.TabIndex = 87; + this.label41.Text = "年"; + this.label41.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox33 + // + this.textBox33.Location = new System.Drawing.Point(520, 433); + this.textBox33.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox33.Name = "textBox33"; + this.textBox33.Size = new System.Drawing.Size(65, 23); + this.textBox33.TabIndex = 86; + // + // label40 + // + this.label40.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label40.Location = new System.Drawing.Point(443, 435); + this.label40.Name = "label40"; + this.label40.Size = new System.Drawing.Size(82, 24); + this.label40.TabIndex = 85; + this.label40.Text = "mL/天,共"; + this.label40.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // textBox32 + // + this.textBox32.Location = new System.Drawing.Point(372, 433); + this.textBox32.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox32.Name = "textBox32"; + this.textBox32.Size = new System.Drawing.Size(65, 23); + this.textBox32.TabIndex = 79; + // + // label39 + // + this.label39.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label39.Location = new System.Drawing.Point(694, 394); + this.label39.Name = "label39"; + this.label39.Size = new System.Drawing.Size(26, 24); + this.label39.TabIndex = 78; + this.label39.Text = "月"; + this.label39.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox31 + // + this.textBox31.Location = new System.Drawing.Point(623, 395); + this.textBox31.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox31.Name = "textBox31"; + this.textBox31.Size = new System.Drawing.Size(65, 23); + this.textBox31.TabIndex = 77; + // + // label38 + // + this.label38.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label38.Location = new System.Drawing.Point(591, 391); + this.label38.Name = "label38"; + this.label38.Size = new System.Drawing.Size(26, 24); + this.label38.TabIndex = 76; + this.label38.Text = "年"; + this.label38.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox30 + // + this.textBox30.Location = new System.Drawing.Point(520, 392); + this.textBox30.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox30.Name = "textBox30"; + this.textBox30.Size = new System.Drawing.Size(65, 23); + this.textBox30.TabIndex = 75; + // + // label37 + // + this.label37.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label37.Location = new System.Drawing.Point(443, 392); + this.label37.Name = "label37"; + this.label37.Size = new System.Drawing.Size(71, 24); + this.label37.TabIndex = 74; + this.label37.Text = "支/天,共"; + this.label37.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // textBox29 + // + this.textBox29.Location = new System.Drawing.Point(372, 393); + this.textBox29.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox29.Name = "textBox29"; + this.textBox29.Size = new System.Drawing.Size(65, 23); + this.textBox29.TabIndex = 73; + // + // radioButton6 + // + this.radioButton6.AutoSize = true; + this.radioButton6.Location = new System.Drawing.Point(289, 437); + this.radioButton6.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.radioButton6.Name = "radioButton6"; + this.radioButton6.Size = new System.Drawing.Size(62, 21); + this.radioButton6.TabIndex = 72; + this.radioButton6.TabStop = true; + this.radioButton6.Text = "经常饮"; + this.radioButton6.UseVisualStyleBackColor = true; + // + // radioButton5 + // + this.radioButton5.AutoSize = true; + this.radioButton5.Location = new System.Drawing.Point(213, 435); + this.radioButton5.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.radioButton5.Name = "radioButton5"; + this.radioButton5.Size = new System.Drawing.Size(62, 21); + this.radioButton5.TabIndex = 71; + this.radioButton5.TabStop = true; + this.radioButton5.Text = "偶饮酒"; + this.radioButton5.UseVisualStyleBackColor = true; + // + // radioButton4 + // + this.radioButton4.AutoSize = true; + this.radioButton4.Location = new System.Drawing.Point(289, 395); + this.radioButton4.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.radioButton4.Name = "radioButton4"; + this.radioButton4.Size = new System.Drawing.Size(62, 21); + this.radioButton4.TabIndex = 70; + this.radioButton4.TabStop = true; + this.radioButton4.Text = "经常吸"; + this.radioButton4.UseVisualStyleBackColor = true; + // + // radioButton3 + // + this.radioButton3.AutoSize = true; + this.radioButton3.Location = new System.Drawing.Point(213, 395); + this.radioButton3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.radioButton3.Name = "radioButton3"; + this.radioButton3.Size = new System.Drawing.Size(62, 21); + this.radioButton3.TabIndex = 69; + this.radioButton3.TabStop = true; + this.radioButton3.Text = "偶吸烟"; + this.radioButton3.UseVisualStyleBackColor = true; + // + // radioButton2 + // + this.radioButton2.AutoSize = true; + this.radioButton2.Location = new System.Drawing.Point(133, 435); + this.radioButton2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.radioButton2.Name = "radioButton2"; + this.radioButton2.Size = new System.Drawing.Size(62, 21); + this.radioButton2.TabIndex = 68; + this.radioButton2.TabStop = true; + this.radioButton2.Text = "不饮酒"; + this.radioButton2.UseVisualStyleBackColor = true; + // + // radioButton1 + // + this.radioButton1.AutoSize = true; + this.radioButton1.Location = new System.Drawing.Point(134, 395); + this.radioButton1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.radioButton1.Name = "radioButton1"; + this.radioButton1.Size = new System.Drawing.Size(62, 21); + this.radioButton1.TabIndex = 67; + this.radioButton1.TabStop = true; + this.radioButton1.Text = "不吸烟"; + this.radioButton1.UseVisualStyleBackColor = true; + // + // label36 + // + this.label36.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label36.Location = new System.Drawing.Point(22, 410); + this.label36.Name = "label36"; + this.label36.Size = new System.Drawing.Size(105, 24); + this.label36.TabIndex = 66; + this.label36.Text = "八、烟酒史:"; + this.label36.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox28 + // + this.textBox28.Location = new System.Drawing.Point(489, 339); + this.textBox28.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox28.Name = "textBox28"; + this.textBox28.Size = new System.Drawing.Size(65, 23); + this.textBox28.TabIndex = 65; + // + // label35 + // + this.label35.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label35.Location = new System.Drawing.Point(421, 343); + this.label35.Name = "label35"; + this.label35.Size = new System.Drawing.Size(69, 24); + this.label35.TabIndex = 64; + this.label35.Text = "次,早产"; + this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label34 + // + this.label34.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label34.Location = new System.Drawing.Point(842, 343); + this.label34.Name = "label34"; + this.label34.Size = new System.Drawing.Size(26, 24); + this.label34.TabIndex = 63; + this.label34.Text = "次"; + this.label34.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox27 + // + this.textBox27.Location = new System.Drawing.Point(777, 339); + this.textBox27.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox27.Name = "textBox27"; + this.textBox27.Size = new System.Drawing.Size(65, 23); + this.textBox27.TabIndex = 62; + // + // label33 + // + this.label33.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label33.Location = new System.Drawing.Point(696, 343); + this.label33.Name = "label33"; + this.label33.Size = new System.Drawing.Size(87, 24); + this.label33.TabIndex = 61; + this.label33.Text = "次,异常胎"; + this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // textBox26 + // + this.textBox26.Location = new System.Drawing.Point(628, 339); + this.textBox26.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox26.Name = "textBox26"; + this.textBox26.Size = new System.Drawing.Size(65, 23); + this.textBox26.TabIndex = 60; + // + // label32 + // + this.label32.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label32.Location = new System.Drawing.Point(559, 343); + this.label32.Name = "label32"; + this.label32.Size = new System.Drawing.Size(69, 24); + this.label32.TabIndex = 59; + this.label32.Text = "次,死产"; + this.label32.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // textBox25 + // + this.textBox25.Location = new System.Drawing.Point(356, 339); + this.textBox25.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox25.Name = "textBox25"; + this.textBox25.Size = new System.Drawing.Size(65, 23); + this.textBox25.TabIndex = 58; + // + // label31 + // + this.label31.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label31.Location = new System.Drawing.Point(282, 343); + this.label31.Name = "label31"; + this.label31.Size = new System.Drawing.Size(69, 24); + this.label31.TabIndex = 57; + this.label31.Text = "人,流产"; + this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // textBox24 + // + this.textBox24.Location = new System.Drawing.Point(215, 339); + this.textBox24.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox24.Name = "textBox24"; + this.textBox24.Size = new System.Drawing.Size(65, 23); + this.textBox24.TabIndex = 56; + // + // label30 + // + this.label30.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label30.Location = new System.Drawing.Point(131, 343); + this.label30.Name = "label30"; + this.label30.Size = new System.Drawing.Size(82, 24); + this.label30.TabIndex = 55; + this.label30.Text = "现有子女"; + this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label29 + // + this.label29.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label29.Location = new System.Drawing.Point(22, 343); + this.label29.Name = "label29"; + this.label29.Size = new System.Drawing.Size(105, 24); + this.label29.TabIndex = 54; + this.label29.Text = "七、生育史:"; + this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // label28 + // + this.label28.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label28.Location = new System.Drawing.Point(878, 290); + this.label28.Name = "label28"; + this.label28.Size = new System.Drawing.Size(26, 24); + this.label28.TabIndex = 53; + this.label28.Text = ")"; + this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // textBox23 + // + this.textBox23.Location = new System.Drawing.Point(717, 290); + this.textBox23.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox23.Name = "textBox23"; + this.textBox23.Size = new System.Drawing.Size(160, 23); + this.textBox23.TabIndex = 52; + // + // label27 + // + this.label27.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label27.Location = new System.Drawing.Point(581, 290); + this.label27.Name = "label27"; + this.label27.Size = new System.Drawing.Size(146, 24); + this.label27.TabIndex = 51; + this.label27.Text = "末次月经/停经年龄:"; + this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // label26 + // + this.label26.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label26.Location = new System.Drawing.Point(531, 304); + this.label26.Name = "label26"; + this.label26.Size = new System.Drawing.Size(26, 24); + this.label26.TabIndex = 50; + this.label26.Text = "天"; + this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox22 + // + this.textBox22.Location = new System.Drawing.Point(465, 304); + this.textBox22.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox22.Name = "textBox22"; + this.textBox22.Size = new System.Drawing.Size(65, 23); + this.textBox22.TabIndex = 49; + // + // label25 + // + this.label25.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label25.Location = new System.Drawing.Point(419, 302); + this.label25.Name = "label25"; + this.label25.Size = new System.Drawing.Size(51, 24); + this.label25.TabIndex = 48; + this.label25.Text = "经期"; + this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // label24 + // + this.label24.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label24.Location = new System.Drawing.Point(531, 272); + this.label24.Name = "label24"; + this.label24.Size = new System.Drawing.Size(26, 24); + this.label24.TabIndex = 47; + this.label24.Text = "天"; + this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox21 + // + this.textBox21.Location = new System.Drawing.Point(465, 268); + this.textBox21.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox21.Name = "textBox21"; + this.textBox21.Size = new System.Drawing.Size(65, 23); + this.textBox21.TabIndex = 46; + // + // label23 + // + this.label23.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label23.Location = new System.Drawing.Point(419, 270); + this.label23.Name = "label23"; + this.label23.Size = new System.Drawing.Size(51, 24); + this.label23.TabIndex = 45; + this.label23.Text = "经期"; + this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox20 + // + this.textBox20.Location = new System.Drawing.Point(236, 290); + this.textBox20.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox20.Name = "textBox20"; + this.textBox20.Size = new System.Drawing.Size(160, 23); + this.textBox20.TabIndex = 44; + // + // label22 + // + this.label22.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label22.Location = new System.Drawing.Point(134, 290); + this.label22.Name = "label22"; + this.label22.Size = new System.Drawing.Size(105, 24); + this.label22.TabIndex = 43; + this.label22.Text = "(初潮"; + this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // label21 + // + this.label21.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label21.Location = new System.Drawing.Point(22, 294); + this.label21.Name = "label21"; + this.label21.Size = new System.Drawing.Size(105, 24); + this.label21.TabIndex = 42; + this.label21.Text = "六、月经史:"; + this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox19 + // + this.textBox19.Location = new System.Drawing.Point(280, 229); + this.textBox19.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox19.Name = "textBox19"; + this.textBox19.Size = new System.Drawing.Size(770, 23); + this.textBox19.TabIndex = 41; + // + // label20 + // + this.label20.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label20.Location = new System.Drawing.Point(134, 232); + this.label20.Name = "label20"; + this.label20.Size = new System.Drawing.Size(149, 24); + this.label20.TabIndex = 40; + this.label20.Text = "配偶职业及健康状况:"; + this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // textBox18 + // + this.textBox18.Location = new System.Drawing.Point(573, 188); + this.textBox18.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox18.Name = "textBox18"; + this.textBox18.Size = new System.Drawing.Size(478, 23); + this.textBox18.TabIndex = 39; + // + // label19 + // + this.label19.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label19.Location = new System.Drawing.Point(449, 188); + this.label19.Name = "label19"; + this.label19.Size = new System.Drawing.Size(117, 24); + this.label19.TabIndex = 38; + this.label19.Text = "配偶放射历史:"; + this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // textBox17 + // + this.textBox17.Location = new System.Drawing.Point(215, 188); + this.textBox17.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox17.Name = "textBox17"; + this.textBox17.Size = new System.Drawing.Size(160, 23); + this.textBox17.TabIndex = 37; + // + // label18 + // + this.label18.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label18.Location = new System.Drawing.Point(131, 192); + this.label18.Name = "label18"; + this.label18.Size = new System.Drawing.Size(82, 24); + this.label18.TabIndex = 36; + this.label18.Text = "结婚日期:"; + this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label17 + // + this.label17.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label17.Location = new System.Drawing.Point(22, 214); + this.label17.Name = "label17"; + this.label17.Size = new System.Drawing.Size(105, 24); + this.label17.TabIndex = 35; + this.label17.Text = "五、结婚史:"; + this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // button5 + // + this.button5.Location = new System.Drawing.Point(1049, 142); + this.button5.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.button5.Name = "button5"; + this.button5.Size = new System.Drawing.Size(72, 33); + this.button5.TabIndex = 34; + this.button5.Text = "选择"; + this.button5.UseVisualStyleBackColor = true; + // + // textBox16 + // + this.textBox16.Location = new System.Drawing.Point(134, 144); + this.textBox16.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox16.Name = "textBox16"; + this.textBox16.Size = new System.Drawing.Size(916, 23); + this.textBox16.TabIndex = 33; + // + // label16 + // + this.label16.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label16.Location = new System.Drawing.Point(22, 144); + this.label16.Name = "label16"; + this.label16.Size = new System.Drawing.Size(105, 24); + this.label16.TabIndex = 32; + this.label16.Text = "四、手术史:"; + this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // button4 + // + this.button4.Location = new System.Drawing.Point(1049, 105); + this.button4.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.button4.Name = "button4"; + this.button4.Size = new System.Drawing.Size(72, 33); + this.button4.TabIndex = 31; + this.button4.Text = "选择"; + this.button4.UseVisualStyleBackColor = true; + // + // textBox15 + // + this.textBox15.Location = new System.Drawing.Point(134, 108); + this.textBox15.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox15.Name = "textBox15"; + this.textBox15.Size = new System.Drawing.Size(916, 23); + this.textBox15.TabIndex = 30; + // + // label15 + // + this.label15.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label15.Location = new System.Drawing.Point(22, 105); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(105, 24); + this.label15.TabIndex = 29; + this.label15.Text = "三、家族史:"; + this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // button3 + // + this.button3.Location = new System.Drawing.Point(1049, 70); + this.button3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.button3.Name = "button3"; + this.button3.Size = new System.Drawing.Size(72, 33); + this.button3.TabIndex = 28; + this.button3.Text = "选择"; + this.button3.UseVisualStyleBackColor = true; + // + // textBox14 + // + this.textBox14.Location = new System.Drawing.Point(134, 72); + this.textBox14.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox14.Name = "textBox14"; + this.textBox14.Size = new System.Drawing.Size(916, 23); + this.textBox14.TabIndex = 27; + // + // label14 + // + this.label14.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label14.Location = new System.Drawing.Point(23, 72); + this.label14.Name = "label14"; + this.label14.Size = new System.Drawing.Size(105, 24); + this.label14.TabIndex = 26; + this.label14.Text = "二、现病史:"; + this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // button2 + // + this.button2.Location = new System.Drawing.Point(1049, 33); + this.button2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.button2.Name = "button2"; + this.button2.Size = new System.Drawing.Size(72, 33); + this.button2.TabIndex = 25; + this.button2.Text = "选择"; + this.button2.UseVisualStyleBackColor = true; + // + // textBox13 + // + this.textBox13.Location = new System.Drawing.Point(134, 38); + this.textBox13.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.textBox13.Name = "textBox13"; + this.textBox13.Size = new System.Drawing.Size(916, 23); + this.textBox13.TabIndex = 14; + // + // label13 + // + this.label13.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label13.Location = new System.Drawing.Point(22, 42); + this.label13.Name = "label13"; + this.label13.Size = new System.Drawing.Size(105, 24); + this.label13.TabIndex = 1; + this.label13.Text = "一、既往史:"; + this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // tabControl1 + // + this.tabControl1.Controls.Add(this.tabPage1); + this.tabControl1.Controls.Add(this.tabPage2); + this.tabControl1.Dock = System.Windows.Forms.DockStyle.Top; + this.tabControl1.Location = new System.Drawing.Point(0, 136); + this.tabControl1.Margin = new System.Windows.Forms.Padding(7, 4, 3, 4); + this.tabControl1.Name = "tabControl1"; + this.tabControl1.Padding = new System.Drawing.Point(16, 3); + this.tabControl1.SelectedIndex = 0; + this.tabControl1.Size = new System.Drawing.Size(1261, 183); + this.tabControl1.TabIndex = 1; + // + // tabPage1 + // + this.tabPage1.Controls.Add(this.gridControl1); + this.tabPage1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tabPage1.Location = new System.Drawing.Point(4, 26); + this.tabPage1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.tabPage1.Name = "tabPage1"; + this.tabPage1.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.tabPage1.Size = new System.Drawing.Size(1253, 153); + this.tabPage1.TabIndex = 0; + this.tabPage1.Text = "职业史表"; + this.tabPage1.UseVisualStyleBackColor = true; + // + // gridControl1 + // + this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill; + this.gridControl1.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.gridControl1.Location = new System.Drawing.Point(3, 4); + this.gridControl1.MainView = this.gridView1; + this.gridControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.gridControl1.Name = "gridControl1"; + this.gridControl1.Size = new System.Drawing.Size(1247, 145); + this.gridControl1.TabIndex = 0; + this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { + this.gridView1}); + // + // gridView1 + // + this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { + this.gridColumn1, + this.gridColumn2, + this.gridColumn3, + this.gridColumn4, + this.gridColumn5, + this.gridColumn6}); + this.gridView1.GridControl = this.gridControl1; + this.gridView1.Name = "gridView1"; + this.gridView1.OptionsView.ShowGroupExpandCollapseButtons = false; + this.gridView1.OptionsView.ShowGroupPanel = false; + // + // gridColumn1 + // + this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true; + this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn1.Caption = "起止日期"; + this.gridColumn1.Name = "gridColumn1"; + this.gridColumn1.Visible = true; + this.gridColumn1.VisibleIndex = 0; + // + // gridColumn2 + // + this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true; + this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn2.Caption = "工作单位"; + this.gridColumn2.Name = "gridColumn2"; + this.gridColumn2.Visible = true; + this.gridColumn2.VisibleIndex = 1; + // + // gridColumn3 + // + this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true; + this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn3.Caption = "车间"; + this.gridColumn3.Name = "gridColumn3"; + this.gridColumn3.Visible = true; + this.gridColumn3.VisibleIndex = 2; + // + // gridColumn4 + // + this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true; + this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn4.Caption = "工种"; + this.gridColumn4.Name = "gridColumn4"; + this.gridColumn4.Visible = true; + this.gridColumn4.VisibleIndex = 3; + // + // gridColumn5 + // + this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true; + this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn5.Caption = "有害因素"; + this.gridColumn5.Name = "gridColumn5"; + this.gridColumn5.Visible = true; + this.gridColumn5.VisibleIndex = 4; + // + // gridColumn6 + // + this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true; + this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn6.Caption = "防护措施"; + this.gridColumn6.Name = "gridColumn6"; + this.gridColumn6.Visible = true; + this.gridColumn6.VisibleIndex = 5; + // + // tabPage2 + // + this.tabPage2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tabPage2.Location = new System.Drawing.Point(4, 26); + this.tabPage2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.tabPage2.Name = "tabPage2"; + this.tabPage2.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.tabPage2.Size = new System.Drawing.Size(1253, 153); + this.tabPage2.TabIndex = 1; + this.tabPage2.Text = "放射职业史表"; + this.tabPage2.UseVisualStyleBackColor = true; + // + // panelButtom + // + this.panelButtom.Controls.Add(this.CancelBtn); + this.panelButtom.Controls.Add(this.ConfirmBtn); + this.panelButtom.Dock = System.Windows.Forms.DockStyle.Bottom; + this.panelButtom.Location = new System.Drawing.Point(0, 933); + this.panelButtom.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.panelButtom.Name = "panelButtom"; + this.panelButtom.Size = new System.Drawing.Size(1261, 66); + this.panelButtom.TabIndex = 3; + // + // CancelBtn + // + this.CancelBtn.Image = ((System.Drawing.Image)(resources.GetObject("CancelBtn.Image"))); + this.CancelBtn.Location = new System.Drawing.Point(701, 8); + this.CancelBtn.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); + this.CancelBtn.Name = "CancelBtn"; + this.CancelBtn.Size = new System.Drawing.Size(91, 48); + this.CancelBtn.TabIndex = 19; + this.CancelBtn.Text = "取消"; + this.CancelBtn.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + this.CancelBtn.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; + this.CancelBtn.UseVisualStyleBackColor = true; + // + // ConfirmBtn + // + this.ConfirmBtn.Image = ((System.Drawing.Image)(resources.GetObject("ConfirmBtn.Image"))); + this.ConfirmBtn.Location = new System.Drawing.Point(426, 8); + this.ConfirmBtn.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); + this.ConfirmBtn.Name = "ConfirmBtn"; + this.ConfirmBtn.Size = new System.Drawing.Size(90, 48); + this.ConfirmBtn.TabIndex = 18; + this.ConfirmBtn.Text = "确认"; + this.ConfirmBtn.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + this.ConfirmBtn.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; + this.ConfirmBtn.UseVisualStyleBackColor = true; + // + // superTabControl1 + // + // + // + // + // + // + // + this.superTabControl1.ControlBox.CloseBox.Name = ""; + // + // + // + this.superTabControl1.ControlBox.MenuBox.Name = ""; + this.superTabControl1.ControlBox.Name = ""; + this.superTabControl1.ControlBox.SubItems.AddRange(new FastReport.DevComponents.DotNetBar.BaseItem[] { + this.superTabControl1.ControlBox.MenuBox, + this.superTabControl1.ControlBox.CloseBox}); + this.superTabControl1.Location = new System.Drawing.Point(0, 0); + this.superTabControl1.Name = "superTabControl1"; + this.superTabControl1.ReorderTabsEnabled = true; + this.superTabControl1.SelectedTabIndex = -1; + this.superTabControl1.TabIndex = 0; + // + // CareerHisInqForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(1261, 999); + this.Controls.Add(this.panelMain); + this.Controls.Add(this.panelButtom); + this.Controls.Add(this.advPropertyGrid1); + this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.Name = "CareerHisInqForm"; + this.Text = "职业史问诊"; + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.advPropertyGrid1)).EndInit(); + this.panelMain.ResumeLayout(false); + this.groupBox1.ResumeLayout(false); + this.groupBox1.PerformLayout(); + this.tabControl1.ResumeLayout(false); + this.tabPage1.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit(); + this.panelButtom.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.TextBox textBox5; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.TextBox textBox4; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.TextBox textBox3; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.TextBox textBox2; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.TextBox textBox12; + private System.Windows.Forms.Label label12; + private System.Windows.Forms.TextBox textBox11; + private System.Windows.Forms.Label label11; + private System.Windows.Forms.TextBox textBox10; + private System.Windows.Forms.Label label10; + private System.Windows.Forms.TextBox textBox9; + private System.Windows.Forms.Label label9; + private System.Windows.Forms.TextBox textBox8; + private System.Windows.Forms.Label label8; + private System.Windows.Forms.TextBox textBox7; + private System.Windows.Forms.Label label7; + private System.Windows.Forms.TextBox textBox6; + private System.Windows.Forms.Label label6; + private FastReport.DevComponents.DotNetBar.AdvPropertyGrid advPropertyGrid1; + private System.Windows.Forms.Panel panelMain; + private System.Windows.Forms.Panel panelButtom; + private FastReport.DevComponents.DotNetBar.SuperTabControl superTabControl1; + private System.Windows.Forms.TabControl tabControl1; + private System.Windows.Forms.TabPage tabPage1; + private System.Windows.Forms.TabPage tabPage2; + private System.Windows.Forms.GroupBox groupBox1; + private System.Windows.Forms.Label label22; + private System.Windows.Forms.Label label21; + private System.Windows.Forms.TextBox textBox19; + private System.Windows.Forms.Label label20; + private System.Windows.Forms.TextBox textBox18; + private System.Windows.Forms.Label label19; + private System.Windows.Forms.TextBox textBox17; + private System.Windows.Forms.Label label18; + private System.Windows.Forms.Label label17; + private System.Windows.Forms.Button button5; + private System.Windows.Forms.TextBox textBox16; + private System.Windows.Forms.Label label16; + private System.Windows.Forms.Button button4; + private System.Windows.Forms.TextBox textBox15; + private System.Windows.Forms.Label label15; + private System.Windows.Forms.Button button3; + private System.Windows.Forms.TextBox textBox14; + private System.Windows.Forms.Label label14; + private System.Windows.Forms.Button button2; + private System.Windows.Forms.TextBox textBox13; + private System.Windows.Forms.Label label13; + private System.Windows.Forms.Label label34; + private System.Windows.Forms.TextBox textBox27; + private System.Windows.Forms.Label label33; + private System.Windows.Forms.TextBox textBox26; + private System.Windows.Forms.Label label32; + private System.Windows.Forms.TextBox textBox25; + private System.Windows.Forms.Label label31; + private System.Windows.Forms.TextBox textBox24; + private System.Windows.Forms.Label label30; + private System.Windows.Forms.Label label29; + private System.Windows.Forms.Label label28; + private System.Windows.Forms.TextBox textBox23; + private System.Windows.Forms.Label label27; + private System.Windows.Forms.Label label26; + private System.Windows.Forms.TextBox textBox22; + private System.Windows.Forms.Label label25; + private System.Windows.Forms.Label label24; + private System.Windows.Forms.TextBox textBox21; + private System.Windows.Forms.Label label23; + private System.Windows.Forms.TextBox textBox20; + private System.Windows.Forms.Label label36; + private System.Windows.Forms.TextBox textBox28; + private System.Windows.Forms.Label label35; + private System.Windows.Forms.Button button6; + private System.Windows.Forms.TextBox textBox36; + private System.Windows.Forms.Label label44; + private System.Windows.Forms.TextBox textBox35; + private System.Windows.Forms.Label label43; + private System.Windows.Forms.TextBox textBox34; + private System.Windows.Forms.Label label42; + private System.Windows.Forms.Label label41; + private System.Windows.Forms.TextBox textBox33; + private System.Windows.Forms.Label label40; + private System.Windows.Forms.TextBox textBox32; + private System.Windows.Forms.Label label39; + private System.Windows.Forms.TextBox textBox31; + private System.Windows.Forms.Label label38; + private System.Windows.Forms.TextBox textBox30; + private System.Windows.Forms.Label label37; + private System.Windows.Forms.TextBox textBox29; + private System.Windows.Forms.RadioButton radioButton6; + private System.Windows.Forms.RadioButton radioButton5; + private System.Windows.Forms.RadioButton radioButton4; + private System.Windows.Forms.RadioButton radioButton3; + private System.Windows.Forms.RadioButton radioButton2; + private System.Windows.Forms.RadioButton radioButton1; + private System.Windows.Forms.Button ConfirmBtn; + private System.Windows.Forms.Button CancelBtn; + private DevExpress.XtraGrid.GridControl gridControl1; + private DevExpress.XtraGrid.Views.Grid.GridView gridView1; + private DevExpress.XtraGrid.Columns.GridColumn gridColumn1; + private DevExpress.XtraGrid.Columns.GridColumn gridColumn2; + private DevExpress.XtraGrid.Columns.GridColumn gridColumn3; + private DevExpress.XtraGrid.Columns.GridColumn gridColumn4; + private DevExpress.XtraGrid.Columns.GridColumn gridColumn5; + private DevExpress.XtraGrid.Columns.GridColumn gridColumn6; + } +} \ No newline at end of file diff --git a/PEIS/View/Exam/CareerHisInqForm.cs b/PEIS/View/Exam/CareerHisInqForm.cs new file mode 100644 index 0000000..f84baf9 --- /dev/null +++ b/PEIS/View/Exam/CareerHisInqForm.cs @@ -0,0 +1,58 @@ +using PEIS.Base; +using PEIS.Entity; +using PEIS.Event; +using PEIS.Presenter; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Windows.Forms; + +namespace PEIS.View.Exam +{ + public partial class CareerHisInqForm : ViewBase, ICareerHisInqView + { + private Int64 PID; + public CareerHisInqForm(Int64 pID) + { + InitializeComponent(); + PID = pID; + Shown += CareerHisInqForm_Shown; + ConfirmBtn.Click += ConfirmBtn_Click; + CancelBtn.Click += CancelBtn_Click; + LoadPatients(pID); + + } + protected virtual void LoadPatients(Int64 pID) + { + GetPatients?.Invoke(this, new Args { ID = pID }); + } + //获取患者基本信息 + public event EventHandler> GetPatients; + public void ShowPatient(BasePatient patient) + { + } + + private void CareerHisInqForm_Shown(object sender, EventArgs e) + { + throw new NotImplementedException(); + } + + private void ConfirmBtn_Click(object sender, EventArgs e) + { + throw new NotImplementedException(); + } + private void CancelBtn_Click(object sender, EventArgs e) + { + Close(); + } + + protected override object CreatePresenter() + { + return new CareerHisInqPresenter(this); + } + } +} diff --git a/PEIS/View/Exam/CareerHisInqForm.resx b/PEIS/View/Exam/CareerHisInqForm.resx new file mode 100644 index 0000000..2fa380b --- /dev/null +++ b/PEIS/View/Exam/CareerHisInqForm.resx @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAH1JREFUSEvt + lEEKgDAMBPNJf5GX+T+9aiM5REhDVlPx0AGhbXan4KE0+R8787Ixr7pNIx3p6raPBNt3IJfAHaSAZG9k + iplMSCSIZhCeyDt7hRXatY5rMOJ6uTD0AiOv/0We0Dt7RCSKZikygkzGBSki2Qu40IA6w5/ryccQnexo + 4OWtCNeHAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAPJJREFUSEtj + GAWjgCRgP/9/KJRJfWA/73+kw7z//4GWmEKFqAeAhsaCDAfiy3az/2tChakDgC5PhBp+3m7+f1WoMHUA + 0OWpUMPP2Mz7rwQVpg4AujwTavgJl4X/5aDChIHD3P8NUCZOAHR5Ltjwuf+POE3/Lw0VJgyAmtKhGnFa + AnR5IdTlB5xn/xeHChMPgBpX4bIE6PJSqNwe54X/haHCpAO4JfP/10OFQC6vBIvN+78DKC4AFSYfwC0B + +gTo8looe4vDqv88UCWUA7glELzBsu8/J1SKegBsyfz/a4xn/meFCtEANPxngrJGwShABwwMAJBYlx6C + WXdWAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/PEIS/View/Exam/ICareerHisInqView.cs b/PEIS/View/Exam/ICareerHisInqView.cs new file mode 100644 index 0000000..17d1843 --- /dev/null +++ b/PEIS/View/Exam/ICareerHisInqView.cs @@ -0,0 +1,17 @@ +using PEIS.Base; +using PEIS.Entity; +using PEIS.Event; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace PEIS.View.Exam +{ + internal interface ICareerHisInqView:IViewBase + { + //获取患者基本信息 + event EventHandler> GetPatients; + void ShowPatient(BasePatient patient); + } +}