AIMS/AIMS/PublicUI/frmPerson.Designer.cs
2022-09-14 16:23:59 +08:00

826 lines
40 KiB
C#

namespace AIMS.PublicUI.UI
{
partial class frmPerson
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.panel2 = new System.Windows.Forms.Panel();
this.dgvPerson = new System.Windows.Forms.DataGridView();
this.Id = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.DepNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.NoColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.NameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.HelpCodeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.SexColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.DiplomaColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.JobTitleColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.BirthDayColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.TimeToWorkColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.PersonTypeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.RoleNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.PassWordColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.IsValidColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.PersonOrderColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.panel1 = new System.Windows.Forms.Panel();
this.cboPersonType = new System.Windows.Forms.ComboBox();
this.label14 = new System.Windows.Forms.Label();
this.txtPassWord = new System.Windows.Forms.TextBox();
this.label13 = new System.Windows.Forms.Label();
this.cboSex = new System.Windows.Forms.ComboBox();
this.label11 = new System.Windows.Forms.Label();
this.txtNo = new System.Windows.Forms.TextBox();
this.label10 = new System.Windows.Forms.Label();
this.cboJobTitle = new System.Windows.Forms.ComboBox();
this.label9 = new System.Windows.Forms.Label();
this.cboDiploma = new System.Windows.Forms.ComboBox();
this.label8 = new System.Windows.Forms.Label();
this.dtpTimeToWork = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
this.label7 = new System.Windows.Forms.Label();
this.dtpBirthDay = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
this.label6 = new System.Windows.Forms.Label();
this.cboRole = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.cboDepartment = new System.Windows.Forms.ComboBox();
this.label5 = new System.Windows.Forms.Label();
this.txtHelpCode = new System.Windows.Forms.TextBox();
this.label12 = new System.Windows.Forms.Label();
this.intPersonOrder = new DevComponents.Editors.IntegerInput();
this.label4 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.chkIsValid = new System.Windows.Forms.CheckBox();
this.txtName = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.tsbCancel = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.tsbModify = new System.Windows.Forms.ToolStripButton();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.tsbAdd = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.tsbSava = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.tsbExit = new System.Windows.Forms.ToolStripButton();
this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvPerson)).BeginInit();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dtpTimeToWork)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dtpBirthDay)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.intPersonOrder)).BeginInit();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// panel2
//
this.panel2.Controls.Add(this.dgvPerson);
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel2.Location = new System.Drawing.Point(0, 157);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(913, 338);
this.panel2.TabIndex = 7;
//
// dgvPerson
//
this.dgvPerson.AllowUserToAddRows = false;
this.dgvPerson.BackgroundColor = System.Drawing.Color.White;
this.dgvPerson.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvPerson.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Id,
this.DepNameColumn,
this.NoColumn,
this.NameColumn,
this.HelpCodeColumn,
this.SexColumn,
this.DiplomaColumn,
this.JobTitleColumn,
this.BirthDayColumn,
this.TimeToWorkColumn,
this.PersonTypeColumn,
this.RoleNameColumn,
this.PassWordColumn,
this.IsValidColumn,
this.PersonOrderColumn});
this.dgvPerson.Dock = System.Windows.Forms.DockStyle.Fill;
this.dgvPerson.Location = new System.Drawing.Point(0, 0);
this.dgvPerson.Name = "dgvPerson";
this.dgvPerson.RowHeadersVisible = false;
this.dgvPerson.RowTemplate.Height = 23;
this.dgvPerson.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvPerson.Size = new System.Drawing.Size(913, 338);
this.dgvPerson.TabIndex = 2;
//
// Id
//
this.Id.DataPropertyName = "Id";
this.Id.Frozen = true;
this.Id.HeaderText = "Id";
this.Id.Name = "Id";
this.Id.ReadOnly = true;
this.Id.Visible = false;
//
// DepNameColumn
//
this.DepNameColumn.DataPropertyName = "DepName";
this.DepNameColumn.HeaderText = "所在科室";
this.DepNameColumn.Name = "DepNameColumn";
this.DepNameColumn.ReadOnly = true;
//
// NoColumn
//
this.NoColumn.DataPropertyName = "No";
this.NoColumn.HeaderText = "工号";
this.NoColumn.Name = "NoColumn";
this.NoColumn.ReadOnly = true;
this.NoColumn.Width = 80;
//
// NameColumn
//
this.NameColumn.DataPropertyName = "Name";
this.NameColumn.HeaderText = "名称";
this.NameColumn.Name = "NameColumn";
this.NameColumn.ReadOnly = true;
//
// HelpCodeColumn
//
this.HelpCodeColumn.DataPropertyName = "HelpCode";
this.HelpCodeColumn.HeaderText = "助记码";
this.HelpCodeColumn.Name = "HelpCodeColumn";
this.HelpCodeColumn.ReadOnly = true;
this.HelpCodeColumn.Width = 80;
//
// SexColumn
//
this.SexColumn.DataPropertyName = "Sex";
this.SexColumn.HeaderText = "性别";
this.SexColumn.Name = "SexColumn";
this.SexColumn.ReadOnly = true;
this.SexColumn.Width = 60;
//
// DiplomaColumn
//
this.DiplomaColumn.DataPropertyName = "Diploma";
this.DiplomaColumn.HeaderText = "学历";
this.DiplomaColumn.Name = "DiplomaColumn";
this.DiplomaColumn.ReadOnly = true;
this.DiplomaColumn.Width = 80;
//
// JobTitleColumn
//
this.JobTitleColumn.DataPropertyName = "JobTitle";
this.JobTitleColumn.HeaderText = "职称";
this.JobTitleColumn.Name = "JobTitleColumn";
this.JobTitleColumn.ReadOnly = true;
this.JobTitleColumn.Width = 80;
//
// BirthDayColumn
//
this.BirthDayColumn.DataPropertyName = "BirthDay";
this.BirthDayColumn.HeaderText = "出生日期";
this.BirthDayColumn.Name = "BirthDayColumn";
this.BirthDayColumn.ReadOnly = true;
//
// TimeToWorkColumn
//
this.TimeToWorkColumn.DataPropertyName = "TimeToWork";
this.TimeToWorkColumn.HeaderText = "参加工作日期";
this.TimeToWorkColumn.Name = "TimeToWorkColumn";
this.TimeToWorkColumn.ReadOnly = true;
//
// PersonTypeColumn
//
this.PersonTypeColumn.DataPropertyName = "PersonType";
this.PersonTypeColumn.HeaderText = "类型";
this.PersonTypeColumn.Name = "PersonTypeColumn";
this.PersonTypeColumn.ReadOnly = true;
//
// RoleNameColumn
//
this.RoleNameColumn.DataPropertyName = "RoleName";
this.RoleNameColumn.HeaderText = "角色";
this.RoleNameColumn.Name = "RoleNameColumn";
this.RoleNameColumn.ReadOnly = true;
//
// PassWordColumn
//
this.PassWordColumn.DataPropertyName = "PassWord";
this.PassWordColumn.HeaderText = "密码";
this.PassWordColumn.Name = "PassWordColumn";
this.PassWordColumn.ReadOnly = true;
this.PassWordColumn.Visible = false;
//
// IsValidColumn
//
this.IsValidColumn.DataPropertyName = "IsValid";
this.IsValidColumn.HeaderText = "有效性";
this.IsValidColumn.Name = "IsValidColumn";
this.IsValidColumn.ReadOnly = true;
this.IsValidColumn.Width = 75;
//
// PersonOrderColumn
//
this.PersonOrderColumn.DataPropertyName = "PersonOrder";
this.PersonOrderColumn.HeaderText = "排序";
this.PersonOrderColumn.Name = "PersonOrderColumn";
this.PersonOrderColumn.ReadOnly = true;
this.PersonOrderColumn.Width = 60;
//
// panel1
//
this.panel1.Controls.Add(this.cboPersonType);
this.panel1.Controls.Add(this.label14);
this.panel1.Controls.Add(this.txtPassWord);
this.panel1.Controls.Add(this.label13);
this.panel1.Controls.Add(this.cboSex);
this.panel1.Controls.Add(this.label11);
this.panel1.Controls.Add(this.txtNo);
this.panel1.Controls.Add(this.label10);
this.panel1.Controls.Add(this.cboJobTitle);
this.panel1.Controls.Add(this.label9);
this.panel1.Controls.Add(this.cboDiploma);
this.panel1.Controls.Add(this.label8);
this.panel1.Controls.Add(this.dtpTimeToWork);
this.panel1.Controls.Add(this.label7);
this.panel1.Controls.Add(this.dtpBirthDay);
this.panel1.Controls.Add(this.label6);
this.panel1.Controls.Add(this.cboRole);
this.panel1.Controls.Add(this.label3);
this.panel1.Controls.Add(this.cboDepartment);
this.panel1.Controls.Add(this.label5);
this.panel1.Controls.Add(this.txtHelpCode);
this.panel1.Controls.Add(this.label12);
this.panel1.Controls.Add(this.intPersonOrder);
this.panel1.Controls.Add(this.label4);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.chkIsValid);
this.panel1.Controls.Add(this.txtName);
this.panel1.Controls.Add(this.label1);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Font = new System.Drawing.Font("宋体", 10.5F);
this.panel1.Location = new System.Drawing.Point(0, 49);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(913, 108);
this.panel1.TabIndex = 6;
//
// cboPersonType
//
this.cboPersonType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboPersonType.FormattingEnabled = true;
this.cboPersonType.Items.AddRange(new object[] {
"药品管理部门",
"诊疗部门",
"辅助诊疗部门",
"护理部门",
"行政后勤部门",
"手术室",
"社区"});
this.cboPersonType.Location = new System.Drawing.Point(71, 73);
this.cboPersonType.Name = "cboPersonType";
this.cboPersonType.Size = new System.Drawing.Size(123, 22);
this.cboPersonType.TabIndex = 574;
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(30, 75);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(35, 14);
this.label14.TabIndex = 573;
this.label14.Text = "类别";
//
// txtPassWord
//
this.txtPassWord.Location = new System.Drawing.Point(473, 73);
this.txtPassWord.Name = "txtPassWord";
this.txtPassWord.Size = new System.Drawing.Size(100, 23);
this.txtPassWord.TabIndex = 572;
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(417, 75);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(35, 14);
this.label13.TabIndex = 571;
this.label13.Text = "密码";
//
// cboSex
//
this.cboSex.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboSex.FormattingEnabled = true;
this.cboSex.Items.AddRange(new object[] {
"男",
"女",
"不详"});
this.cboSex.Location = new System.Drawing.Point(814, 10);
this.cboSex.Name = "cboSex";
this.cboSex.Size = new System.Drawing.Size(62, 22);
this.cboSex.TabIndex = 570;
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(773, 17);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(35, 14);
this.label11.TabIndex = 569;
this.label11.Text = "性别";
//
// txtNo
//
this.txtNo.Location = new System.Drawing.Point(275, 10);
this.txtNo.Name = "txtNo";
this.txtNo.Size = new System.Drawing.Size(100, 23);
this.txtNo.TabIndex = 568;
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(229, 16);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(35, 14);
this.label10.TabIndex = 567;
this.label10.Text = "工号";
//
// cboJobTitle
//
this.cboJobTitle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboJobTitle.FormattingEnabled = true;
this.cboJobTitle.Items.AddRange(new object[] {
"药品管理部门",
"诊疗部门",
"辅助诊疗部门",
"护理部门",
"行政后勤部门",
"手术室",
"社区"});
this.cboJobTitle.Location = new System.Drawing.Point(275, 42);
this.cboJobTitle.Name = "cboJobTitle";
this.cboJobTitle.Size = new System.Drawing.Size(100, 22);
this.cboJobTitle.TabIndex = 566;
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(229, 48);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(35, 14);
this.label9.TabIndex = 565;
this.label9.Text = "职称";
//
// cboDiploma
//
this.cboDiploma.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboDiploma.FormattingEnabled = true;
this.cboDiploma.Items.AddRange(new object[] {
"药品管理部门",
"诊疗部门",
"辅助诊疗部门",
"护理部门",
"行政后勤部门",
"手术室",
"社区"});
this.cboDiploma.Location = new System.Drawing.Point(71, 42);
this.cboDiploma.Name = "cboDiploma";
this.cboDiploma.Size = new System.Drawing.Size(123, 22);
this.cboDiploma.TabIndex = 564;
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(30, 48);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(35, 14);
this.label8.TabIndex = 563;
this.label8.Text = "学历";
//
// dtpTimeToWork
//
//
//
//
this.dtpTimeToWork.BackgroundStyle.Class = "DateTimeInputBackground";
this.dtpTimeToWork.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.dtpTimeToWork.ButtonDropDown.Visible = true;
this.dtpTimeToWork.Cursor = System.Windows.Forms.Cursors.Arrow;
this.dtpTimeToWork.CustomFormat = "yyyy-MM-dd";
this.dtpTimeToWork.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
this.dtpTimeToWork.IsPopupCalendarOpen = false;
this.dtpTimeToWork.Location = new System.Drawing.Point(738, 42);
//
//
//
//
//
//
this.dtpTimeToWork.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
this.dtpTimeToWork.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.dtpTimeToWork.MonthCalendar.ClearButtonVisible = true;
//
//
//
this.dtpTimeToWork.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
this.dtpTimeToWork.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
this.dtpTimeToWork.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
this.dtpTimeToWork.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.dtpTimeToWork.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
this.dtpTimeToWork.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
this.dtpTimeToWork.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.dtpTimeToWork.MonthCalendar.DisplayMonth = new System.DateTime(2018, 1, 1, 0, 0, 0, 0);
//
//
//
this.dtpTimeToWork.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
this.dtpTimeToWork.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
this.dtpTimeToWork.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
this.dtpTimeToWork.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.dtpTimeToWork.MonthCalendar.TodayButtonVisible = true;
this.dtpTimeToWork.Name = "dtpTimeToWork";
this.dtpTimeToWork.Size = new System.Drawing.Size(138, 23);
this.dtpTimeToWork.TabIndex = 562;
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(631, 46);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(91, 14);
this.label7.TabIndex = 561;
this.label7.Text = "参加工作日期";
//
// dtpBirthDay
//
//
//
//
this.dtpBirthDay.BackgroundStyle.Class = "DateTimeInputBackground";
this.dtpBirthDay.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.dtpBirthDay.ButtonDropDown.Visible = true;
this.dtpBirthDay.CustomFormat = "yyyy-MM-dd";
this.dtpBirthDay.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
this.dtpBirthDay.IsPopupCalendarOpen = false;
this.dtpBirthDay.Location = new System.Drawing.Point(473, 42);
//
//
//
//
//
//
this.dtpBirthDay.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
this.dtpBirthDay.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.dtpBirthDay.MonthCalendar.ClearButtonVisible = true;
//
//
//
this.dtpBirthDay.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
this.dtpBirthDay.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
this.dtpBirthDay.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
this.dtpBirthDay.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.dtpBirthDay.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
this.dtpBirthDay.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
this.dtpBirthDay.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.dtpBirthDay.MonthCalendar.DisplayMonth = new System.DateTime(2018, 1, 1, 0, 0, 0, 0);
//
//
//
this.dtpBirthDay.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
this.dtpBirthDay.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
this.dtpBirthDay.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
this.dtpBirthDay.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.dtpBirthDay.MonthCalendar.TodayButtonVisible = true;
this.dtpBirthDay.Name = "dtpBirthDay";
this.dtpBirthDay.Size = new System.Drawing.Size(138, 23);
this.dtpBirthDay.TabIndex = 560;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(403, 46);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(63, 14);
this.label6.TabIndex = 559;
this.label6.Text = "出生日期";
//
// cboRole
//
this.cboRole.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboRole.FormattingEnabled = true;
this.cboRole.Items.AddRange(new object[] {
"药品管理部门",
"诊疗部门",
"辅助诊疗部门",
"护理部门",
"行政后勤部门",
"手术室",
"社区"});
this.cboRole.Location = new System.Drawing.Point(275, 73);
this.cboRole.Name = "cboRole";
this.cboRole.Size = new System.Drawing.Size(123, 22);
this.cboRole.TabIndex = 558;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(229, 75);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(35, 14);
this.label3.TabIndex = 557;
this.label3.Text = "角色";
//
// cboDepartment
//
this.cboDepartment.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboDepartment.FormattingEnabled = true;
this.cboDepartment.Location = new System.Drawing.Point(71, 10);
this.cboDepartment.Name = "cboDepartment";
this.cboDepartment.Size = new System.Drawing.Size(123, 22);
this.cboDepartment.TabIndex = 556;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(3, 19);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(63, 14);
this.label5.TabIndex = 555;
this.label5.Text = "所在科室";
//
// txtHelpCode
//
this.txtHelpCode.Location = new System.Drawing.Point(684, 10);
this.txtHelpCode.Name = "txtHelpCode";
this.txtHelpCode.Size = new System.Drawing.Size(83, 23);
this.txtHelpCode.TabIndex = 554;
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(631, 16);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(49, 14);
this.label12.TabIndex = 553;
this.label12.Text = "助记码";
//
// intPersonOrder
//
//
//
//
this.intPersonOrder.BackgroundStyle.Class = "DateTimeInputBackground";
this.intPersonOrder.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.intPersonOrder.Location = new System.Drawing.Point(672, 73);
this.intPersonOrder.Name = "intPersonOrder";
this.intPersonOrder.ShowUpDown = true;
this.intPersonOrder.Size = new System.Drawing.Size(99, 23);
this.intPersonOrder.TabIndex = 20;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(631, 75);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(35, 14);
this.label4.TabIndex = 19;
this.label4.Text = "排序";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(33, 13);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(0, 14);
this.label2.TabIndex = 14;
//
// chkIsValid
//
this.chkIsValid.AutoSize = true;
this.chkIsValid.Location = new System.Drawing.Point(802, 75);
this.chkIsValid.Name = "chkIsValid";
this.chkIsValid.Size = new System.Drawing.Size(68, 18);
this.chkIsValid.TabIndex = 13;
this.chkIsValid.Text = "有效性";
this.chkIsValid.UseVisualStyleBackColor = true;
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(473, 10);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(138, 23);
this.txtName.TabIndex = 12;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(417, 16);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 14);
this.label1.TabIndex = 11;
this.label1.Text = "姓名";
//
// tsbCancel
//
this.tsbCancel.Font = new System.Drawing.Font("微软雅黑", 9F);
this.tsbCancel.Image = global::AIMS.Properties.Resources._取消;
this.tsbCancel.ImageTransparentColor = System.Drawing.Color.Transparent;
this.tsbCancel.Name = "tsbCancel";
this.tsbCancel.Size = new System.Drawing.Size(52, 46);
this.tsbCancel.Text = " 取消 ";
this.tsbCancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsbCancel.Click += new System.EventHandler(this.tsbCancel_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 49);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(6, 49);
//
// tsbModify
//
this.tsbModify.Font = new System.Drawing.Font("微软雅黑", 9F);
this.tsbModify.Image = global::AIMS.Properties.Resources._编辑;
this.tsbModify.ImageTransparentColor = System.Drawing.Color.Transparent;
this.tsbModify.Name = "tsbModify";
this.tsbModify.Size = new System.Drawing.Size(52, 46);
this.tsbModify.Text = " 修改 ";
this.tsbModify.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsbModify.Click += new System.EventHandler(this.tsbModify_Click);
//
// toolStrip1
//
this.toolStrip1.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(25, 25);
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsbAdd,
this.toolStripSeparator1,
this.tsbModify,
this.toolStripSeparator2,
this.tsbCancel,
this.toolStripSeparator3,
this.tsbSava,
this.toolStripSeparator4,
this.tsbExit});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(913, 49);
this.toolStrip1.TabIndex = 5;
this.toolStrip1.Text = "toolStrip1";
//
// tsbAdd
//
this.tsbAdd.Font = new System.Drawing.Font("微软雅黑", 9F);
this.tsbAdd.Image = global::AIMS.Properties.Resources._新建;
this.tsbAdd.ImageTransparentColor = System.Drawing.Color.Transparent;
this.tsbAdd.Name = "tsbAdd";
this.tsbAdd.Size = new System.Drawing.Size(52, 46);
this.tsbAdd.Text = " 增加 ";
this.tsbAdd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsbAdd.Click += new System.EventHandler(this.tsbAdd_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 49);
//
// tsbSava
//
this.tsbSava.Font = new System.Drawing.Font("微软雅黑", 9F);
this.tsbSava.Image = global::AIMS.Properties.Resources._保存;
this.tsbSava.ImageTransparentColor = System.Drawing.Color.Transparent;
this.tsbSava.Name = "tsbSava";
this.tsbSava.Size = new System.Drawing.Size(52, 46);
this.tsbSava.Text = " 保存 ";
this.tsbSava.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsbSava.Click += new System.EventHandler(this.tsbSava_Click);
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(6, 49);
//
// tsbExit
//
this.tsbExit.Font = new System.Drawing.Font("微软雅黑", 9F);
this.tsbExit.Image = global::AIMS.Properties.Resources._关闭窗口;
this.tsbExit.ImageTransparentColor = System.Drawing.Color.Transparent;
this.tsbExit.Name = "tsbExit";
this.tsbExit.Size = new System.Drawing.Size(52, 46);
this.tsbExit.Text = " 关闭 ";
this.tsbExit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsbExit.Click += new System.EventHandler(this.tsbExit_Click);
//
// frmPerson
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(913, 495);
this.ControlBox = false;
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Controls.Add(this.toolStrip1);
this.HelpButton = true;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmPerson";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.frmPerson_Load);
this.panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dgvPerson)).EndInit();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dtpTimeToWork)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dtpBirthDay)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.intPersonOrder)).EndInit();
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.DataGridView dgvPerson;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.ComboBox cboDepartment;
private System.Windows.Forms.TextBox txtHelpCode;
private System.Windows.Forms.Label label12;
private DevComponents.Editors.IntegerInput intPersonOrder;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.CheckBox chkIsValid;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ToolStripButton tsbCancel;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripButton tsbModify;
public System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ToolStripButton tsbAdd;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripButton tsbSava;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
public System.Windows.Forms.ToolStripButton tsbExit;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.ComboBox cboRole;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label6;
private DevComponents.Editors.DateTimeAdv.DateTimeInput dtpBirthDay;
private DevComponents.Editors.DateTimeAdv.DateTimeInput dtpTimeToWork;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.ComboBox cboDiploma;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.TextBox txtNo;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.ComboBox cboJobTitle;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.ComboBox cboSex;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.TextBox txtPassWord;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.ComboBox cboPersonType;
private System.Windows.Forms.Label label14;
private System.Windows.Forms.DataGridViewTextBoxColumn Id;
private System.Windows.Forms.DataGridViewTextBoxColumn DepNameColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn NoColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn NameColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn HelpCodeColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn SexColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn DiplomaColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn JobTitleColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn BirthDayColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn TimeToWorkColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn PersonTypeColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn RoleNameColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn PassWordColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn IsValidColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn PersonOrderColumn;
}
}