namespace GameEditorPlugin.Win32.Editor { partial class EditorDisplayPanel { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region 组件设计器生成的代码 /// /// 设计器支持所需的方法 - 不要 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.btn_ShowUnit = new System.Windows.Forms.ToolStripButton(); this.btn_ShowRegion = new System.Windows.Forms.ToolStripButton(); this.btn_ShowPoint = new System.Windows.Forms.ToolStripButton(); this.btn_ShowDecoration = new System.Windows.Forms.ToolStripButton(); this.btn_ShowItem = new System.Windows.Forms.ToolStripButton(); this.btn_ShowArea = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.toolStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.SuspendLayout(); // // toolStrip1 // this.toolStrip1.Dock = System.Windows.Forms.DockStyle.Left; this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.btn_ShowUnit, this.btn_ShowRegion, this.btn_ShowPoint, this.btn_ShowDecoration, this.btn_ShowItem, this.btn_ShowArea, this.toolStripSeparator1}); this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Size = new System.Drawing.Size(24, 581); this.toolStrip1.TabIndex = 1; this.toolStrip1.Text = "toolStrip1"; // // btn_ShowUnit // this.btn_ShowUnit.CheckOnClick = true; this.btn_ShowUnit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.btn_ShowUnit.Image = global::GameEditorPlugin.Properties.Resources.icon_res_2; this.btn_ShowUnit.ImageTransparentColor = System.Drawing.Color.Magenta; this.btn_ShowUnit.Name = "btn_ShowUnit"; this.btn_ShowUnit.Size = new System.Drawing.Size(21, 20); this.btn_ShowUnit.Text = "显示单位"; this.btn_ShowUnit.CheckedChanged += new System.EventHandler(this.btn_Show_CheckedChanged); this.btn_ShowUnit.Click += new System.EventHandler(this.btn_Show_Click); // // btn_ShowRegion // this.btn_ShowRegion.CheckOnClick = true; this.btn_ShowRegion.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.btn_ShowRegion.Image = global::GameEditorPlugin.Properties.Resources.icon_layer; this.btn_ShowRegion.ImageTransparentColor = System.Drawing.Color.Magenta; this.btn_ShowRegion.Name = "btn_ShowRegion"; this.btn_ShowRegion.Size = new System.Drawing.Size(21, 20); this.btn_ShowRegion.Text = "显示区域"; this.btn_ShowRegion.CheckedChanged += new System.EventHandler(this.btn_Show_CheckedChanged); this.btn_ShowRegion.Click += new System.EventHandler(this.btn_Show_Click); // // btn_ShowPoint // this.btn_ShowPoint.CheckOnClick = true; this.btn_ShowPoint.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.btn_ShowPoint.Image = global::GameEditorPlugin.Properties.Resources.icon_trigger; this.btn_ShowPoint.ImageTransparentColor = System.Drawing.Color.Magenta; this.btn_ShowPoint.Name = "btn_ShowPoint"; this.btn_ShowPoint.Size = new System.Drawing.Size(21, 20); this.btn_ShowPoint.Text = "显示路点"; this.btn_ShowPoint.CheckedChanged += new System.EventHandler(this.btn_Show_CheckedChanged); this.btn_ShowPoint.Click += new System.EventHandler(this.btn_Show_Click); // // btn_ShowDecoration // this.btn_ShowDecoration.CheckOnClick = true; this.btn_ShowDecoration.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.btn_ShowDecoration.Image = global::GameEditorPlugin.Properties.Resources.icon_res_1; this.btn_ShowDecoration.ImageTransparentColor = System.Drawing.Color.Magenta; this.btn_ShowDecoration.Name = "btn_ShowDecoration"; this.btn_ShowDecoration.Size = new System.Drawing.Size(21, 20); this.btn_ShowDecoration.Text = "显示装饰物"; this.btn_ShowDecoration.CheckedChanged += new System.EventHandler(this.btn_Show_CheckedChanged); this.btn_ShowDecoration.Click += new System.EventHandler(this.btn_Show_Click); // // btn_ShowItem // this.btn_ShowItem.CheckOnClick = true; this.btn_ShowItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.btn_ShowItem.Image = global::GameEditorPlugin.Properties.Resources.icon_res_4; this.btn_ShowItem.ImageTransparentColor = System.Drawing.Color.Magenta; this.btn_ShowItem.Name = "btn_ShowItem"; this.btn_ShowItem.Size = new System.Drawing.Size(21, 20); this.btn_ShowItem.Text = "显示物品"; this.btn_ShowItem.CheckedChanged += new System.EventHandler(this.btn_Show_CheckedChanged); this.btn_ShowItem.Click += new System.EventHandler(this.btn_Show_Click); // // btn_ShowArea // this.btn_ShowArea.CheckOnClick = true; this.btn_ShowArea.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.btn_ShowArea.Image = global::GameEditorPlugin.Properties.Resources.icon_res_6; this.btn_ShowArea.ImageTransparentColor = System.Drawing.Color.Magenta; this.btn_ShowArea.Name = "btn_ShowArea"; this.btn_ShowArea.Size = new System.Drawing.Size(21, 20); this.btn_ShowArea.Text = "显示Area"; this.btn_ShowArea.CheckedChanged += new System.EventHandler(this.btn_Show_CheckedChanged); this.btn_ShowArea.Click += new System.EventHandler(this.btn_Show_Click); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(21, 6); // // pictureBox1 // this.pictureBox1.BackColor = System.Drawing.Color.Black; this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.pictureBox1.Location = new System.Drawing.Point(24, 0); this.pictureBox1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(744, 581); this.pictureBox1.TabIndex = 0; this.pictureBox1.TabStop = false; this.pictureBox1.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBox1_Paint); this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseDown); this.pictureBox1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseMove); this.pictureBox1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseUp); // // EditorDisplayPanel // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.Controls.Add(this.pictureBox1); this.Controls.Add(this.toolStrip1); this.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.Name = "EditorDisplayPanel"; this.Size = new System.Drawing.Size(768, 581); this.Load += new System.EventHandler(this.Win32EditorPanel_Load); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.PictureBox pictureBox1; private System.Windows.Forms.ToolStrip toolStrip1; private System.Windows.Forms.ToolStripButton btn_ShowUnit; private System.Windows.Forms.ToolStripButton btn_ShowPoint; private System.Windows.Forms.ToolStripButton btn_ShowRegion; private System.Windows.Forms.ToolStripButton btn_ShowItem; private System.Windows.Forms.ToolStripButton btn_ShowDecoration; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.ToolStripButton btn_ShowArea; } }