320 lines
16 KiB
C#
320 lines
16 KiB
C#
namespace AGVSystem
|
|
{
|
|
partial class Linemanage
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Linemanage));
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.txt_id = new System.Windows.Forms.TextBox();
|
|
this.txt_line_name = new System.Windows.Forms.TextBox();
|
|
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|
this.线体编号 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.线体名称 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.所属地图 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.comboBox1 = new System.Windows.Forms.ComboBox();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
|
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
|
|
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
|
|
this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
|
|
this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
|
|
this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
|
|
this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
|
this.splitContainer1.Panel1.SuspendLayout();
|
|
this.splitContainer1.Panel2.SuspendLayout();
|
|
this.splitContainer1.SuspendLayout();
|
|
this.groupBox1.SuspendLayout();
|
|
this.toolStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(83, 43);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(41, 12);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "编号:";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(83, 88);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(41, 12);
|
|
this.label2.TabIndex = 1;
|
|
this.label2.Text = "名称:";
|
|
//
|
|
// txt_id
|
|
//
|
|
this.txt_id.BackColor = System.Drawing.SystemColors.ScrollBar;
|
|
this.txt_id.Location = new System.Drawing.Point(129, 40);
|
|
this.txt_id.Name = "txt_id";
|
|
this.txt_id.Size = new System.Drawing.Size(100, 21);
|
|
this.txt_id.TabIndex = 2;
|
|
//
|
|
// txt_line_name
|
|
//
|
|
this.txt_line_name.Location = new System.Drawing.Point(129, 85);
|
|
this.txt_line_name.Name = "txt_line_name";
|
|
this.txt_line_name.Size = new System.Drawing.Size(216, 21);
|
|
this.txt_line_name.TabIndex = 3;
|
|
//
|
|
// dataGridView1
|
|
//
|
|
this.dataGridView1.AllowUserToAddRows = false;
|
|
this.dataGridView1.AllowUserToResizeRows = false;
|
|
this.dataGridView1.BackgroundColor = System.Drawing.Color.White;
|
|
this.dataGridView1.ColumnHeadersHeight = 40;
|
|
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.线体编号,
|
|
this.线体名称,
|
|
this.所属地图});
|
|
this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.dataGridView1.Location = new System.Drawing.Point(0, 0);
|
|
this.dataGridView1.Name = "dataGridView1";
|
|
this.dataGridView1.ReadOnly = true;
|
|
this.dataGridView1.RowHeadersVisible = false;
|
|
this.dataGridView1.RowTemplate.Height = 30;
|
|
this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
|
this.dataGridView1.Size = new System.Drawing.Size(518, 466);
|
|
this.dataGridView1.TabIndex = 5;
|
|
this.dataGridView1.DoubleClick += new System.EventHandler(this.dataGridView1_DoubleClick);
|
|
//
|
|
// 线体编号
|
|
//
|
|
this.线体编号.DataPropertyName = "线体编号";
|
|
this.线体编号.HeaderText = "线体编号";
|
|
this.线体编号.Name = "线体编号";
|
|
this.线体编号.ReadOnly = true;
|
|
this.线体编号.Width = 80;
|
|
//
|
|
// 线体名称
|
|
//
|
|
this.线体名称.DataPropertyName = "线体名称";
|
|
this.线体名称.HeaderText = "线体名称";
|
|
this.线体名称.Name = "线体名称";
|
|
this.线体名称.ReadOnly = true;
|
|
this.线体名称.Width = 200;
|
|
//
|
|
// 所属地图
|
|
//
|
|
this.所属地图.DataPropertyName = "所属地图";
|
|
this.所属地图.HeaderText = "所属地图";
|
|
this.所属地图.Name = "所属地图";
|
|
this.所属地图.ReadOnly = true;
|
|
this.所属地图.Width = 80;
|
|
//
|
|
// splitContainer1
|
|
//
|
|
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
|
|
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
|
|
this.splitContainer1.Name = "splitContainer1";
|
|
//
|
|
// splitContainer1.Panel1
|
|
//
|
|
this.splitContainer1.Panel1.Controls.Add(this.dataGridView1);
|
|
//
|
|
// splitContainer1.Panel2
|
|
//
|
|
this.splitContainer1.Panel2.Controls.Add(this.groupBox1);
|
|
this.splitContainer1.Panel2.Controls.Add(this.toolStrip1);
|
|
this.splitContainer1.Size = new System.Drawing.Size(967, 466);
|
|
this.splitContainer1.SplitterDistance = 518;
|
|
this.splitContainer1.TabIndex = 17;
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.label1);
|
|
this.groupBox1.Controls.Add(this.label2);
|
|
this.groupBox1.Controls.Add(this.comboBox1);
|
|
this.groupBox1.Controls.Add(this.txt_id);
|
|
this.groupBox1.Controls.Add(this.label3);
|
|
this.groupBox1.Controls.Add(this.txt_line_name);
|
|
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.groupBox1.Location = new System.Drawing.Point(0, 71);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(445, 219);
|
|
this.groupBox1.TabIndex = 28;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "线体信息";
|
|
//
|
|
// comboBox1
|
|
//
|
|
this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboBox1.FormattingEnabled = true;
|
|
this.comboBox1.Items.AddRange(new object[] {
|
|
"NULL",
|
|
"AGV路线图1",
|
|
"AGV路线图2",
|
|
"AGV路线图3"});
|
|
this.comboBox1.Location = new System.Drawing.Point(129, 130);
|
|
this.comboBox1.Name = "comboBox1";
|
|
this.comboBox1.Size = new System.Drawing.Size(141, 20);
|
|
this.comboBox1.TabIndex = 21;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(59, 133);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(65, 12);
|
|
this.label3.TabIndex = 20;
|
|
this.label3.Text = "所属地图:";
|
|
//
|
|
// toolStrip1
|
|
//
|
|
this.toolStrip1.BackColor = System.Drawing.Color.White;
|
|
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(64, 64);
|
|
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.toolStripButton1,
|
|
this.toolStripButton2,
|
|
this.toolStripButton3,
|
|
this.toolStripButton4,
|
|
this.toolStripButton5,
|
|
this.toolStripButton6});
|
|
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.toolStrip1.Name = "toolStrip1";
|
|
this.toolStrip1.Size = new System.Drawing.Size(445, 71);
|
|
this.toolStrip1.TabIndex = 27;
|
|
this.toolStrip1.Text = "toolStrip1";
|
|
//
|
|
// toolStripButton1
|
|
//
|
|
this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
|
|
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.toolStripButton1.Name = "toolStripButton1";
|
|
this.toolStripButton1.Size = new System.Drawing.Size(68, 68);
|
|
this.toolStripButton1.Text = "新建";
|
|
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
|
|
//
|
|
// toolStripButton2
|
|
//
|
|
this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.toolStripButton2.Enabled = false;
|
|
this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
|
|
this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.toolStripButton2.Name = "toolStripButton2";
|
|
this.toolStripButton2.Size = new System.Drawing.Size(68, 68);
|
|
this.toolStripButton2.Text = "查询";
|
|
//
|
|
// toolStripButton3
|
|
//
|
|
this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
|
|
this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.toolStripButton3.Name = "toolStripButton3";
|
|
this.toolStripButton3.Size = new System.Drawing.Size(68, 68);
|
|
this.toolStripButton3.Text = "添加";
|
|
this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
|
|
//
|
|
// toolStripButton4
|
|
//
|
|
this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
|
|
this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.toolStripButton4.Name = "toolStripButton4";
|
|
this.toolStripButton4.Size = new System.Drawing.Size(68, 68);
|
|
this.toolStripButton4.Text = "删除";
|
|
this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
|
|
//
|
|
// toolStripButton5
|
|
//
|
|
this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.toolStripButton5.Enabled = false;
|
|
this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
|
|
this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.toolStripButton5.Name = "toolStripButton5";
|
|
this.toolStripButton5.Size = new System.Drawing.Size(68, 68);
|
|
this.toolStripButton5.Text = "更新";
|
|
//
|
|
// toolStripButton6
|
|
//
|
|
this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|
this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
|
|
this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.toolStripButton6.Name = "toolStripButton6";
|
|
this.toolStripButton6.Size = new System.Drawing.Size(68, 68);
|
|
this.toolStripButton6.Text = "保存";
|
|
this.toolStripButton6.Click += new System.EventHandler(this.toolStripButton6_Click);
|
|
//
|
|
// Linemanage
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(967, 466);
|
|
this.Controls.Add(this.splitContainer1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
|
|
this.Name = "Linemanage";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "运行线体管理";
|
|
this.Load += new System.EventHandler(this.Linemanage_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|
this.splitContainer1.Panel1.ResumeLayout(false);
|
|
this.splitContainer1.Panel2.ResumeLayout(false);
|
|
this.splitContainer1.Panel2.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
|
this.splitContainer1.ResumeLayout(false);
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.groupBox1.PerformLayout();
|
|
this.toolStrip1.ResumeLayout(false);
|
|
this.toolStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.TextBox txt_id;
|
|
private System.Windows.Forms.TextBox txt_line_name;
|
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|
private System.Windows.Forms.SplitContainer splitContainer1;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn 线体编号;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn 线体名称;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn 所属地图;
|
|
private System.Windows.Forms.ComboBox comboBox1;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.ToolStrip toolStrip1;
|
|
private System.Windows.Forms.ToolStripButton toolStripButton1;
|
|
private System.Windows.Forms.ToolStripButton toolStripButton2;
|
|
private System.Windows.Forms.ToolStripButton toolStripButton3;
|
|
private System.Windows.Forms.ToolStripButton toolStripButton4;
|
|
private System.Windows.Forms.ToolStripButton toolStripButton5;
|
|
private System.Windows.Forms.ToolStripButton toolStripButton6;
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
}
|
|
} |