namespace Salamax { partial class Main { /// /// 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(Main)); this.mnuMain = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.btnConnectWiiRemote = new System.Windows.Forms.ToolStripMenuItem(); this.btnDisconnectWiiRemote = new System.Windows.Forms.ToolStripMenuItem(); this.mniExit = new System.Windows.Forms.ToolStripMenuItem(); this.logToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.mniShowHideLog = new System.Windows.Forms.ToolStripMenuItem(); this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.mniAbout = new System.Windows.Forms.ToolStripMenuItem(); this.lblSilverlinkStatus = new System.Windows.Forms.Label(); this.lblControllerStatus = new System.Windows.Forms.Label(); this.grpButtons = new System.Windows.Forms.GroupBox(); this.chkBack = new System.Windows.Forms.CheckBox(); this.chkRB = new System.Windows.Forms.CheckBox(); this.chkLB = new System.Windows.Forms.CheckBox(); this.chkRT = new System.Windows.Forms.CheckBox(); this.chkLT = new System.Windows.Forms.CheckBox(); this.chkStart = new System.Windows.Forms.CheckBox(); this.chkGuide = new System.Windows.Forms.CheckBox(); this.chkLeft = new System.Windows.Forms.CheckBox(); this.chkRight = new System.Windows.Forms.CheckBox(); this.chkDown = new System.Windows.Forms.CheckBox(); this.chkUp = new System.Windows.Forms.CheckBox(); this.chkB = new System.Windows.Forms.CheckBox(); this.chkX = new System.Windows.Forms.CheckBox(); this.chkY = new System.Windows.Forms.CheckBox(); this.chkA = new System.Windows.Forms.CheckBox(); this.grpScript = new System.Windows.Forms.GroupBox(); this.btnExecute = new System.Windows.Forms.Button(); this.lblScriptFileName = new System.Windows.Forms.Label(); this.textBox1 = new System.Windows.Forms.TextBox(); this.btnBrowse = new System.Windows.Forms.Button(); this.grpDeviceStatus = new System.Windows.Forms.GroupBox(); this.mniKeyboardControl = new System.Windows.Forms.ToolStripMenuItem(); this.mniEnableKeyboardControl = new System.Windows.Forms.ToolStripMenuItem(); this.mniDisableKeyboardControl = new System.Windows.Forms.ToolStripMenuItem(); this.mnuMain.SuspendLayout(); this.grpButtons.SuspendLayout(); this.grpScript.SuspendLayout(); this.grpDeviceStatus.SuspendLayout(); this.SuspendLayout(); // // mnuMain // this.mnuMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.logToolStripMenuItem, this.helpToolStripMenuItem}); this.mnuMain.Location = new System.Drawing.Point(0, 0); this.mnuMain.Name = "mnuMain"; this.mnuMain.Size = new System.Drawing.Size(520, 24); this.mnuMain.TabIndex = 0; this.mnuMain.Text = "mnuMain"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mniKeyboardControl, this.btnConnectWiiRemote, this.btnDisconnectWiiRemote, this.mniExit}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20); this.fileToolStripMenuItem.Text = "File"; // // btnConnectWiiRemote // this.btnConnectWiiRemote.Name = "btnConnectWiiRemote"; this.btnConnectWiiRemote.Size = new System.Drawing.Size(183, 22); this.btnConnectWiiRemote.Text = "Connect Wii Remote"; this.btnConnectWiiRemote.Click += new System.EventHandler(this.btnConnectWiiRemote_Click); // // btnDisconnectWiiRemote // this.btnDisconnectWiiRemote.Name = "btnDisconnectWiiRemote"; this.btnDisconnectWiiRemote.Size = new System.Drawing.Size(183, 22); this.btnDisconnectWiiRemote.Text = "Disconnect Wii Remote"; this.btnDisconnectWiiRemote.Click += new System.EventHandler(this.btnDisconnectWiiRemote_Click); // // mniExit // this.mniExit.Name = "mniExit"; this.mniExit.Size = new System.Drawing.Size(183, 22); this.mniExit.Text = "Exit"; this.mniExit.Click += new System.EventHandler(this.mniExit_Click); // // logToolStripMenuItem // this.logToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mniShowHideLog}); this.logToolStripMenuItem.Name = "logToolStripMenuItem"; this.logToolStripMenuItem.Size = new System.Drawing.Size(36, 20); this.logToolStripMenuItem.Text = "Log"; // // mniShowHideLog // this.mniShowHideLog.Name = "mniShowHideLog"; this.mniShowHideLog.Size = new System.Drawing.Size(125, 22); this.mniShowHideLog.Text = "Show/Hide"; this.mniShowHideLog.Click += new System.EventHandler(this.mniShowHideLog_Click); // // helpToolStripMenuItem // this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mniAbout}); this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; this.helpToolStripMenuItem.Size = new System.Drawing.Size(40, 20); this.helpToolStripMenuItem.Text = "Help"; // // mniAbout // this.mniAbout.Name = "mniAbout"; this.mniAbout.Size = new System.Drawing.Size(103, 22); this.mniAbout.Text = "About"; this.mniAbout.Click += new System.EventHandler(this.mniAbout_Click); // // lblSilverlinkStatus // this.lblSilverlinkStatus.AutoSize = true; this.lblSilverlinkStatus.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblSilverlinkStatus.Location = new System.Drawing.Point(246, 17); this.lblSilverlinkStatus.Name = "lblSilverlinkStatus"; this.lblSilverlinkStatus.Size = new System.Drawing.Size(28, 13); this.lblSilverlinkStatus.TabIndex = 4; this.lblSilverlinkStatus.Text = "N/A"; // // lblControllerStatus // this.lblControllerStatus.AutoSize = true; this.lblControllerStatus.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblControllerStatus.Location = new System.Drawing.Point(246, 40); this.lblControllerStatus.Name = "lblControllerStatus"; this.lblControllerStatus.Size = new System.Drawing.Size(28, 13); this.lblControllerStatus.TabIndex = 5; this.lblControllerStatus.Text = "N/A"; // // grpButtons // this.grpButtons.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.grpButtons.Controls.Add(this.chkBack); this.grpButtons.Controls.Add(this.chkRB); this.grpButtons.Controls.Add(this.chkLB); this.grpButtons.Controls.Add(this.chkRT); this.grpButtons.Controls.Add(this.chkLT); this.grpButtons.Controls.Add(this.chkStart); this.grpButtons.Controls.Add(this.chkGuide); this.grpButtons.Controls.Add(this.chkLeft); this.grpButtons.Controls.Add(this.chkRight); this.grpButtons.Controls.Add(this.chkDown); this.grpButtons.Controls.Add(this.chkUp); this.grpButtons.Controls.Add(this.chkB); this.grpButtons.Controls.Add(this.chkX); this.grpButtons.Controls.Add(this.chkY); this.grpButtons.Controls.Add(this.chkA); this.grpButtons.Location = new System.Drawing.Point(0, 102); this.grpButtons.Name = "grpButtons"; this.grpButtons.Size = new System.Drawing.Size(520, 97); this.grpButtons.TabIndex = 7; this.grpButtons.TabStop = false; this.grpButtons.Text = "Keys / Buttons"; // // chkBack // this.chkBack.Appearance = System.Windows.Forms.Appearance.Button; this.chkBack.Location = new System.Drawing.Point(255, 20); this.chkBack.Name = "chkBack"; this.chkBack.Size = new System.Drawing.Size(50, 23); this.chkBack.TabIndex = 14; this.chkBack.Text = "Back"; this.chkBack.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.chkBack.UseVisualStyleBackColor = true; this.chkBack.CheckedChanged += new System.EventHandler(this.chkBack_CheckedChanged); // // chkRB // this.chkRB.Appearance = System.Windows.Forms.Appearance.Button; this.chkRB.Location = new System.Drawing.Point(199, 68); this.chkRB.Name = "chkRB"; this.chkRB.Size = new System.Drawing.Size(50, 23); this.chkRB.TabIndex = 13; this.chkRB.Text = "RB"; this.chkRB.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.chkRB.UseVisualStyleBackColor = true; this.chkRB.CheckedChanged += new System.EventHandler(this.chkRB_CheckedChanged); // // chkLB // this.chkLB.Appearance = System.Windows.Forms.Appearance.Button; this.chkLB.Location = new System.Drawing.Point(143, 68); this.chkLB.Name = "chkLB"; this.chkLB.Size = new System.Drawing.Size(50, 23); this.chkLB.TabIndex = 12; this.chkLB.Text = "LB"; this.chkLB.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.chkLB.UseVisualStyleBackColor = true; this.chkLB.CheckedChanged += new System.EventHandler(this.chkLB_CheckedChanged); // // chkRT // this.chkRT.Appearance = System.Windows.Forms.Appearance.Button; this.chkRT.Location = new System.Drawing.Point(199, 44); this.chkRT.Name = "chkRT"; this.chkRT.Size = new System.Drawing.Size(50, 23); this.chkRT.TabIndex = 11; this.chkRT.Text = "RT"; this.chkRT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.chkRT.UseVisualStyleBackColor = true; this.chkRT.CheckedChanged += new System.EventHandler(this.chkRT_CheckedChanged); // // chkLT // this.chkLT.Appearance = System.Windows.Forms.Appearance.Button; this.chkLT.Location = new System.Drawing.Point(143, 44); this.chkLT.Name = "chkLT"; this.chkLT.Size = new System.Drawing.Size(50, 23); this.chkLT.TabIndex = 10; this.chkLT.Text = "LT"; this.chkLT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.chkLT.UseVisualStyleBackColor = true; this.chkLT.CheckedChanged += new System.EventHandler(this.chkLT_CheckedChanged); // // chkStart // this.chkStart.Appearance = System.Windows.Forms.Appearance.Button; this.chkStart.Location = new System.Drawing.Point(199, 20); this.chkStart.Name = "chkStart"; this.chkStart.Size = new System.Drawing.Size(50, 23); this.chkStart.TabIndex = 9; this.chkStart.Text = "Start"; this.chkStart.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.chkStart.UseVisualStyleBackColor = true; // // chkGuide // this.chkGuide.Appearance = System.Windows.Forms.Appearance.Button; this.chkGuide.Location = new System.Drawing.Point(143, 20); this.chkGuide.Name = "chkGuide"; this.chkGuide.Size = new System.Drawing.Size(50, 23); this.chkGuide.TabIndex = 8; this.chkGuide.Text = "Guide"; this.chkGuide.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.chkGuide.UseVisualStyleBackColor = true; this.chkGuide.CheckedChanged += new System.EventHandler(this.chkGuide_CheckedChanged); // // chkLeft // this.chkLeft.Appearance = System.Windows.Forms.Appearance.Button; this.chkLeft.Location = new System.Drawing.Point(18, 45); this.chkLeft.Name = "chkLeft"; this.chkLeft.Size = new System.Drawing.Size(50, 23); this.chkLeft.TabIndex = 7; this.chkLeft.Text = "Left"; this.chkLeft.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.chkLeft.UseVisualStyleBackColor = true; this.chkLeft.CheckedChanged += new System.EventHandler(this.chkLeft_CheckedChanged); // // chkRight // this.chkRight.Appearance = System.Windows.Forms.Appearance.Button; this.chkRight.Location = new System.Drawing.Point(68, 45); this.chkRight.Name = "chkRight"; this.chkRight.Size = new System.Drawing.Size(50, 23); this.chkRight.TabIndex = 6; this.chkRight.Text = "Right"; this.chkRight.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.chkRight.UseVisualStyleBackColor = true; this.chkRight.CheckedChanged += new System.EventHandler(this.chkRight_CheckedChanged); // // chkDown // this.chkDown.Appearance = System.Windows.Forms.Appearance.Button; this.chkDown.Location = new System.Drawing.Point(43, 68); this.chkDown.Name = "chkDown"; this.chkDown.Size = new System.Drawing.Size(50, 23); this.chkDown.TabIndex = 5; this.chkDown.Text = "Down"; this.chkDown.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.chkDown.UseVisualStyleBackColor = true; this.chkDown.CheckedChanged += new System.EventHandler(this.chkDown_CheckedChanged); // // chkUp // this.chkUp.Appearance = System.Windows.Forms.Appearance.Button; this.chkUp.Location = new System.Drawing.Point(43, 20); this.chkUp.Name = "chkUp"; this.chkUp.Size = new System.Drawing.Size(50, 23); this.chkUp.TabIndex = 4; this.chkUp.Text = "Up"; this.chkUp.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.chkUp.UseVisualStyleBackColor = true; this.chkUp.CheckedChanged += new System.EventHandler(this.chkUp_CheckedChanged); // // chkB // this.chkB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.chkB.Appearance = System.Windows.Forms.Appearance.Button; this.chkB.AutoSize = true; this.chkB.Location = new System.Drawing.Point(425, 20); this.chkB.Name = "chkB"; this.chkB.Size = new System.Drawing.Size(23, 23); this.chkB.TabIndex = 3; this.chkB.Text = "B"; this.chkB.UseVisualStyleBackColor = true; this.chkB.CheckedChanged += new System.EventHandler(this.chkB_CheckedChanged); // // chkX // this.chkX.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.chkX.Appearance = System.Windows.Forms.Appearance.Button; this.chkX.AutoSize = true; this.chkX.Location = new System.Drawing.Point(454, 20); this.chkX.Name = "chkX"; this.chkX.Size = new System.Drawing.Size(23, 23); this.chkX.TabIndex = 2; this.chkX.Text = "X"; this.chkX.UseVisualStyleBackColor = true; this.chkX.CheckedChanged += new System.EventHandler(this.chkX_CheckedChanged); // // chkY // this.chkY.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.chkY.Appearance = System.Windows.Forms.Appearance.Button; this.chkY.AutoSize = true; this.chkY.Location = new System.Drawing.Point(483, 20); this.chkY.Name = "chkY"; this.chkY.Size = new System.Drawing.Size(23, 23); this.chkY.TabIndex = 1; this.chkY.Text = "Y"; this.chkY.UseVisualStyleBackColor = true; this.chkY.CheckedChanged += new System.EventHandler(this.chkY_CheckedChanged); // // chkA // this.chkA.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.chkA.Appearance = System.Windows.Forms.Appearance.Button; this.chkA.AutoSize = true; this.chkA.Location = new System.Drawing.Point(395, 20); this.chkA.Name = "chkA"; this.chkA.Size = new System.Drawing.Size(24, 23); this.chkA.TabIndex = 0; this.chkA.Text = "A"; this.chkA.UseVisualStyleBackColor = true; this.chkA.CheckedChanged += new System.EventHandler(this.chkA_CheckedChanged); // // grpScript // this.grpScript.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.grpScript.Controls.Add(this.btnExecute); this.grpScript.Controls.Add(this.lblScriptFileName); this.grpScript.Controls.Add(this.textBox1); this.grpScript.Controls.Add(this.btnBrowse); this.grpScript.Location = new System.Drawing.Point(0, 205); this.grpScript.Name = "grpScript"; this.grpScript.Size = new System.Drawing.Size(520, 51); this.grpScript.TabIndex = 8; this.grpScript.TabStop = false; this.grpScript.Text = "Execute Key/Button Script"; // // btnExecute // this.btnExecute.Enabled = false; this.btnExecute.Location = new System.Drawing.Point(435, 19); this.btnExecute.Name = "btnExecute"; this.btnExecute.Size = new System.Drawing.Size(79, 21); this.btnExecute.TabIndex = 3; this.btnExecute.Text = "Execute"; this.btnExecute.UseVisualStyleBackColor = true; // // lblScriptFileName // this.lblScriptFileName.AutoSize = true; this.lblScriptFileName.Location = new System.Drawing.Point(6, 24); this.lblScriptFileName.Name = "lblScriptFileName"; this.lblScriptFileName.Size = new System.Drawing.Size(87, 13); this.lblScriptFileName.TabIndex = 2; this.lblScriptFileName.Text = "Script File Name:"; // // textBox1 // this.textBox1.Location = new System.Drawing.Point(99, 20); this.textBox1.Name = "textBox1"; this.textBox1.ReadOnly = true; this.textBox1.Size = new System.Drawing.Size(290, 21); this.textBox1.TabIndex = 1; // // btnBrowse // this.btnBrowse.Enabled = false; this.btnBrowse.Location = new System.Drawing.Point(395, 19); this.btnBrowse.Name = "btnBrowse"; this.btnBrowse.Size = new System.Drawing.Size(34, 21); this.btnBrowse.TabIndex = 0; this.btnBrowse.Text = "..."; this.btnBrowse.UseVisualStyleBackColor = true; // // grpDeviceStatus // this.grpDeviceStatus.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.grpDeviceStatus.Controls.Add(this.lblSilverlinkStatus); this.grpDeviceStatus.Controls.Add(this.lblControllerStatus); this.grpDeviceStatus.Location = new System.Drawing.Point(0, 27); this.grpDeviceStatus.Name = "grpDeviceStatus"; this.grpDeviceStatus.Size = new System.Drawing.Size(520, 69); this.grpDeviceStatus.TabIndex = 9; this.grpDeviceStatus.TabStop = false; this.grpDeviceStatus.Text = "Device Statuses"; // // mniKeyboardControl // this.mniKeyboardControl.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mniEnableKeyboardControl, this.mniDisableKeyboardControl}); this.mniKeyboardControl.Name = "mniKeyboardControl"; this.mniKeyboardControl.Size = new System.Drawing.Size(183, 22); this.mniKeyboardControl.Text = "Keyboard Control"; // // mniEnableKeyboardControl // this.mniEnableKeyboardControl.Name = "mniEnableKeyboardControl"; this.mniEnableKeyboardControl.Size = new System.Drawing.Size(152, 22); this.mniEnableKeyboardControl.Text = "Enable"; this.mniEnableKeyboardControl.Click += new System.EventHandler(this.mniEnableKeyboardControl_Click); // // mniDisableKeyboardControl // this.mniDisableKeyboardControl.Name = "mniDisableKeyboardControl"; this.mniDisableKeyboardControl.Size = new System.Drawing.Size(152, 22); this.mniDisableKeyboardControl.Text = "Disable"; this.mniDisableKeyboardControl.Click += new System.EventHandler(this.mniDisableKeyboardControl_Click); // // Main // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.ClientSize = new System.Drawing.Size(520, 259); this.Controls.Add(this.grpDeviceStatus); this.Controls.Add(this.grpScript); this.Controls.Add(this.grpButtons); this.Controls.Add(this.mnuMain); this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MainMenuStrip = this.mnuMain; this.Name = "Main"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Salamax"; this.Load += new System.EventHandler(this.Main_Load); this.mnuMain.ResumeLayout(false); this.mnuMain.PerformLayout(); this.grpButtons.ResumeLayout(false); this.grpButtons.PerformLayout(); this.grpScript.ResumeLayout(false); this.grpScript.PerformLayout(); this.grpDeviceStatus.ResumeLayout(false); this.grpDeviceStatus.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.MenuStrip mnuMain; private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem mniExit; private System.Windows.Forms.ToolStripMenuItem logToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem mniShowHideLog; private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem mniAbout; private System.Windows.Forms.Label lblSilverlinkStatus; private System.Windows.Forms.Label lblControllerStatus; private System.Windows.Forms.GroupBox grpButtons; private System.Windows.Forms.GroupBox grpScript; private System.Windows.Forms.Label lblScriptFileName; private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.Button btnBrowse; private System.Windows.Forms.GroupBox grpDeviceStatus; private System.Windows.Forms.Button btnExecute; private System.Windows.Forms.ToolStripMenuItem btnConnectWiiRemote; private System.Windows.Forms.ToolStripMenuItem btnDisconnectWiiRemote; private System.Windows.Forms.CheckBox chkX; private System.Windows.Forms.CheckBox chkY; private System.Windows.Forms.CheckBox chkA; private System.Windows.Forms.CheckBox chkLeft; private System.Windows.Forms.CheckBox chkRight; private System.Windows.Forms.CheckBox chkDown; private System.Windows.Forms.CheckBox chkUp; private System.Windows.Forms.CheckBox chkB; private System.Windows.Forms.CheckBox chkStart; private System.Windows.Forms.CheckBox chkGuide; private System.Windows.Forms.CheckBox chkRB; private System.Windows.Forms.CheckBox chkLB; private System.Windows.Forms.CheckBox chkRT; private System.Windows.Forms.CheckBox chkLT; private System.Windows.Forms.CheckBox chkBack; private System.Windows.Forms.ToolStripMenuItem mniKeyboardControl; private System.Windows.Forms.ToolStripMenuItem mniEnableKeyboardControl; private System.Windows.Forms.ToolStripMenuItem mniDisableKeyboardControl; } }