namespace Level9 { partial class TextForm { /// /// Designer variable used to keep track of non-visual components. /// private System.ComponentModel.IContainer components = null; /// /// Disposes resources used by the form. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing) { if (components != null) { components.Dispose(); } } base.Dispose(disposing); } /// /// This method is required for Windows Forms designer support. /// Do not change the method contents inside the source code editor. The Forms designer might /// not be able to load this method if it was changed manually. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TextForm)); this.buttonPrevious = new System.Windows.Forms.Button(); this.buttonNext = new System.Windows.Forms.Button(); this.textBoxFind = new System.Windows.Forms.TextBox(); this.labelFind = new System.Windows.Forms.Label(); this.textBox = new System.Windows.Forms.RichTextBox(); this.panelSearch = new System.Windows.Forms.Panel(); this.panelTop = new System.Windows.Forms.Panel(); this.menuStrip = new System.Windows.Forms.MenuStrip(); this.MenuItemFile = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemSave = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemCopy = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemClose = new System.Windows.Forms.ToolStripMenuItem(); this.panelSearch.SuspendLayout(); this.panelTop.SuspendLayout(); this.menuStrip.SuspendLayout(); this.SuspendLayout(); // // buttonPrevious // this.buttonPrevious.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.buttonPrevious.FlatAppearance.BorderSize = 0; this.buttonPrevious.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonPrevious.ImageAlign = System.Drawing.ContentAlignment.TopLeft; this.buttonPrevious.Location = new System.Drawing.Point(231, 1); this.buttonPrevious.Margin = new System.Windows.Forms.Padding(0); this.buttonPrevious.Name = "buttonPrevious"; this.buttonPrevious.Size = new System.Drawing.Size(96, 25); this.buttonPrevious.TabIndex = 4; this.buttonPrevious.Text = "Find previous"; this.buttonPrevious.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.buttonPrevious.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.buttonPrevious.Click += new System.EventHandler(this.ButtonPreviousClick); // // buttonNext // this.buttonNext.AutoSize = true; this.buttonNext.FlatAppearance.BorderSize = 0; this.buttonNext.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonNext.ImageAlign = System.Drawing.ContentAlignment.TopLeft; this.buttonNext.Location = new System.Drawing.Point(152, 1); this.buttonNext.Name = "buttonNext"; this.buttonNext.Size = new System.Drawing.Size(76, 25); this.buttonNext.TabIndex = 3; this.buttonNext.Text = "Find next"; this.buttonNext.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.buttonNext.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.buttonNext.Click += new System.EventHandler(this.ButtonNextClick); // // textBoxFind // this.textBoxFind.Location = new System.Drawing.Point(37, 4); this.textBoxFind.Name = "textBoxFind"; this.textBoxFind.Size = new System.Drawing.Size(109, 20); this.textBoxFind.TabIndex = 2; this.textBoxFind.TextChanged += new System.EventHandler(this.TextBoxFindTextChanged); // // labelFind // this.labelFind.Location = new System.Drawing.Point(3, 7); this.labelFind.Name = "labelFind"; this.labelFind.Size = new System.Drawing.Size(28, 12); this.labelFind.TabIndex = 1; this.labelFind.Text = "Find"; // // textBox // this.textBox.BackColor = System.Drawing.SystemColors.Window; this.textBox.Dock = System.Windows.Forms.DockStyle.Fill; this.textBox.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.textBox.HideSelection = false; this.textBox.Location = new System.Drawing.Point(0, 28); this.textBox.Name = "textBox"; this.textBox.ReadOnly = true; this.textBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical; this.textBox.Size = new System.Drawing.Size(592, 385); this.textBox.TabIndex = 9; this.textBox.Text = ""; // // panelSearch // this.panelSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.panelSearch.Controls.Add(this.labelFind); this.panelSearch.Controls.Add(this.textBoxFind); this.panelSearch.Controls.Add(this.buttonNext); this.panelSearch.Controls.Add(this.buttonPrevious); this.panelSearch.Location = new System.Drawing.Point(252, 0); this.panelSearch.Name = "panelSearch"; this.panelSearch.Size = new System.Drawing.Size(340, 28); this.panelSearch.TabIndex = 13; // // panelTop // this.panelTop.Controls.Add(this.panelSearch); this.panelTop.Controls.Add(this.menuStrip); this.panelTop.Dock = System.Windows.Forms.DockStyle.Top; this.panelTop.Location = new System.Drawing.Point(0, 0); this.panelTop.Name = "panelTop"; this.panelTop.Size = new System.Drawing.Size(592, 28); this.panelTop.TabIndex = 14; // // menuStrip // this.menuStrip.AutoSize = false; this.menuStrip.BackColor = System.Drawing.SystemColors.Control; this.menuStrip.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.menuStrip.Dock = System.Windows.Forms.DockStyle.None; this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.MenuItemFile}); this.menuStrip.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow; this.menuStrip.Location = new System.Drawing.Point(0, 0); this.menuStrip.Name = "menuStrip"; this.menuStrip.Padding = new System.Windows.Forms.Padding(2, 2, 0, 2); this.menuStrip.Size = new System.Drawing.Size(220, 28); this.menuStrip.TabIndex = 14; // // MenuItemFile // this.MenuItemFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuItemSave, this.menuItemCopy, this.menuItemClose}); this.MenuItemFile.Name = "MenuItemFile"; this.MenuItemFile.Size = new System.Drawing.Size(35, 24); this.MenuItemFile.Text = "File"; // // menuItemSave // this.menuItemSave.Name = "menuItemSave"; this.menuItemSave.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); this.menuItemSave.Size = new System.Drawing.Size(173, 22); this.menuItemSave.Text = "Save as..."; this.menuItemSave.Click += new System.EventHandler(this.MenuItemSaveClick); // // menuItemCopy // this.menuItemCopy.Name = "menuItemCopy"; this.menuItemCopy.Size = new System.Drawing.Size(173, 22); this.menuItemCopy.Text = "Copy to clipboard"; this.menuItemCopy.Click += new System.EventHandler(this.MenuItemCopyClick); // // menuItemClose // this.menuItemClose.Name = "menuItemClose"; this.menuItemClose.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4))); this.menuItemClose.Size = new System.Drawing.Size(173, 22); this.menuItemClose.Text = "Close"; this.menuItemClose.Click += new System.EventHandler(this.MenuItemCloseClick); // // TextForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(592, 413); this.Controls.Add(this.textBox); this.Controls.Add(this.panelTop); this.DoubleBuffered = true; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.KeyPreview = true; this.MinimizeBox = false; this.Name = "TextForm"; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TextFormFormClosing); this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TextFormKeyDown); this.panelSearch.ResumeLayout(false); this.panelSearch.PerformLayout(); this.panelTop.ResumeLayout(false); this.menuStrip.ResumeLayout(false); this.menuStrip.PerformLayout(); this.ResumeLayout(false); } private System.Windows.Forms.Panel panelTop; private System.Windows.Forms.Panel panelSearch; private System.Windows.Forms.ToolStripMenuItem menuItemCopy; private System.Windows.Forms.ToolStripMenuItem menuItemClose; private System.Windows.Forms.ToolStripMenuItem menuItemSave; private System.Windows.Forms.ToolStripMenuItem MenuItemFile; private System.Windows.Forms.MenuStrip menuStrip; private System.Windows.Forms.RichTextBox textBox; private System.Windows.Forms.Label labelFind; private System.Windows.Forms.TextBox textBoxFind; private System.Windows.Forms.Button buttonNext; private System.Windows.Forms.Button buttonPrevious; } }