namespace TestSharpHook { partial class MainWindow { /// /// 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 Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow)); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.startToolStripButton = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); this.clearToolStripButton = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.exitToolStripButton = new System.Windows.Forms.ToolStripButton(); this.statusStrip1 = new System.Windows.Forms.StatusStrip(); this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); this.panel1 = new System.Windows.Forms.Panel(); this.textBox = new System.Windows.Forms.TextBox(); this.toolStrip1.SuspendLayout(); this.statusStrip1.SuspendLayout(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // toolStrip1 // this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.startToolStripButton, this.toolStripSeparator2, this.clearToolStripButton, this.toolStripSeparator1, this.exitToolStripButton}); this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System; this.toolStrip1.Size = new System.Drawing.Size(817, 25); this.toolStrip1.TabIndex = 0; this.toolStrip1.Text = "toolStrip1"; // // startToolStripButton // this.startToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.startToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("startToolStripButton.Image"))); this.startToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.startToolStripButton.Name = "startToolStripButton"; this.startToolStripButton.Size = new System.Drawing.Size(35, 22); this.startToolStripButton.Text = "Start"; this.startToolStripButton.ToolTipText = "Start"; this.startToolStripButton.Click += new System.EventHandler(this.startToolStripButton_Click); // // toolStripSeparator2 // this.toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25); // // clearToolStripButton // this.clearToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.clearToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("clearToolStripButton.Image"))); this.clearToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.clearToolStripButton.Name = "clearToolStripButton"; this.clearToolStripButton.Size = new System.Drawing.Size(36, 22); this.clearToolStripButton.Text = "Clear"; this.clearToolStripButton.Click += new System.EventHandler(this.clearToolStripButton_Click); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25); // // exitToolStripButton // this.exitToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.exitToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("exitToolStripButton.Image"))); this.exitToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.exitToolStripButton.Name = "exitToolStripButton"; this.exitToolStripButton.Size = new System.Drawing.Size(29, 22); this.exitToolStripButton.Text = "Exit"; this.exitToolStripButton.Click += new System.EventHandler(this.exitToolStripButton_Click); // // statusStrip1 // this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusLabel1}); this.statusStrip1.Location = new System.Drawing.Point(0, 673); this.statusStrip1.Name = "statusStrip1"; this.statusStrip1.Size = new System.Drawing.Size(817, 22); this.statusStrip1.TabIndex = 1; this.statusStrip1.Text = "statusStrip1"; // // toolStripStatusLabel1 // this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; this.toolStripStatusLabel1.Size = new System.Drawing.Size(0, 17); // // panel1 // this.panel1.Controls.Add(this.textBox); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(0, 25); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(817, 648); this.panel1.TabIndex = 2; // // textBox // this.textBox.Dock = System.Windows.Forms.DockStyle.Fill; this.textBox.Location = new System.Drawing.Point(0, 0); this.textBox.Multiline = true; this.textBox.Name = "textBox"; this.textBox.ReadOnly = true; this.textBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.textBox.Size = new System.Drawing.Size(817, 648); this.textBox.TabIndex = 0; this.textBox.TextChanged += new System.EventHandler(this.textBox_TextChanged); this.textBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox_KeyDown); this.textBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox_KeyPress); this.textBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBox_KeyUp); // // MainWindow // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(817, 695); this.ControlBox = false; this.Controls.Add(this.panel1); this.Controls.Add(this.statusStrip1); this.Controls.Add(this.toolStrip1); this.KeyPreview = true; this.Name = "MainWindow"; this.Text = "TestSharpHook"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); this.statusStrip1.ResumeLayout(false); this.statusStrip1.PerformLayout(); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ToolStrip toolStrip1; private System.Windows.Forms.ToolStripButton clearToolStripButton; private System.Windows.Forms.StatusStrip statusStrip1; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.TextBox textBox; private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.ToolStripButton exitToolStripButton; private System.Windows.Forms.ToolStripButton startToolStripButton; private System.Windows.Forms.ToolStripSeparator toolStripSeparator2; } }