AIMS/AIMS.UI/DataDictionary/frmDepartment.Designer.cs
2023-08-14 11:13:31 +08:00

497 lines
23 KiB
C#

namespace AIMS.PublicUI.UI
{
partial class frmDepartment
{
/// <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.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.tsbAdd = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.tsbModify = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.tsbCancel = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator3 = 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.panel1 = new System.Windows.Forms.Panel();
this.chkIsHospital = new System.Windows.Forms.CheckBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.txtHelpCode = new System.Windows.Forms.TextBox();
this.label12 = new System.Windows.Forms.Label();
this.intDepOrder = new DevComponents.Editors.IntegerInput();
this.label4 = new System.Windows.Forms.Label();
this.txtDepAddress = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.chkIsValid = new System.Windows.Forms.CheckBox();
this.chkIsClinic = new System.Windows.Forms.TextBox();
this.cboKind = new System.Windows.Forms.TextBox();
this.txtName = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.dgvDepartment = new System.Windows.Forms.DataGridView();
this.Id = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.NameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.HelpCodeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.KindColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ClinicColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.HospitalColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.DepOrderColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.DepAddressColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.IsValidColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.toolStrip1.SuspendLayout();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.intDepOrder)).BeginInit();
this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvDepartment)).BeginInit();
this.SuspendLayout();
//
// 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(805, 49);
this.toolStrip1.TabIndex = 2;
this.toolStrip1.Text = "toolStrip1";
//
// tsbAdd
//
this.tsbAdd.Font = new System.Drawing.Font("微软雅黑", 9F);
this.tsbAdd.Image = global::AIMSControls.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);
//
// tsbModify
//
this.tsbModify.Font = new System.Drawing.Font("微软雅黑", 9F);
this.tsbModify.Image = global::AIMSControls.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);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 49);
//
// tsbCancel
//
this.tsbCancel.Font = new System.Drawing.Font("微软雅黑", 9F);
this.tsbCancel.Image = global::AIMSControls.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);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(6, 49);
//
// tsbSava
//
this.tsbSava.Font = new System.Drawing.Font("微软雅黑", 9F);
this.tsbSava.Image = global::AIMSControls.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::AIMSControls.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);
//
// panel1
//
this.panel1.Controls.Add(this.chkIsHospital);
this.panel1.Controls.Add(this.label6);
this.panel1.Controls.Add(this.label5);
this.panel1.Controls.Add(this.txtHelpCode);
this.panel1.Controls.Add(this.label12);
this.panel1.Controls.Add(this.intDepOrder);
this.panel1.Controls.Add(this.label4);
this.panel1.Controls.Add(this.txtDepAddress);
this.panel1.Controls.Add(this.label3);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.chkIsValid);
this.panel1.Controls.Add(this.chkIsClinic);
this.panel1.Controls.Add(this.cboKind);
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(805, 93);
this.panel1.TabIndex = 3;
//
// chkIsHospital
//
this.chkIsHospital.AutoSize = true;
this.chkIsHospital.Location = new System.Drawing.Point(432, 10);
this.chkIsHospital.Name = "chkIsHospital";
this.chkIsHospital.Size = new System.Drawing.Size(82, 18);
this.chkIsHospital.TabIndex = 558;
this.chkIsHospital.Text = "住院科室";
this.chkIsHospital.UseVisualStyleBackColor = true;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(2, 69);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(49, 14);
this.label6.TabIndex = 555;
this.label6.Text = "科室id";
this.label6.Visible = false;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(2, 40);
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(283, 6);
this.txtHelpCode.Name = "txtHelpCode";
this.txtHelpCode.Size = new System.Drawing.Size(123, 23);
this.txtHelpCode.TabIndex = 554;
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(228, 15);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(49, 14);
this.label12.TabIndex = 553;
this.label12.Text = "助记码";
//
// intDepOrder
//
//
//
//
this.intDepOrder.BackgroundStyle.Class = "DateTimeInputBackground";
this.intDepOrder.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.intDepOrder.Location = new System.Drawing.Point(594, 35);
this.intDepOrder.Name = "intDepOrder";
this.intDepOrder.ShowUpDown = true;
this.intDepOrder.Size = new System.Drawing.Size(80, 23);
this.intDepOrder.TabIndex = 20;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(553, 44);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(35, 14);
this.label4.TabIndex = 19;
this.label4.Text = "排序";
//
// txtDepAddress
//
this.txtDepAddress.Location = new System.Drawing.Point(321, 38);
this.txtDepAddress.Name = "txtDepAddress";
this.txtDepAddress.Size = new System.Drawing.Size(194, 23);
this.txtDepAddress.TabIndex = 18;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(226, 43);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(91, 14);
this.label3.TabIndex = 17;
this.label3.Text = "科室所在位置";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(32, 40);
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(520, 11);
this.chkIsValid.Name = "chkIsValid";
this.chkIsValid.Size = new System.Drawing.Size(68, 18);
this.chkIsValid.TabIndex = 13;
this.chkIsValid.Text = "有效性";
this.chkIsValid.UseVisualStyleBackColor = true;
//
// chkIsClinic
//
this.chkIsClinic.Location = new System.Drawing.Point(71, 64);
this.chkIsClinic.Name = "chkIsClinic";
this.chkIsClinic.Size = new System.Drawing.Size(152, 23);
this.chkIsClinic.TabIndex = 12;
this.chkIsClinic.Visible = false;
this.chkIsClinic.TextChanged += new System.EventHandler(this.txtName_TextChanged);
//
// cboKind
//
this.cboKind.Location = new System.Drawing.Point(71, 35);
this.cboKind.Name = "cboKind";
this.cboKind.Size = new System.Drawing.Size(152, 23);
this.cboKind.TabIndex = 12;
this.cboKind.TextChanged += new System.EventHandler(this.txtName_TextChanged);
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(70, 6);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(152, 23);
this.txtName.TabIndex = 12;
this.txtName.TextChanged += new System.EventHandler(this.txtName_TextChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(30, 15);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 14);
this.label1.TabIndex = 11;
this.label1.Text = "名称";
//
// panel2
//
this.panel2.Controls.Add(this.dgvDepartment);
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel2.Location = new System.Drawing.Point(0, 142);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(805, 327);
this.panel2.TabIndex = 4;
//
// dgvDepartment
//
this.dgvDepartment.AllowUserToAddRows = false;
this.dgvDepartment.BackgroundColor = System.Drawing.Color.White;
this.dgvDepartment.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvDepartment.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Id,
this.NameColumn,
this.HelpCodeColumn,
this.KindColumn,
this.ClinicColumn,
this.HospitalColumn,
this.DepOrderColumn,
this.DepAddressColumn,
this.IsValidColumn});
this.dgvDepartment.Dock = System.Windows.Forms.DockStyle.Fill;
this.dgvDepartment.Location = new System.Drawing.Point(0, 0);
this.dgvDepartment.Name = "dgvDepartment";
this.dgvDepartment.RowHeadersVisible = false;
this.dgvDepartment.RowTemplate.Height = 23;
this.dgvDepartment.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvDepartment.Size = new System.Drawing.Size(805, 327);
this.dgvDepartment.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;
//
// NameColumn
//
this.NameColumn.DataPropertyName = "Name";
this.NameColumn.HeaderText = "名称";
this.NameColumn.Name = "NameColumn";
this.NameColumn.ReadOnly = true;
this.NameColumn.Width = 150;
//
// HelpCodeColumn
//
this.HelpCodeColumn.DataPropertyName = "HelpCode";
this.HelpCodeColumn.HeaderText = "助记码";
this.HelpCodeColumn.Name = "HelpCodeColumn";
this.HelpCodeColumn.ReadOnly = true;
//
// KindColumn
//
this.KindColumn.DataPropertyName = "Kind";
this.KindColumn.HeaderText = "科室编码";
this.KindColumn.Name = "KindColumn";
this.KindColumn.ReadOnly = true;
//
// ClinicColumn
//
this.ClinicColumn.DataPropertyName = "Clinic";
this.ClinicColumn.HeaderText = "科室id";
this.ClinicColumn.Name = "ClinicColumn";
this.ClinicColumn.ReadOnly = true;
this.ClinicColumn.Visible = false;
//
// HospitalColumn
//
this.HospitalColumn.DataPropertyName = "Hospital";
this.HospitalColumn.HeaderText = "住院科室";
this.HospitalColumn.Name = "HospitalColumn";
this.HospitalColumn.ReadOnly = true;
//
// DepOrderColumn
//
this.DepOrderColumn.DataPropertyName = "DepOrder";
this.DepOrderColumn.HeaderText = "排序";
this.DepOrderColumn.Name = "DepOrderColumn";
this.DepOrderColumn.ReadOnly = true;
this.DepOrderColumn.Width = 75;
//
// DepAddressColumn
//
this.DepAddressColumn.DataPropertyName = "DepAddress";
this.DepAddressColumn.HeaderText = "科室所在位置";
this.DepAddressColumn.Name = "DepAddressColumn";
this.DepAddressColumn.ReadOnly = true;
this.DepAddressColumn.Width = 260;
//
// IsValidColumn
//
this.IsValidColumn.DataPropertyName = "IsValid";
this.IsValidColumn.HeaderText = "有效性";
this.IsValidColumn.Name = "IsValidColumn";
this.IsValidColumn.ReadOnly = true;
this.IsValidColumn.Width = 75;
//
// frmDepartment
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(805, 469);
this.ControlBox = false;
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Controls.Add(this.toolStrip1);
this.Name = "frmDepartment";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.frmDepartment_Load);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.intDepOrder)).EndInit();
this.panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dgvDepartment)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
public System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ToolStripButton tsbAdd;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripButton tsbModify;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripButton tsbCancel;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripButton tsbSava;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
public System.Windows.Forms.ToolStripButton tsbExit;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.DataGridView dgvDepartment;
private DevComponents.Editors.IntegerInput intDepOrder;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TextBox txtDepAddress;
private System.Windows.Forms.Label label3;
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.CheckBox chkIsHospital;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox txtHelpCode;
private System.Windows.Forms.Label label12;
private System.Windows.Forms.TextBox cboKind;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.TextBox chkIsClinic;
private System.Windows.Forms.DataGridViewTextBoxColumn Id;
private System.Windows.Forms.DataGridViewTextBoxColumn NameColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn HelpCodeColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn KindColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn ClinicColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn HospitalColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn DepOrderColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn DepAddressColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn IsValidColumn;
}
}