KeyWatch/KeyWatch++/Form1.Designer.cs

170 lines
8.2 KiB
C#

namespace KeyWatch__
{
partial class Form1
{
/// <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() {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.check_Numlock = new System.Windows.Forms.CheckBox();
this.check_Capslock = new System.Windows.Forms.CheckBox();
this.check_Scrolllock = new System.Windows.Forms.CheckBox();
this.comboBox_numlock = new System.Windows.Forms.ComboBox();
this.comboBox_capslock = new System.Windows.Forms.ComboBox();
this.comboBox_scrolllock = new System.Windows.Forms.ComboBox();
this.groupBox_check = new System.Windows.Forms.GroupBox();
this.groupBox_combo = new System.Windows.Forms.GroupBox();
this.groupBox_check.SuspendLayout();
this.groupBox_combo.SuspendLayout();
this.SuspendLayout();
//
// check_Numlock
//
this.check_Numlock.AutoSize = true;
this.check_Numlock.Location = new System.Drawing.Point(28, 30);
this.check_Numlock.Name = "check_Numlock";
this.check_Numlock.Size = new System.Drawing.Size(68, 17);
this.check_Numlock.TabIndex = 0;
this.check_Numlock.Text = "Numlock";
this.check_Numlock.UseVisualStyleBackColor = true;
this.check_Numlock.CheckedChanged += new System.EventHandler(this.check_Numlock_CheckedChanged);
//
// check_Capslock
//
this.check_Capslock.AutoSize = true;
this.check_Capslock.Location = new System.Drawing.Point(28, 60);
this.check_Capslock.Name = "check_Capslock";
this.check_Capslock.Size = new System.Drawing.Size(70, 17);
this.check_Capslock.TabIndex = 1;
this.check_Capslock.Text = "Capslock";
this.check_Capslock.UseVisualStyleBackColor = true;
this.check_Capslock.CheckedChanged += new System.EventHandler(this.check_Capslock_CheckedChanged);
//
// check_Scrolllock
//
this.check_Scrolllock.AutoSize = true;
this.check_Scrolllock.Location = new System.Drawing.Point(28, 90);
this.check_Scrolllock.Name = "check_Scrolllock";
this.check_Scrolllock.Size = new System.Drawing.Size(72, 17);
this.check_Scrolllock.TabIndex = 2;
this.check_Scrolllock.Text = "Scrolllock";
this.check_Scrolllock.UseVisualStyleBackColor = true;
this.check_Scrolllock.CheckedChanged += new System.EventHandler(this.check_Scrolllock_CheckedChanged);
//
// comboBox_numlock
//
this.comboBox_numlock.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox_numlock.FormattingEnabled = true;
this.comboBox_numlock.Items.AddRange(new object[] {
"Enabled",
"Disabled"});
this.comboBox_numlock.Location = new System.Drawing.Point(26, 26);
this.comboBox_numlock.Name = "comboBox_numlock";
this.comboBox_numlock.Size = new System.Drawing.Size(121, 21);
this.comboBox_numlock.TabIndex = 4;
this.comboBox_numlock.SelectedIndexChanged += new System.EventHandler(this.comboBox_numlock_SelectedIndexChanged);
//
// comboBox_capslock
//
this.comboBox_capslock.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox_capslock.FormattingEnabled = true;
this.comboBox_capslock.Items.AddRange(new object[] {
"Enabled",
"Disabled"});
this.comboBox_capslock.Location = new System.Drawing.Point(26, 56);
this.comboBox_capslock.Name = "comboBox_capslock";
this.comboBox_capslock.Size = new System.Drawing.Size(121, 21);
this.comboBox_capslock.TabIndex = 5;
this.comboBox_capslock.SelectedIndexChanged += new System.EventHandler(this.comboBox_capslock_SelectedIndexChanged);
//
// comboBox_scrolllock
//
this.comboBox_scrolllock.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox_scrolllock.FormattingEnabled = true;
this.comboBox_scrolllock.Items.AddRange(new object[] {
"Enabled",
"Disabled"});
this.comboBox_scrolllock.Location = new System.Drawing.Point(26, 86);
this.comboBox_scrolllock.Name = "comboBox_scrolllock";
this.comboBox_scrolllock.Size = new System.Drawing.Size(121, 21);
this.comboBox_scrolllock.TabIndex = 6;
this.comboBox_scrolllock.SelectedIndexChanged += new System.EventHandler(this.comboBox_scrolllock_SelectedIndexChanged);
//
// groupBox_check
//
this.groupBox_check.Controls.Add(this.check_Capslock);
this.groupBox_check.Controls.Add(this.check_Numlock);
this.groupBox_check.Controls.Add(this.check_Scrolllock);
this.groupBox_check.Location = new System.Drawing.Point(13, 12);
this.groupBox_check.Name = "groupBox_check";
this.groupBox_check.Size = new System.Drawing.Size(134, 126);
this.groupBox_check.TabIndex = 7;
this.groupBox_check.TabStop = false;
this.groupBox_check.Text = "Keys Monitored";
//
// groupBox_combo
//
this.groupBox_combo.Controls.Add(this.comboBox_scrolllock);
this.groupBox_combo.Controls.Add(this.comboBox_capslock);
this.groupBox_combo.Controls.Add(this.comboBox_numlock);
this.groupBox_combo.Location = new System.Drawing.Point(167, 12);
this.groupBox_combo.Name = "groupBox_combo";
this.groupBox_combo.Size = new System.Drawing.Size(170, 126);
this.groupBox_combo.TabIndex = 8;
this.groupBox_combo.TabStop = false;
this.groupBox_combo.Text = "Desired State";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(350, 150);
this.Controls.Add(this.groupBox_check);
this.Controls.Add(this.groupBox_combo);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Form1";
this.Text = "Configuration";
this.groupBox_check.ResumeLayout(false);
this.groupBox_check.PerformLayout();
this.groupBox_combo.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
public System.Windows.Forms.CheckBox check_Numlock;
public System.Windows.Forms.CheckBox check_Capslock;
public System.Windows.Forms.CheckBox check_Scrolllock;
public System.Windows.Forms.ComboBox comboBox_numlock;
public System.Windows.Forms.ComboBox comboBox_capslock;
public System.Windows.Forms.ComboBox comboBox_scrolllock;
private System.Windows.Forms.GroupBox groupBox_check;
private System.Windows.Forms.GroupBox groupBox_combo;
}
}