namespace AGVSystem { // Token: 0x02000017 RID: 23 public partial class Linemanage : global::System.Windows.Forms.Form { // Token: 0x06000134 RID: 308 RVA: 0x00037008 File Offset: 0x00035208 protected override void Dispose(bool disposing) { bool flag = disposing && this.components != null; if (flag) { this.components.Dispose(); } base.Dispose(disposing); } // Token: 0x06000135 RID: 309 RVA: 0x00037040 File Offset: 0x00035240 private void InitializeComponent() { global::System.ComponentModel.ComponentResourceManager componentResourceManager = new global::System.ComponentModel.ComponentResourceManager(typeof(global::AGVSystem.Linemanage)); this.label1 = new global::System.Windows.Forms.Label(); this.label2 = new global::System.Windows.Forms.Label(); this.txt_id = new global::System.Windows.Forms.TextBox(); this.txt_line_name = new global::System.Windows.Forms.TextBox(); this.dataGridView1 = new global::System.Windows.Forms.DataGridView(); this.线体编号 = new global::System.Windows.Forms.DataGridViewTextBoxColumn(); this.线体名称 = new global::System.Windows.Forms.DataGridViewTextBoxColumn(); this.所属地图 = new global::System.Windows.Forms.DataGridViewTextBoxColumn(); this.splitContainer1 = new global::System.Windows.Forms.SplitContainer(); this.groupBox1 = new global::System.Windows.Forms.GroupBox(); this.comboBox1 = new global::System.Windows.Forms.ComboBox(); this.label3 = new global::System.Windows.Forms.Label(); this.toolStrip1 = new global::System.Windows.Forms.ToolStrip(); this.toolStripButton1 = new global::System.Windows.Forms.ToolStripButton(); this.toolStripButton2 = new global::System.Windows.Forms.ToolStripButton(); this.toolStripButton3 = new global::System.Windows.Forms.ToolStripButton(); this.toolStripButton4 = new global::System.Windows.Forms.ToolStripButton(); this.toolStripButton5 = new global::System.Windows.Forms.ToolStripButton(); this.toolStripButton6 = new global::System.Windows.Forms.ToolStripButton(); ((global::System.ComponentModel.ISupportInitialize)this.dataGridView1).BeginInit(); ((global::System.ComponentModel.ISupportInitialize)this.splitContainer1).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.groupBox1.SuspendLayout(); this.toolStrip1.SuspendLayout(); base.SuspendLayout(); this.label1.AutoSize = true; this.label1.Location = new global::System.Drawing.Point(83, 43); this.label1.Name = "label1"; this.label1.Size = new global::System.Drawing.Size(41, 12); this.label1.TabIndex = 0; this.label1.Text = "编号:"; this.label2.AutoSize = true; this.label2.Location = new global::System.Drawing.Point(83, 88); this.label2.Name = "label2"; this.label2.Size = new global::System.Drawing.Size(41, 12); this.label2.TabIndex = 1; this.label2.Text = "名称:"; this.txt_id.BackColor = global::System.Drawing.SystemColors.ScrollBar; this.txt_id.Location = new global::System.Drawing.Point(129, 40); this.txt_id.Name = "txt_id"; this.txt_id.Size = new global::System.Drawing.Size(100, 21); this.txt_id.TabIndex = 2; this.txt_line_name.Location = new global::System.Drawing.Point(129, 85); this.txt_line_name.Name = "txt_line_name"; this.txt_line_name.Size = new global::System.Drawing.Size(216, 21); this.txt_line_name.TabIndex = 3; this.dataGridView1.AllowUserToAddRows = false; this.dataGridView1.AllowUserToResizeRows = false; this.dataGridView1.BackgroundColor = global::System.Drawing.Color.White; this.dataGridView1.ColumnHeadersHeight = 40; this.dataGridView1.Columns.AddRange(new global::System.Windows.Forms.DataGridViewColumn[] { this.线体编号, this.线体名称, this.所属地图 }); this.dataGridView1.Dock = global::System.Windows.Forms.DockStyle.Fill; this.dataGridView1.Location = new global::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 = global::System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.dataGridView1.Size = new global::System.Drawing.Size(518, 466); this.dataGridView1.TabIndex = 5; this.dataGridView1.DoubleClick += new global::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; this.splitContainer1.Dock = global::System.Windows.Forms.DockStyle.Fill; this.splitContainer1.FixedPanel = global::System.Windows.Forms.FixedPanel.Panel2; this.splitContainer1.Location = new global::System.Drawing.Point(0, 0); this.splitContainer1.Name = "splitContainer1"; this.splitContainer1.Panel1.Controls.Add(this.dataGridView1); this.splitContainer1.Panel2.Controls.Add(this.groupBox1); this.splitContainer1.Panel2.Controls.Add(this.toolStrip1); this.splitContainer1.Size = new global::System.Drawing.Size(967, 466); this.splitContainer1.SplitterDistance = 518; this.splitContainer1.TabIndex = 17; 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 = global::System.Windows.Forms.DockStyle.Top; this.groupBox1.Location = new global::System.Drawing.Point(0, 71); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new global::System.Drawing.Size(445, 219); this.groupBox1.TabIndex = 28; this.groupBox1.TabStop = false; this.groupBox1.Text = "线体信息"; this.comboBox1.DropDownStyle = global::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 global::System.Drawing.Point(129, 130); this.comboBox1.Name = "comboBox1"; this.comboBox1.Size = new global::System.Drawing.Size(141, 20); this.comboBox1.TabIndex = 21; this.label3.AutoSize = true; this.label3.Location = new global::System.Drawing.Point(59, 133); this.label3.Name = "label3"; this.label3.Size = new global::System.Drawing.Size(65, 12); this.label3.TabIndex = 20; this.label3.Text = "所属地图:"; this.toolStrip1.BackColor = global::System.Drawing.Color.White; this.toolStrip1.ImageScalingSize = new global::System.Drawing.Size(64, 64); this.toolStrip1.Items.AddRange(new global::System.Windows.Forms.ToolStripItem[] { this.toolStripButton1, this.toolStripButton2, this.toolStripButton3, this.toolStripButton4, this.toolStripButton5, this.toolStripButton6 }); this.toolStrip1.Location = new global::System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Size = new global::System.Drawing.Size(445, 71); this.toolStrip1.TabIndex = 27; this.toolStrip1.Text = "toolStrip1"; this.toolStripButton1.DisplayStyle = global::System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton1.Image = (global::System.Drawing.Image)componentResourceManager.GetObject("toolStripButton1.Image"); this.toolStripButton1.ImageTransparentColor = global::System.Drawing.Color.Magenta; this.toolStripButton1.Name = "toolStripButton1"; this.toolStripButton1.Size = new global::System.Drawing.Size(68, 68); this.toolStripButton1.Text = "新建"; this.toolStripButton1.Click += new global::System.EventHandler(this.toolStripButton1_Click); this.toolStripButton2.DisplayStyle = global::System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton2.Enabled = false; this.toolStripButton2.Image = (global::System.Drawing.Image)componentResourceManager.GetObject("toolStripButton2.Image"); this.toolStripButton2.ImageTransparentColor = global::System.Drawing.Color.Magenta; this.toolStripButton2.Name = "toolStripButton2"; this.toolStripButton2.Size = new global::System.Drawing.Size(68, 68); this.toolStripButton2.Text = "查询"; this.toolStripButton3.DisplayStyle = global::System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton3.Image = (global::System.Drawing.Image)componentResourceManager.GetObject("toolStripButton3.Image"); this.toolStripButton3.ImageTransparentColor = global::System.Drawing.Color.Magenta; this.toolStripButton3.Name = "toolStripButton3"; this.toolStripButton3.Size = new global::System.Drawing.Size(68, 68); this.toolStripButton3.Text = "添加"; this.toolStripButton3.Click += new global::System.EventHandler(this.toolStripButton3_Click); this.toolStripButton4.DisplayStyle = global::System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton4.Image = (global::System.Drawing.Image)componentResourceManager.GetObject("toolStripButton4.Image"); this.toolStripButton4.ImageTransparentColor = global::System.Drawing.Color.Magenta; this.toolStripButton4.Name = "toolStripButton4"; this.toolStripButton4.Size = new global::System.Drawing.Size(68, 68); this.toolStripButton4.Text = "删除"; this.toolStripButton4.Click += new global::System.EventHandler(this.toolStripButton4_Click); this.toolStripButton5.DisplayStyle = global::System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton5.Enabled = false; this.toolStripButton5.Image = (global::System.Drawing.Image)componentResourceManager.GetObject("toolStripButton5.Image"); this.toolStripButton5.ImageTransparentColor = global::System.Drawing.Color.Magenta; this.toolStripButton5.Name = "toolStripButton5"; this.toolStripButton5.Size = new global::System.Drawing.Size(68, 68); this.toolStripButton5.Text = "更新"; this.toolStripButton6.DisplayStyle = global::System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton6.Image = (global::System.Drawing.Image)componentResourceManager.GetObject("toolStripButton6.Image"); this.toolStripButton6.ImageTransparentColor = global::System.Drawing.Color.Magenta; this.toolStripButton6.Name = "toolStripButton6"; this.toolStripButton6.Size = new global::System.Drawing.Size(68, 68); this.toolStripButton6.Text = "保存"; this.toolStripButton6.Click += new global::System.EventHandler(this.toolStripButton6_Click); base.AutoScaleDimensions = new global::System.Drawing.SizeF(6f, 12f); base.AutoScaleMode = global::System.Windows.Forms.AutoScaleMode.Font; base.ClientSize = new global::System.Drawing.Size(967, 466); base.Controls.Add(this.splitContainer1); base.FormBorderStyle = global::System.Windows.Forms.FormBorderStyle.Fixed3D; base.Name = "Linemanage"; base.StartPosition = global::System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "运行线体管理"; base.Load += new global::System.EventHandler(this.Linemanage_Load); ((global::System.ComponentModel.ISupportInitialize)this.dataGridView1).EndInit(); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); this.splitContainer1.Panel2.PerformLayout(); ((global::System.ComponentModel.ISupportInitialize)this.splitContainer1).EndInit(); this.splitContainer1.ResumeLayout(false); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); base.ResumeLayout(false); } // Token: 0x04000421 RID: 1057 private global::System.ComponentModel.IContainer components = null; // Token: 0x04000422 RID: 1058 private global::System.Windows.Forms.Label label1; // Token: 0x04000423 RID: 1059 private global::System.Windows.Forms.Label label2; // Token: 0x04000424 RID: 1060 private global::System.Windows.Forms.TextBox txt_id; // Token: 0x04000425 RID: 1061 private global::System.Windows.Forms.TextBox txt_line_name; // Token: 0x04000426 RID: 1062 private global::System.Windows.Forms.DataGridView dataGridView1; // Token: 0x04000427 RID: 1063 private global::System.Windows.Forms.SplitContainer splitContainer1; // Token: 0x04000428 RID: 1064 private global::System.Windows.Forms.DataGridViewTextBoxColumn 线体编号; // Token: 0x04000429 RID: 1065 private global::System.Windows.Forms.DataGridViewTextBoxColumn 线体名称; // Token: 0x0400042A RID: 1066 private global::System.Windows.Forms.DataGridViewTextBoxColumn 所属地图; // Token: 0x0400042B RID: 1067 private global::System.Windows.Forms.ComboBox comboBox1; // Token: 0x0400042C RID: 1068 private global::System.Windows.Forms.Label label3; // Token: 0x0400042D RID: 1069 private global::System.Windows.Forms.ToolStrip toolStrip1; // Token: 0x0400042E RID: 1070 private global::System.Windows.Forms.ToolStripButton toolStripButton1; // Token: 0x0400042F RID: 1071 private global::System.Windows.Forms.ToolStripButton toolStripButton2; // Token: 0x04000430 RID: 1072 private global::System.Windows.Forms.ToolStripButton toolStripButton3; // Token: 0x04000431 RID: 1073 private global::System.Windows.Forms.ToolStripButton toolStripButton4; // Token: 0x04000432 RID: 1074 private global::System.Windows.Forms.ToolStripButton toolStripButton5; // Token: 0x04000433 RID: 1075 private global::System.Windows.Forms.ToolStripButton toolStripButton6; // Token: 0x04000434 RID: 1076 private global::System.Windows.Forms.GroupBox groupBox1; } }