281 lines
14 KiB
C#
281 lines
14 KiB
C#
namespace AIMS.PublicUI.UI
|
|
{
|
|
partial class frmTemplate
|
|
{
|
|
/// <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.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
|
this.panel2 = new System.Windows.Forms.Panel();
|
|
this.dgv = new System.Windows.Forms.DataGridView();
|
|
this.tsbExit = new System.Windows.Forms.ToolStripButton();
|
|
this.tsbCreateTemplate = new System.Windows.Forms.ToolStripButton();
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
|
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.TemplateNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.OperatorName = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.InputColumn = new System.Windows.Forms.DataGridViewButtonColumn();
|
|
this.EditColumn = new System.Windows.Forms.DataGridViewButtonColumn();
|
|
this.DeleteColumn = new System.Windows.Forms.DataGridViewButtonColumn();
|
|
this.IsPublic = new System.Windows.Forms.DataGridViewCheckBoxColumn();
|
|
this.OperatorNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.InRoomTime2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.panel2.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgv)).BeginInit();
|
|
this.panel1.SuspendLayout();
|
|
this.toolStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// toolStripSeparator1
|
|
//
|
|
this.toolStripSeparator1.Name = "toolStripSeparator1";
|
|
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 50);
|
|
//
|
|
// panel2
|
|
//
|
|
this.panel2.Controls.Add(this.dgv);
|
|
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.panel2.Location = new System.Drawing.Point(0, 50);
|
|
this.panel2.Name = "panel2";
|
|
this.panel2.Size = new System.Drawing.Size(406, 459);
|
|
this.panel2.TabIndex = 3;
|
|
//
|
|
// dgv
|
|
//
|
|
this.dgv.AllowUserToAddRows = false;
|
|
this.dgv.BackgroundColor = System.Drawing.Color.White;
|
|
this.dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgv.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.TemplateNameColumn,
|
|
this.OperatorName,
|
|
this.InputColumn,
|
|
this.EditColumn,
|
|
this.DeleteColumn,
|
|
this.IsPublic,
|
|
this.OperatorNo,
|
|
this.InRoomTime2});
|
|
this.dgv.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.dgv.Location = new System.Drawing.Point(0, 0);
|
|
this.dgv.Name = "dgv";
|
|
this.dgv.RowHeadersVisible = false;
|
|
this.dgv.RowTemplate.Height = 23;
|
|
this.dgv.Size = new System.Drawing.Size(406, 459);
|
|
this.dgv.TabIndex = 6;
|
|
this.dgv.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_CellContentClick);
|
|
//
|
|
// tsbExit
|
|
//
|
|
this.tsbExit.Font = new System.Drawing.Font("微软雅黑", 9F);
|
|
this.tsbExit.Image = global::AIMS.Properties.Resources.图标_关闭当前页;
|
|
this.tsbExit.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.tsbExit.Name = "tsbExit";
|
|
this.tsbExit.Size = new System.Drawing.Size(52, 47);
|
|
this.tsbExit.Text = " 关闭 ";
|
|
this.tsbExit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
|
|
this.tsbExit.Click += new System.EventHandler(this.tsbExit_Click);
|
|
//
|
|
// tsbCreateTemplate
|
|
//
|
|
this.tsbCreateTemplate.Font = new System.Drawing.Font("微软雅黑", 9F);
|
|
this.tsbCreateTemplate.Image = global::AIMS.Properties.Resources.图标_手术申请;
|
|
this.tsbCreateTemplate.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.tsbCreateTemplate.Name = "tsbCreateTemplate";
|
|
this.tsbCreateTemplate.Size = new System.Drawing.Size(72, 47);
|
|
this.tsbCreateTemplate.Text = " 创建模板 ";
|
|
this.tsbCreateTemplate.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
|
|
this.tsbCreateTemplate.Click += new System.EventHandler(this.tsbCreateTemplate_Click);
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Controls.Add(this.toolStrip1);
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.panel1.Location = new System.Drawing.Point(0, 0);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(406, 50);
|
|
this.panel1.TabIndex = 2;
|
|
//
|
|
// toolStrip1
|
|
//
|
|
this.toolStrip1.BackColor = System.Drawing.Color.AliceBlue;
|
|
this.toolStrip1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
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.tsbCreateTemplate,
|
|
this.toolStripSeparator1,
|
|
this.tsbExit});
|
|
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.toolStrip1.Name = "toolStrip1";
|
|
this.toolStrip1.Size = new System.Drawing.Size(406, 50);
|
|
this.toolStrip1.TabIndex = 8;
|
|
this.toolStrip1.Text = "toolStrip1";
|
|
//
|
|
// dataGridViewTextBoxColumn1
|
|
//
|
|
this.dataGridViewTextBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
this.dataGridViewTextBoxColumn1.DataPropertyName = "TemplateName";
|
|
this.dataGridViewTextBoxColumn1.HeaderText = "模板名称";
|
|
this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
|
|
this.dataGridViewTextBoxColumn1.ReadOnly = true;
|
|
//
|
|
// dataGridViewTextBoxColumn2
|
|
//
|
|
this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
|
|
this.dataGridViewTextBoxColumn2.DataPropertyName = "OperatorName";
|
|
this.dataGridViewTextBoxColumn2.HeaderText = "创建人";
|
|
this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
|
|
this.dataGridViewTextBoxColumn2.Width = 90;
|
|
//
|
|
// dataGridViewTextBoxColumn3
|
|
//
|
|
this.dataGridViewTextBoxColumn3.DataPropertyName = "IsPublic";
|
|
this.dataGridViewTextBoxColumn3.HeaderText = "公有";
|
|
this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
|
|
this.dataGridViewTextBoxColumn3.Visible = false;
|
|
//
|
|
// dataGridViewTextBoxColumn4
|
|
//
|
|
this.dataGridViewTextBoxColumn4.DataPropertyName = "OperatorNo";
|
|
this.dataGridViewTextBoxColumn4.HeaderText = "OperatorNo";
|
|
this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
|
|
this.dataGridViewTextBoxColumn4.Visible = false;
|
|
//
|
|
// TemplateNameColumn
|
|
//
|
|
this.TemplateNameColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
this.TemplateNameColumn.DataPropertyName = "TemplateName";
|
|
this.TemplateNameColumn.HeaderText = "模板名称";
|
|
this.TemplateNameColumn.Name = "TemplateNameColumn";
|
|
this.TemplateNameColumn.ReadOnly = true;
|
|
//
|
|
// OperatorName
|
|
//
|
|
this.OperatorName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
|
|
this.OperatorName.DataPropertyName = "OperatorName";
|
|
this.OperatorName.HeaderText = "创建人";
|
|
this.OperatorName.Name = "OperatorName";
|
|
this.OperatorName.Width = 70;
|
|
//
|
|
// InputColumn
|
|
//
|
|
this.InputColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
|
|
this.InputColumn.HeaderText = "";
|
|
this.InputColumn.Name = "InputColumn";
|
|
this.InputColumn.Text = "导入";
|
|
this.InputColumn.UseColumnTextForButtonValue = true;
|
|
this.InputColumn.Width = 60;
|
|
//
|
|
// EditColumn
|
|
//
|
|
this.EditColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
|
|
this.EditColumn.HeaderText = "";
|
|
this.EditColumn.Name = "EditColumn";
|
|
this.EditColumn.ReadOnly = true;
|
|
this.EditColumn.Text = "编辑";
|
|
this.EditColumn.UseColumnTextForButtonValue = true;
|
|
this.EditColumn.Width = 60;
|
|
//
|
|
// DeleteColumn
|
|
//
|
|
this.DeleteColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
|
|
this.DeleteColumn.HeaderText = "";
|
|
this.DeleteColumn.Name = "DeleteColumn";
|
|
this.DeleteColumn.ReadOnly = true;
|
|
this.DeleteColumn.Text = "删除";
|
|
this.DeleteColumn.UseColumnTextForButtonValue = true;
|
|
this.DeleteColumn.Width = 60;
|
|
//
|
|
// IsPublic
|
|
//
|
|
this.IsPublic.DataPropertyName = "IsPublic";
|
|
this.IsPublic.HeaderText = "公有";
|
|
this.IsPublic.Name = "IsPublic";
|
|
this.IsPublic.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
|
this.IsPublic.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
|
|
this.IsPublic.Visible = false;
|
|
//
|
|
// OperatorNo
|
|
//
|
|
this.OperatorNo.DataPropertyName = "OperatorNo";
|
|
this.OperatorNo.HeaderText = "OperatorNo";
|
|
this.OperatorNo.Name = "OperatorNo";
|
|
this.OperatorNo.Visible = false;
|
|
//
|
|
// InRoomTime2
|
|
//
|
|
this.InRoomTime2.DataPropertyName = "InRoomTime";
|
|
this.InRoomTime2.HeaderText = "InRoomTime";
|
|
this.InRoomTime2.Name = "InRoomTime2";
|
|
this.InRoomTime2.Visible = false;
|
|
//
|
|
// frmTemplate
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(406, 509);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.panel2);
|
|
this.Controls.Add(this.panel1);
|
|
this.Name = "frmTemplate";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Load += new System.EventHandler(this.frmTemplate_Load);
|
|
this.panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.dgv)).EndInit();
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel1.PerformLayout();
|
|
this.toolStrip1.ResumeLayout(false);
|
|
this.toolStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
|
|
private System.Windows.Forms.Panel panel2;
|
|
private System.Windows.Forms.ToolStripButton tsbExit;
|
|
private System.Windows.Forms.ToolStripButton tsbCreateTemplate;
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.ToolStrip toolStrip1;
|
|
private System.Windows.Forms.DataGridView dgv;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn TemplateNameColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn OperatorName;
|
|
private System.Windows.Forms.DataGridViewButtonColumn InputColumn;
|
|
private System.Windows.Forms.DataGridViewButtonColumn EditColumn;
|
|
private System.Windows.Forms.DataGridViewButtonColumn DeleteColumn;
|
|
private System.Windows.Forms.DataGridViewCheckBoxColumn IsPublic;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn OperatorNo;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn InRoomTime2;
|
|
}
|
|
} |