Click here to Skip to main content
15,892,005 members
Articles / Desktop Programming / Windows Forms

Storm - the world's best IDE framework for .NET

Rate me:
Please Sign up or sign in to vote.
4.96/5 (82 votes)
4 Feb 2010LGPL311 min read 276.7K   6.5K   340  
Create fast, flexible, and extensible IDE applications easily with Storm - it takes nearly no code at all!
namespace Plugin1
{
	partial class PluginConsole
	{
		/// <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 Component 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.menuStrip = new System.Windows.Forms.MenuStrip();
			this.txtOutput = new System.Windows.Forms.ToolStripComboBox();
			this.btnClear = new System.Windows.Forms.ToolStripMenuItem();
			this.consoleText = new System.Windows.Forms.TextBox();
			this.menuStrip.SuspendLayout();
			this.SuspendLayout();
			// 
			// menuStrip
			// 
			this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.txtOutput,
            this.btnClear});
			this.menuStrip.Location = new System.Drawing.Point(0, 0);
			this.menuStrip.Name = "menuStrip";
			this.menuStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
			this.menuStrip.Size = new System.Drawing.Size(405, 25);
			this.menuStrip.TabIndex = 0;
			this.menuStrip.Text = "menuStrip1";
			// 
			// txtOutput
			// 
			this.txtOutput.Items.AddRange(new object[] {
            "PluginManager"});
			this.txtOutput.Name = "txtOutput";
			this.txtOutput.Size = new System.Drawing.Size(121, 21);
			this.txtOutput.Text = "PluginManager";
			// 
			// btnClear
			// 
			this.btnClear.Name = "btnClear";
			this.btnClear.Size = new System.Drawing.Size(58, 21);
			this.btnClear.Text = "Clear All";
			this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
			// 
			// consoleText
			// 
			this.consoleText.BackColor = System.Drawing.SystemColors.Window;
			this.consoleText.Dock = System.Windows.Forms.DockStyle.Fill;
			this.consoleText.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.consoleText.Location = new System.Drawing.Point(0, 25);
			this.consoleText.Multiline = true;
			this.consoleText.Name = "consoleText";
			this.consoleText.ReadOnly = true;
			this.consoleText.Size = new System.Drawing.Size(405, 102);
			this.consoleText.TabIndex = 1;
			// 
			// PluginConsole
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.consoleText);
			this.Controls.Add(this.menuStrip);
			this.Name = "PluginConsole";
			this.Size = new System.Drawing.Size(405, 127);
			this.menuStrip.ResumeLayout(false);
			this.menuStrip.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}

		#endregion

		private System.Windows.Forms.MenuStrip menuStrip;
		private System.Windows.Forms.ToolStripComboBox txtOutput;
		private System.Windows.Forms.ToolStripMenuItem btnClear;
		private System.Windows.Forms.TextBox consoleText;
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)



Comments and Discussions