352 lines
17 KiB
C#
352 lines
17 KiB
C#
namespace AIMS.PublicUI.UI
|
|
{
|
|
partial class frmSelectOperation
|
|
{
|
|
/// <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.txtHelpCode = new System.Windows.Forms.TextBox();
|
|
this.btnToRight = new System.Windows.Forms.Button();
|
|
this.dgvOperation = new System.Windows.Forms.DataGridView();
|
|
this.Id = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.IcdCodeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.NameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.level = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.btnAddOperation = new System.Windows.Forms.Button();
|
|
this.btnOk = new System.Windows.Forms.Button();
|
|
this.btnToLeft = new System.Windows.Forms.Button();
|
|
this.labDown = new System.Windows.Forms.LinkLabel();
|
|
this.panel2 = new System.Windows.Forms.Panel();
|
|
this.labUp = new System.Windows.Forms.LinkLabel();
|
|
this.labPage = new System.Windows.Forms.Label();
|
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
|
this.dgvSelectOperation = new System.Windows.Forms.DataGridView();
|
|
this.SelectIdColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.SelectIcdCodeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.SelectNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.level1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvOperation)).BeginInit();
|
|
this.groupBox1.SuspendLayout();
|
|
this.panel2.SuspendLayout();
|
|
this.groupBox2.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvSelectOperation)).BeginInit();
|
|
this.panel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// txtHelpCode
|
|
//
|
|
this.txtHelpCode.ForeColor = System.Drawing.Color.Black;
|
|
this.txtHelpCode.Location = new System.Drawing.Point(108, 8);
|
|
this.txtHelpCode.Name = "txtHelpCode";
|
|
this.txtHelpCode.Size = new System.Drawing.Size(403, 23);
|
|
this.txtHelpCode.TabIndex = 0;
|
|
this.txtHelpCode.TextChanged += new System.EventHandler(this.txtHelpCode_TextChanged);
|
|
//
|
|
// btnToRight
|
|
//
|
|
this.btnToRight.Location = new System.Drawing.Point(472, 75);
|
|
this.btnToRight.Name = "btnToRight";
|
|
this.btnToRight.Size = new System.Drawing.Size(31, 91);
|
|
this.btnToRight.TabIndex = 12;
|
|
this.btnToRight.Text = "添\r\n\r\n加";
|
|
this.btnToRight.UseVisualStyleBackColor = true;
|
|
this.btnToRight.Click += new System.EventHandler(this.btnToRight_Click);
|
|
//
|
|
// dgvOperation
|
|
//
|
|
this.dgvOperation.AllowUserToAddRows = false;
|
|
this.dgvOperation.BackgroundColor = System.Drawing.Color.White;
|
|
this.dgvOperation.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgvOperation.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.Id,
|
|
this.IcdCodeColumn,
|
|
this.NameColumn,
|
|
this.level});
|
|
this.dgvOperation.Location = new System.Drawing.Point(6, 19);
|
|
this.dgvOperation.Name = "dgvOperation";
|
|
this.dgvOperation.RowHeadersVisible = false;
|
|
this.dgvOperation.RowTemplate.Height = 23;
|
|
this.dgvOperation.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
|
this.dgvOperation.Size = new System.Drawing.Size(447, 372);
|
|
this.dgvOperation.TabIndex = 9;
|
|
this.dgvOperation.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvOperation_CellDoubleClick);
|
|
//
|
|
// 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;
|
|
//
|
|
// IcdCodeColumn
|
|
//
|
|
this.IcdCodeColumn.DataPropertyName = "IcdCode";
|
|
this.IcdCodeColumn.HeaderText = "编码";
|
|
this.IcdCodeColumn.Name = "IcdCodeColumn";
|
|
this.IcdCodeColumn.ReadOnly = true;
|
|
this.IcdCodeColumn.Width = 120;
|
|
//
|
|
// NameColumn
|
|
//
|
|
this.NameColumn.DataPropertyName = "Name";
|
|
this.NameColumn.HeaderText = "手术名称";
|
|
this.NameColumn.Name = "NameColumn";
|
|
this.NameColumn.ReadOnly = true;
|
|
this.NameColumn.Width = 210;
|
|
//
|
|
// level
|
|
//
|
|
this.level.DataPropertyName = "level";
|
|
this.level.HeaderText = "手术分级";
|
|
this.level.Name = "level";
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.dgvOperation);
|
|
this.groupBox1.Location = new System.Drawing.Point(6, 17);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(459, 397);
|
|
this.groupBox1.TabIndex = 11;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "待选手术";
|
|
//
|
|
// btnAddOperation
|
|
//
|
|
this.btnAddOperation.Location = new System.Drawing.Point(530, 5);
|
|
this.btnAddOperation.Name = "btnAddOperation";
|
|
this.btnAddOperation.Size = new System.Drawing.Size(80, 30);
|
|
this.btnAddOperation.TabIndex = 3;
|
|
this.btnAddOperation.Text = "新增手术";
|
|
this.btnAddOperation.UseVisualStyleBackColor = true;
|
|
this.btnAddOperation.Visible = false;
|
|
this.btnAddOperation.Click += new System.EventHandler(this.btnAddOperation_Click);
|
|
//
|
|
// btnOk
|
|
//
|
|
this.btnOk.Location = new System.Drawing.Point(859, 6);
|
|
this.btnOk.Name = "btnOk";
|
|
this.btnOk.Size = new System.Drawing.Size(80, 30);
|
|
this.btnOk.TabIndex = 2;
|
|
this.btnOk.Text = "确定选择";
|
|
this.btnOk.UseVisualStyleBackColor = true;
|
|
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
|
|
//
|
|
// btnToLeft
|
|
//
|
|
this.btnToLeft.Location = new System.Drawing.Point(472, 200);
|
|
this.btnToLeft.Name = "btnToLeft";
|
|
this.btnToLeft.Size = new System.Drawing.Size(31, 91);
|
|
this.btnToLeft.TabIndex = 13;
|
|
this.btnToLeft.Text = "删\r\n\r\n除";
|
|
this.btnToLeft.UseVisualStyleBackColor = true;
|
|
this.btnToLeft.Click += new System.EventHandler(this.btnToLeft_Click);
|
|
//
|
|
// labDown
|
|
//
|
|
this.labDown.AutoSize = true;
|
|
this.labDown.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
this.labDown.ForeColor = System.Drawing.Color.Blue;
|
|
this.labDown.Location = new System.Drawing.Point(249, 8);
|
|
this.labDown.Name = "labDown";
|
|
this.labDown.Size = new System.Drawing.Size(49, 14);
|
|
this.labDown.TabIndex = 17;
|
|
this.labDown.TabStop = true;
|
|
this.labDown.Text = "下一页";
|
|
this.labDown.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.labDown_LinkClicked);
|
|
//
|
|
// panel2
|
|
//
|
|
this.panel2.Controls.Add(this.labDown);
|
|
this.panel2.Controls.Add(this.labUp);
|
|
this.panel2.Controls.Add(this.labPage);
|
|
this.panel2.Controls.Add(this.groupBox2);
|
|
this.panel2.Controls.Add(this.btnToLeft);
|
|
this.panel2.Controls.Add(this.btnToRight);
|
|
this.panel2.Controls.Add(this.groupBox1);
|
|
this.panel2.Location = new System.Drawing.Point(0, 37);
|
|
this.panel2.Name = "panel2";
|
|
this.panel2.Size = new System.Drawing.Size(976, 427);
|
|
this.panel2.TabIndex = 4;
|
|
//
|
|
// labUp
|
|
//
|
|
this.labUp.AutoSize = true;
|
|
this.labUp.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
this.labUp.ForeColor = System.Drawing.Color.Blue;
|
|
this.labUp.Location = new System.Drawing.Point(110, 7);
|
|
this.labUp.Name = "labUp";
|
|
this.labUp.Size = new System.Drawing.Size(49, 14);
|
|
this.labUp.TabIndex = 16;
|
|
this.labUp.TabStop = true;
|
|
this.labUp.Text = "上一页";
|
|
this.labUp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.labUp_LinkClicked);
|
|
//
|
|
// labPage
|
|
//
|
|
this.labPage.AutoSize = true;
|
|
this.labPage.Location = new System.Drawing.Point(180, 7);
|
|
this.labPage.Name = "labPage";
|
|
this.labPage.Size = new System.Drawing.Size(56, 14);
|
|
this.labPage.TabIndex = 15;
|
|
this.labPage.Text = "labPage";
|
|
//
|
|
// groupBox2
|
|
//
|
|
this.groupBox2.Controls.Add(this.dgvSelectOperation);
|
|
this.groupBox2.Location = new System.Drawing.Point(511, 20);
|
|
this.groupBox2.Name = "groupBox2";
|
|
this.groupBox2.Size = new System.Drawing.Size(456, 394);
|
|
this.groupBox2.TabIndex = 14;
|
|
this.groupBox2.TabStop = false;
|
|
this.groupBox2.Text = "已选手术";
|
|
//
|
|
// dgvSelectOperation
|
|
//
|
|
this.dgvSelectOperation.AllowUserToAddRows = false;
|
|
this.dgvSelectOperation.BackgroundColor = System.Drawing.Color.White;
|
|
this.dgvSelectOperation.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgvSelectOperation.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.SelectIdColumn,
|
|
this.SelectIcdCodeColumn,
|
|
this.SelectNameColumn,
|
|
this.level1});
|
|
this.dgvSelectOperation.Location = new System.Drawing.Point(6, 14);
|
|
this.dgvSelectOperation.Name = "dgvSelectOperation";
|
|
this.dgvSelectOperation.RowHeadersVisible = false;
|
|
this.dgvSelectOperation.RowTemplate.Height = 23;
|
|
this.dgvSelectOperation.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
|
this.dgvSelectOperation.Size = new System.Drawing.Size(450, 374);
|
|
this.dgvSelectOperation.TabIndex = 10;
|
|
this.dgvSelectOperation.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvSelectOperation_CellDoubleClick);
|
|
//
|
|
// SelectIdColumn
|
|
//
|
|
this.SelectIdColumn.DataPropertyName = "Id";
|
|
this.SelectIdColumn.Frozen = true;
|
|
this.SelectIdColumn.HeaderText = "Id";
|
|
this.SelectIdColumn.Name = "SelectIdColumn";
|
|
this.SelectIdColumn.ReadOnly = true;
|
|
this.SelectIdColumn.Visible = false;
|
|
//
|
|
// SelectIcdCodeColumn
|
|
//
|
|
this.SelectIcdCodeColumn.HeaderText = "编码";
|
|
this.SelectIcdCodeColumn.Name = "SelectIcdCodeColumn";
|
|
this.SelectIcdCodeColumn.ReadOnly = true;
|
|
this.SelectIcdCodeColumn.Width = 120;
|
|
//
|
|
// SelectNameColumn
|
|
//
|
|
this.SelectNameColumn.DataPropertyName = "Name";
|
|
this.SelectNameColumn.HeaderText = "手术名称";
|
|
this.SelectNameColumn.Name = "SelectNameColumn";
|
|
this.SelectNameColumn.ReadOnly = true;
|
|
this.SelectNameColumn.Width = 210;
|
|
//
|
|
// level1
|
|
//
|
|
this.level1.DataPropertyName = "level";
|
|
this.level1.HeaderText = "手术分级";
|
|
this.level1.Name = "level1";
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.BackColor = System.Drawing.Color.AliceBlue;
|
|
this.panel1.Controls.Add(this.panel2);
|
|
this.panel1.Controls.Add(this.btnAddOperation);
|
|
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.Font = new System.Drawing.Font("宋体", 10.5F);
|
|
this.panel1.Location = new System.Drawing.Point(0, 0);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(979, 467);
|
|
this.panel1.TabIndex = 2;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(30, 13);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(63, 14);
|
|
this.label1.TabIndex = 1;
|
|
this.label1.Text = "手术查询";
|
|
//
|
|
// frmSelectOperation
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(979, 467);
|
|
this.Controls.Add(this.panel1);
|
|
this.Name = "frmSelectOperation";
|
|
this.ShowIcon = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Load += new System.EventHandler(this.frmSelectOperation_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvOperation)).EndInit();
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.panel2.ResumeLayout(false);
|
|
this.panel2.PerformLayout();
|
|
this.groupBox2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvSelectOperation)).EndInit();
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox txtHelpCode;
|
|
private System.Windows.Forms.Button btnToRight;
|
|
private System.Windows.Forms.DataGridView dgvOperation;
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.Button btnAddOperation;
|
|
private System.Windows.Forms.Button btnOk;
|
|
private System.Windows.Forms.Button btnToLeft;
|
|
private System.Windows.Forms.LinkLabel labDown;
|
|
private System.Windows.Forms.Panel panel2;
|
|
private System.Windows.Forms.LinkLabel labUp;
|
|
private System.Windows.Forms.Label labPage;
|
|
private System.Windows.Forms.GroupBox groupBox2;
|
|
private System.Windows.Forms.DataGridView dgvSelectOperation;
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn Id;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn IcdCodeColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn NameColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn level;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn SelectIdColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn SelectIcdCodeColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn SelectNameColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn level1;
|
|
}
|
|
} |