228 lines
10 KiB
C#
228 lines
10 KiB
C#
namespace AIMS.PublicUI.UI
|
|
{
|
|
partial class frmAnaesthesiaMethod
|
|
{
|
|
/// <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.panel1 = new System.Windows.Forms.Panel();
|
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
|
this.dgvAnaesthesiaMethod = new System.Windows.Forms.DataGridView();
|
|
this.IdColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.CheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
|
|
this.NameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ParentIdColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.UseRateColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.HelpCodeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.IsValidColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.btnOk = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.txtHelpCode = new System.Windows.Forms.TextBox();
|
|
this.panel1.SuspendLayout();
|
|
this.groupBox2.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvAnaesthesiaMethod)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.BackColor = System.Drawing.Color.AliceBlue;
|
|
this.panel1.Controls.Add(this.groupBox2);
|
|
this.panel1.Controls.Add(this.label2);
|
|
this.panel1.Controls.Add(this.btnOk);
|
|
this.panel1.Controls.Add(this.label1);
|
|
this.panel1.Controls.Add(this.txtHelpCode);
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.panel1.Location = new System.Drawing.Point(0, 0);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(398, 504);
|
|
this.panel1.TabIndex = 2;
|
|
//
|
|
// groupBox2
|
|
//
|
|
this.groupBox2.Controls.Add(this.dgvAnaesthesiaMethod);
|
|
this.groupBox2.Location = new System.Drawing.Point(0, 48);
|
|
this.groupBox2.Name = "groupBox2";
|
|
this.groupBox2.Size = new System.Drawing.Size(395, 453);
|
|
this.groupBox2.TabIndex = 15;
|
|
this.groupBox2.TabStop = false;
|
|
//
|
|
// dgvAnaesthesiaMethod
|
|
//
|
|
this.dgvAnaesthesiaMethod.AllowUserToAddRows = false;
|
|
this.dgvAnaesthesiaMethod.BackgroundColor = System.Drawing.Color.White;
|
|
this.dgvAnaesthesiaMethod.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgvAnaesthesiaMethod.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.IdColumn,
|
|
this.CheckBoxColumn,
|
|
this.NameColumn,
|
|
this.ParentIdColumn,
|
|
this.UseRateColumn,
|
|
this.HelpCodeColumn,
|
|
this.IsValidColumn});
|
|
this.dgvAnaesthesiaMethod.Location = new System.Drawing.Point(7, 16);
|
|
this.dgvAnaesthesiaMethod.Name = "dgvAnaesthesiaMethod";
|
|
this.dgvAnaesthesiaMethod.RowHeadersVisible = false;
|
|
this.dgvAnaesthesiaMethod.RowTemplate.Height = 23;
|
|
this.dgvAnaesthesiaMethod.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
|
this.dgvAnaesthesiaMethod.Size = new System.Drawing.Size(383, 431);
|
|
this.dgvAnaesthesiaMethod.TabIndex = 10;
|
|
this.dgvAnaesthesiaMethod.Click += new System.EventHandler(this.dgvOperationPosition_Click);
|
|
//
|
|
// IdColumn
|
|
//
|
|
this.IdColumn.DataPropertyName = "Id";
|
|
this.IdColumn.HeaderText = "Id";
|
|
this.IdColumn.Name = "IdColumn";
|
|
this.IdColumn.ReadOnly = true;
|
|
this.IdColumn.Visible = false;
|
|
//
|
|
// CheckBoxColumn
|
|
//
|
|
this.CheckBoxColumn.HeaderText = "选择";
|
|
this.CheckBoxColumn.Name = "CheckBoxColumn";
|
|
this.CheckBoxColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
|
this.CheckBoxColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
|
|
this.CheckBoxColumn.Width = 55;
|
|
//
|
|
// NameColumn
|
|
//
|
|
this.NameColumn.DataPropertyName = "Name";
|
|
this.NameColumn.HeaderText = "名称";
|
|
this.NameColumn.Name = "NameColumn";
|
|
this.NameColumn.ReadOnly = true;
|
|
this.NameColumn.Width = 300;
|
|
//
|
|
// ParentIdColumn
|
|
//
|
|
this.ParentIdColumn.DataPropertyName = "ParentId";
|
|
this.ParentIdColumn.HeaderText = "ParentId";
|
|
this.ParentIdColumn.Name = "ParentIdColumn";
|
|
this.ParentIdColumn.ReadOnly = true;
|
|
this.ParentIdColumn.Visible = false;
|
|
//
|
|
// UseRateColumn
|
|
//
|
|
this.UseRateColumn.DataPropertyName = "UseRate";
|
|
this.UseRateColumn.HeaderText = "UseRate";
|
|
this.UseRateColumn.Name = "UseRateColumn";
|
|
this.UseRateColumn.ReadOnly = true;
|
|
this.UseRateColumn.Visible = false;
|
|
//
|
|
// HelpCodeColumn
|
|
//
|
|
this.HelpCodeColumn.DataPropertyName = "HelpCode";
|
|
this.HelpCodeColumn.HeaderText = "HelpCode";
|
|
this.HelpCodeColumn.Name = "HelpCodeColumn";
|
|
this.HelpCodeColumn.ReadOnly = true;
|
|
this.HelpCodeColumn.Visible = false;
|
|
//
|
|
// IsValidColumn
|
|
//
|
|
this.IsValidColumn.DataPropertyName = "IsValid";
|
|
this.IsValidColumn.HeaderText = "IsValid";
|
|
this.IsValidColumn.Name = "IsValidColumn";
|
|
this.IsValidColumn.ReadOnly = true;
|
|
this.IsValidColumn.Visible = false;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Font = new System.Drawing.Font("宋体", 12F);
|
|
this.label2.Location = new System.Drawing.Point(21, 23);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(40, 16);
|
|
this.label2.TabIndex = 7;
|
|
this.label2.Text = "查询";
|
|
//
|
|
// btnOk
|
|
//
|
|
this.btnOk.Location = new System.Drawing.Point(265, 9);
|
|
this.btnOk.Name = "btnOk";
|
|
this.btnOk.Size = new System.Drawing.Size(80, 30);
|
|
this.btnOk.TabIndex = 6;
|
|
this.btnOk.Text = "确定";
|
|
this.btnOk.UseVisualStyleBackColor = true;
|
|
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(-75, 127);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(53, 12);
|
|
this.label1.TabIndex = 5;
|
|
this.label1.Text = "诊断查询";
|
|
//
|
|
// txtHelpCode
|
|
//
|
|
this.txtHelpCode.Font = new System.Drawing.Font("宋体", 12F);
|
|
this.txtHelpCode.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
|
|
this.txtHelpCode.Location = new System.Drawing.Point(67, 13);
|
|
this.txtHelpCode.Name = "txtHelpCode";
|
|
this.txtHelpCode.Size = new System.Drawing.Size(192, 26);
|
|
this.txtHelpCode.TabIndex = 4;
|
|
this.txtHelpCode.Click += new System.EventHandler(this.txtHelpCode_Click);
|
|
this.txtHelpCode.TextChanged += new System.EventHandler(this.txtHelpCode_TextChanged);
|
|
//
|
|
// frmAnaesthesiaMethod
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(398, 504);
|
|
this.Controls.Add(this.panel1);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "frmAnaesthesiaMethod";
|
|
this.ShowIcon = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Load += new System.EventHandler(this.frmAnaesthesiaMethod_Load);
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel1.PerformLayout();
|
|
this.groupBox2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvAnaesthesiaMethod)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.GroupBox groupBox2;
|
|
private System.Windows.Forms.DataGridView dgvAnaesthesiaMethod;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Button btnOk;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.TextBox txtHelpCode;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn IdColumn;
|
|
private System.Windows.Forms.DataGridViewCheckBoxColumn CheckBoxColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn NameColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn ParentIdColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn UseRateColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn HelpCodeColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn IsValidColumn;
|
|
}
|
|
} |