partial class KeyDemoForm { /// /// 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() { this.charLabel = new System.Windows.Forms.Label(); this.keyInfoLabel = new System.Windows.Forms.Label(); this.SuspendLayout(); // // charLabel // this.charLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.charLabel.Location = new System.Drawing.Point(12, 20); this.charLabel.Name = "charLabel"; this.charLabel.Size = new System.Drawing.Size(168, 20); this.charLabel.TabIndex = 0; this.charLabel.Text = "Just Press"; // // keyInfoLabel // this.keyInfoLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.keyInfoLabel.Location = new System.Drawing.Point(12, 57); this.keyInfoLabel.Name = "keyInfoLabel"; this.keyInfoLabel.Size = new System.Drawing.Size(168, 151); this.keyInfoLabel.TabIndex = 1; this.keyInfoLabel.Text = "A Key..."; // // KeyDemoForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(200, 217); this.Controls.Add(this.keyInfoLabel); this.Controls.Add(this.charLabel); this.Name = "KeyDemoForm"; this.Text = "KeyDemo"; this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.KeyDemoForm_KeyPress); this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.KeyDemoForm_KeyUp); this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.KeyDemoForm_KeyDown); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Label charLabel; private System.Windows.Forms.Label keyInfoLabel; }