namespace Maestro.Editors.Fusion.MapEditors { partial class GenericEditor { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.btnSave = new System.Windows.Forms.ToolStripButton(); this.txtXml = new ICSharpCode.TextEditor.TextEditorControl(); this.toolStrip1.SuspendLayout(); this.SuspendLayout(); // // toolStrip1 // this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.btnSave}); this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Size = new System.Drawing.Size(605, 25); this.toolStrip1.TabIndex = 0; this.toolStrip1.Text = "toolStrip1"; // // btnSave // this.btnSave.Image = global::Maestro.Editors.Properties.Resources.disk; this.btnSave.ImageTransparentColor = System.Drawing.Color.Magenta; this.btnSave.Name = "btnSave"; this.btnSave.Size = new System.Drawing.Size(51, 22); this.btnSave.Text = "Save"; this.btnSave.Click += new System.EventHandler(this.btnSave_Click); // // txtXml // this.txtXml.Dock = System.Windows.Forms.DockStyle.Fill; this.txtXml.IsReadOnly = false; this.txtXml.Location = new System.Drawing.Point(0, 25); this.txtXml.Name = "txtXml"; this.txtXml.Size = new System.Drawing.Size(605, 234); this.txtXml.TabIndex = 1; this.txtXml.TextChanged += new System.EventHandler(this.txtXml_TextChanged); // // GenericEditor // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.txtXml); this.Controls.Add(this.toolStrip1); this.Name = "GenericEditor"; this.Size = new System.Drawing.Size(605, 259); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ToolStrip toolStrip1; private System.Windows.Forms.ToolStripButton btnSave; private ICSharpCode.TextEditor.TextEditorControl txtXml; } }