Click here to Skip to main content
15,895,709 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 277.8K   6.5K   340  
Create fast, flexible, and extensible IDE applications easily with Storm - it takes nearly no code at all!
namespace Storm.TextEditor.Test
{
	partial class MainForm
	{
		/// <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()
		{
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
			this.menuStrip = new System.Windows.Forms.MenuStrip();
			this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
			this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.btnCut = new System.Windows.Forms.ToolStripMenuItem();
			this.btnCopy = new System.Windows.Forms.ToolStripMenuItem();
			this.btnPaste = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			this.btnUndo = new System.Windows.Forms.ToolStripMenuItem();
			this.btnRedo = new System.Windows.Forms.ToolStripMenuItem();
			this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.btnAbout = new System.Windows.Forms.ToolStripMenuItem();
			this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
			this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
			this.textEditor = new Storm.TextEditor.TextEditor();
			this.codePrintDocument = new Storm.TextEditor.Editor.Printing.CodePrintDocument();
			this.imageList1 = new System.Windows.Forms.ImageList(this.components);
			this.menuStrip.SuspendLayout();
			this.SuspendLayout();
			// 
			// menuStrip
			// 
			this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.editToolStripMenuItem,
            this.helpToolStripMenuItem});
			this.menuStrip.Location = new System.Drawing.Point(0, 0);
			this.menuStrip.Name = "menuStrip";
			this.menuStrip.Size = new System.Drawing.Size(784, 24);
			this.menuStrip.TabIndex = 1;
			// 
			// fileToolStripMenuItem
			// 
			this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newToolStripMenuItem,
            this.openToolStripMenuItem,
            this.saveToolStripMenuItem,
            this.saveAsToolStripMenuItem,
            this.toolStripSeparator2,
            this.exitToolStripMenuItem});
			this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
			this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
			this.fileToolStripMenuItem.Text = "File";
			// 
			// newToolStripMenuItem
			// 
			this.newToolStripMenuItem.Name = "newToolStripMenuItem";
			this.newToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
			this.newToolStripMenuItem.Text = "New";
			this.newToolStripMenuItem.Click += new System.EventHandler(this.OnNewClick);
			// 
			// openToolStripMenuItem
			// 
			this.openToolStripMenuItem.Name = "openToolStripMenuItem";
			this.openToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
			this.openToolStripMenuItem.Text = "Open";
			this.openToolStripMenuItem.Click += new System.EventHandler(this.OnOpenClick);
			// 
			// saveToolStripMenuItem
			// 
			this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
			this.saveToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
			this.saveToolStripMenuItem.Text = "Save";
			this.saveToolStripMenuItem.Click += new System.EventHandler(this.OnSaveClick);
			// 
			// saveAsToolStripMenuItem
			// 
			this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
			this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
			this.saveAsToolStripMenuItem.Text = "Save As";
			this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.OnSaveAsClick);
			// 
			// toolStripSeparator2
			// 
			this.toolStripSeparator2.Name = "toolStripSeparator2";
			this.toolStripSeparator2.Size = new System.Drawing.Size(111, 6);
			// 
			// exitToolStripMenuItem
			// 
			this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
			this.exitToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
			this.exitToolStripMenuItem.Text = "Exit";
			this.exitToolStripMenuItem.Click += new System.EventHandler(this.OnExitClick);
			// 
			// editToolStripMenuItem
			// 
			this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.btnCut,
            this.btnCopy,
            this.btnPaste,
            this.toolStripSeparator1,
            this.btnUndo,
            this.btnRedo});
			this.editToolStripMenuItem.Name = "editToolStripMenuItem";
			this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
			this.editToolStripMenuItem.Text = "Edit";
			// 
			// btnCut
			// 
			this.btnCut.Name = "btnCut";
			this.btnCut.Size = new System.Drawing.Size(103, 22);
			this.btnCut.Text = "Cut";
			// 
			// btnCopy
			// 
			this.btnCopy.Name = "btnCopy";
			this.btnCopy.Size = new System.Drawing.Size(103, 22);
			this.btnCopy.Text = "Copy";
			// 
			// btnPaste
			// 
			this.btnPaste.Name = "btnPaste";
			this.btnPaste.Size = new System.Drawing.Size(103, 22);
			this.btnPaste.Text = "Paste";
			// 
			// toolStripSeparator1
			// 
			this.toolStripSeparator1.Name = "toolStripSeparator1";
			this.toolStripSeparator1.Size = new System.Drawing.Size(100, 6);
			// 
			// btnUndo
			// 
			this.btnUndo.Name = "btnUndo";
			this.btnUndo.Size = new System.Drawing.Size(103, 22);
			this.btnUndo.Text = "Undo";
			// 
			// btnRedo
			// 
			this.btnRedo.Name = "btnRedo";
			this.btnRedo.Size = new System.Drawing.Size(103, 22);
			this.btnRedo.Text = "Redo";
			// 
			// helpToolStripMenuItem
			// 
			this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.btnAbout});
			this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
			this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
			this.helpToolStripMenuItem.Text = "Help";
			// 
			// btnAbout
			// 
			this.btnAbout.Name = "btnAbout";
			this.btnAbout.Size = new System.Drawing.Size(107, 22);
			this.btnAbout.Text = "About";
			// 
			// openFileDialog
			// 
			this.openFileDialog.FilterIndex = 0;
			// 
			// saveFileDialog
			// 
			this.saveFileDialog.FilterIndex = 0;
			// 
			// textEditor
			// 
			this.textEditor.ActiveView = Storm.TextEditor.Editor.ActiveView.BottomRight;
			this.textEditor.AutomaticLanguageDetection = true;
			this.textEditor.BracketBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(219)))), ((int)(((byte)(224)))), ((int)(((byte)(204)))));
			this.textEditor.BracketBold = false;
			this.textEditor.BracketBorderColor = System.Drawing.Color.Transparent;
			this.textEditor.BracketItalic = false;
			this.textEditor.BracketStrikethrough = false;
			this.textEditor.BracketUnderline = false;
			this.textEditor.BreakpointBackColor = System.Drawing.Color.DarkRed;
			this.textEditor.BreakpointForeColor = System.Drawing.Color.White;
			this.textEditor.CollapsedBackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(226)))), ((int)(((byte)(226)))));
			this.textEditor.CopyAsRTF = false;
			this.textEditor.CurrentLanguage = Storm.TextEditor.Languages.XmlLanguage.None;
			this.textEditor.Dock = System.Windows.Forms.DockStyle.Fill;
			this.textEditor.EOLMarkerColor = System.Drawing.Color.ForestGreen;
			this.textEditor.ExpansionBackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(238)))), ((int)(((byte)(244)))));
			this.textEditor.ExpansionSymbolColor = System.Drawing.Color.FromArgb(((int)(((byte)(85)))), ((int)(((byte)(85)))), ((int)(((byte)(85)))));
			this.textEditor.FileName = "";
			this.textEditor.FontName = "Consolas";
			this.textEditor.GutterMarginColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
			this.textEditor.GutterMarginWidth = 15;
			this.textEditor.HighlightActiveLine = false;
			this.textEditor.HighlightedLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(236)))), ((int)(((byte)(242)))));
			this.textEditor.InactiveSelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(235)))), ((int)(((byte)(241)))));
			this.textEditor.InactiveSelectionBorderColor = System.Drawing.Color.Transparent;
			this.textEditor.KeepTabs = false;
			this.textEditor.LineNumberBackColor = System.Drawing.SystemColors.Window;
			this.textEditor.LineNumberBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(145)))), ((int)(((byte)(175)))));
			this.textEditor.LineNumberForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(145)))), ((int)(((byte)(175)))));
			this.textEditor.Location = new System.Drawing.Point(0, 24);
			this.textEditor.LockCursorUpdate = false;
			this.textEditor.Name = "textEditor";
			this.textEditor.ParseOnPaste = false;
			this.textEditor.RowHoverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(247)))), ((int)(((byte)(250)))));
			this.textEditor.RowPadding = 0;
			this.textEditor.Saved = false;
			this.textEditor.ScopeBackColor = System.Drawing.Color.Transparent;
			this.textEditor.ScopeIndicatorColor = System.Drawing.Color.Transparent;
			this.textEditor.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(173)))), ((int)(((byte)(214)))), ((int)(((byte)(255)))));
			this.textEditor.SelectionBorderColor = System.Drawing.Color.Transparent;
			this.textEditor.ShowEOLMarker = false;
			this.textEditor.ShowGutterMargin = true;
			this.textEditor.ShowLineNumbers = true;
			this.textEditor.ShowScopeIndicator = true;
			this.textEditor.ShowWhitespace = false;
			this.textEditor.Size = new System.Drawing.Size(784, 445);
			this.textEditor.SmoothScroll = false;
			this.textEditor.SplitView = true;
			this.textEditor.SplitViewHorizontalEdgeDistance = -4;
			this.textEditor.SplitViewVerticalEdgeDistance = -4;
			this.textEditor.TabGuideColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(233)))), ((int)(((byte)(233)))));
			this.textEditor.TabIndex = 2;
			this.textEditor.TabSpaces = 4;
			this.textEditor.UseDottedMarginBorder = false;
			this.textEditor.WhitespaceColor = System.Drawing.SystemColors.ControlDark;
			// 
			// codePrintDocument
			// 
			this.codePrintDocument.Document = null;
			// 
			// imageList1
			// 
			this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
			this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
			this.imageList1.Images.SetKeyName(0, "VSObject_Field.bmp");
			// 
			// MainForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(784, 469);
			this.Controls.Add(this.textEditor);
			this.Controls.Add(this.menuStrip);
			this.MainMenuStrip = this.menuStrip;
			this.Name = "MainForm";
			this.Text = "The Little Text Editor";
			this.menuStrip.ResumeLayout(false);
			this.menuStrip.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}

		#endregion

		private Storm.TextEditor.Editor.Printing.CodePrintDocument codePrintDocument;
		private System.Windows.Forms.MenuStrip menuStrip;
		private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem newToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem saveAsToolStripMenuItem;
		private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
		private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem btnCut;
		private System.Windows.Forms.ToolStripMenuItem btnCopy;
		private System.Windows.Forms.ToolStripMenuItem btnPaste;
		private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
		private System.Windows.Forms.ToolStripMenuItem btnUndo;
		private System.Windows.Forms.ToolStripMenuItem btnRedo;
		private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem btnAbout;
		private System.Windows.Forms.OpenFileDialog openFileDialog;
		private System.Windows.Forms.SaveFileDialog saveFileDialog;
		private TextEditor textEditor;
		private System.Windows.Forms.ImageList imageList1;



	}
}

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