Click here to Skip to main content
15,883,705 members
Articles / Desktop Programming / Win32

Mirror keys for multiboxing MMORPG games like WOW/LOTRO

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
7 Mar 2013CPOL5 min read 20.6K   800   3  
Raw input 64-bit .NET classes.
partial class FormMain
{

    /// <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()
    {
        this.components = new System.ComponentModel.Container();
        System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
        this.StatusStrip1 = new System.Windows.Forms.StatusStrip();
        this.ToolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
        this.ToolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
        this.ToolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
        this.TabControlMain = new System.Windows.Forms.TabControl();
        this.tpSettings = new System.Windows.Forms.TabPage();
        this.Panel2 = new System.Windows.Forms.Panel();
        this.SplitContainer1 = new System.Windows.Forms.SplitContainer();
        this.SplitContainer2 = new System.Windows.Forms.SplitContainer();
        this.lbAppNames = new System.Windows.Forms.CheckedListBox();
        this.cmAppNames = new System.Windows.Forms.ContextMenuStrip(this.components);
        this.lbAppTitles = new System.Windows.Forms.CheckedListBox();
        this.cmAppTitles = new System.Windows.Forms.ContextMenuStrip(this.components);
        this.lvPIDS = new System.Windows.Forms.ListView();
        this.chMachine = new System.Windows.Forms.ColumnHeader();
        this.chAppPid = new System.Windows.Forms.ColumnHeader();
        this.chKeyed = new System.Windows.Forms.ColumnHeader();
        this.chKeys = new System.Windows.Forms.ColumnHeader();
        this.chVKey = new System.Windows.Forms.ColumnHeader();
        this.gbAddApp = new System.Windows.Forms.GroupBox();
        this.gbAppName = new System.Windows.Forms.GroupBox();
        this.tbAppName = new System.Windows.Forms.TextBox();
        this.gbAppTitle = new System.Windows.Forms.GroupBox();
        this.tbAppTitle = new System.Windows.Forms.TextBox();
        this.Panel1 = new System.Windows.Forms.Panel();
        this.btnEnabled = new System.Windows.Forms.Button();
        this.ImageListEnable = new System.Windows.Forms.ImageList(this.components);
        this.Panel7 = new System.Windows.Forms.Panel();
        this.Panel6 = new System.Windows.Forms.Panel();
        this.btnRemove = new System.Windows.Forms.Button();
        this.btnAdd = new System.Windows.Forms.Button();
        this.tpKeys = new System.Windows.Forms.TabPage();
        this.SplitContainer3 = new System.Windows.Forms.SplitContainer();
        this.lbKeys = new System.Windows.Forms.ListBox();
        this.Panel3 = new System.Windows.Forms.Panel();
        this.Panel5 = new System.Windows.Forms.Panel();
        this.Panel4 = new System.Windows.Forms.Panel();
        this.tbLog = new System.Windows.Forms.TextBox();
        this.StatusStrip1.SuspendLayout();
        this.TabControlMain.SuspendLayout();
        this.tpSettings.SuspendLayout();
        this.Panel2.SuspendLayout();
        this.SplitContainer1.Panel1.SuspendLayout();
        this.SplitContainer1.Panel2.SuspendLayout();
        this.SplitContainer1.SuspendLayout();
        this.SplitContainer2.Panel1.SuspendLayout();
        this.SplitContainer2.Panel2.SuspendLayout();
        this.SplitContainer2.SuspendLayout();
        this.gbAddApp.SuspendLayout();
        this.gbAppName.SuspendLayout();
        this.gbAppTitle.SuspendLayout();
        this.Panel1.SuspendLayout();
        this.Panel6.SuspendLayout();
        this.tpKeys.SuspendLayout();
        this.SplitContainer3.Panel1.SuspendLayout();
        this.SplitContainer3.Panel2.SuspendLayout();
        this.SplitContainer3.SuspendLayout();
        this.Panel3.SuspendLayout();
        this.SuspendLayout();
        // 
        // StatusStrip1
        // 
        this.StatusStrip1.BackColor = System.Drawing.Color.DarkGreen;
        this.StatusStrip1.Font = new System.Drawing.Font("Courier New", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.StatusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripStatusLabel3});
        this.StatusStrip1.Location = new System.Drawing.Point(0, 411);
        this.StatusStrip1.Name = "StatusStrip1";
        this.StatusStrip1.Size = new System.Drawing.Size(612, 22);
        this.StatusStrip1.TabIndex = 0;
        this.StatusStrip1.Text = "StatusStrip1";
        // 
        // ToolStripStatusLabel3
        // 
        this.ToolStripStatusLabel3.ForeColor = System.Drawing.Color.White;
        this.ToolStripStatusLabel3.Name = "ToolStripStatusLabel3";
        this.ToolStripStatusLabel3.Size = new System.Drawing.Size(0, 17);
        // 
        // ToolStripStatusLabel1
        // 
        this.ToolStripStatusLabel1.Name = "ToolStripStatusLabel1";
        this.ToolStripStatusLabel1.Size = new System.Drawing.Size(0, 17);
        // 
        // ToolStripStatusLabel2
        // 
        this.ToolStripStatusLabel2.Name = "ToolStripStatusLabel2";
        this.ToolStripStatusLabel2.Size = new System.Drawing.Size(0, 17);
        // 
        // TabControlMain
        // 
        this.TabControlMain.Controls.Add(this.tpSettings);
        this.TabControlMain.Controls.Add(this.tpKeys);
        this.TabControlMain.Dock = System.Windows.Forms.DockStyle.Fill;
        this.TabControlMain.Location = new System.Drawing.Point(0, 0);
        this.TabControlMain.Name = "TabControlMain";
        this.TabControlMain.SelectedIndex = 0;
        this.TabControlMain.Size = new System.Drawing.Size(612, 411);
        this.TabControlMain.TabIndex = 1;
        // 
        // tpSettings
        // 
        this.tpSettings.Controls.Add(this.Panel2);
        this.tpSettings.Controls.Add(this.gbAddApp);
        this.tpSettings.Location = new System.Drawing.Point(4, 22);
        this.tpSettings.Name = "tpSettings";
        this.tpSettings.Padding = new System.Windows.Forms.Padding(3);
        this.tpSettings.Size = new System.Drawing.Size(604, 385);
        this.tpSettings.TabIndex = 0;
        this.tpSettings.Text = "Settings";
        this.tpSettings.UseVisualStyleBackColor = true;
        // 
        // Panel2
        // 
        this.Panel2.Controls.Add(this.SplitContainer1);
        this.Panel2.Dock = System.Windows.Forms.DockStyle.Fill;
        this.Panel2.Location = new System.Drawing.Point(3, 124);
        this.Panel2.Name = "Panel2";
        this.Panel2.Size = new System.Drawing.Size(598, 258);
        this.Panel2.TabIndex = 3;
        // 
        // SplitContainer1
        // 
        this.SplitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
        this.SplitContainer1.Location = new System.Drawing.Point(0, 0);
        this.SplitContainer1.Name = "SplitContainer1";
        this.SplitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
        // 
        // SplitContainer1.Panel1
        // 
        this.SplitContainer1.Panel1.Controls.Add(this.SplitContainer2);
        // 
        // SplitContainer1.Panel2
        // 
        this.SplitContainer1.Panel2.Controls.Add(this.lvPIDS);
        this.SplitContainer1.Size = new System.Drawing.Size(598, 258);
        this.SplitContainer1.SplitterDistance = 76;
        this.SplitContainer1.TabIndex = 0;
        // 
        // SplitContainer2
        // 
        this.SplitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
        this.SplitContainer2.Location = new System.Drawing.Point(0, 0);
        this.SplitContainer2.Name = "SplitContainer2";
        // 
        // SplitContainer2.Panel1
        // 
        this.SplitContainer2.Panel1.Controls.Add(this.lbAppNames);
        // 
        // SplitContainer2.Panel2
        // 
        this.SplitContainer2.Panel2.Controls.Add(this.lbAppTitles);
        this.SplitContainer2.Size = new System.Drawing.Size(598, 76);
        this.SplitContainer2.SplitterDistance = 276;
        this.SplitContainer2.TabIndex = 1;
        // 
        // lbAppNames
        // 
        this.lbAppNames.ColumnWidth = 160;
        this.lbAppNames.ContextMenuStrip = this.cmAppNames;
        this.lbAppNames.Dock = System.Windows.Forms.DockStyle.Fill;
        this.lbAppNames.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.lbAppNames.FormattingEnabled = true;
        this.lbAppNames.IntegralHeight = false;
        this.lbAppNames.Items.AddRange(new object[] {
            "Wow",
            "Wow-64"});
        this.lbAppNames.Location = new System.Drawing.Point(0, 0);
        this.lbAppNames.Name = "lbAppNames";
        this.lbAppNames.Size = new System.Drawing.Size(276, 76);
        this.lbAppNames.Sorted = true;
        this.lbAppNames.TabIndex = 1;
        this.lbAppNames.ThreeDCheckBoxes = true;
        this.lbAppNames.SelectedIndexChanged += new System.EventHandler(this.lbApps_SelectedIndexChanged);
        this.lbAppNames.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.lbAppNames_ItemCheck);
        // 
        // cmAppNames
        // 
        this.cmAppNames.Name = "cmAppTitles";
        this.cmAppNames.Size = new System.Drawing.Size(61, 4);
        // 
        // lbAppTitles
        // 
        this.lbAppTitles.ContextMenuStrip = this.cmAppTitles;
        this.lbAppTitles.Dock = System.Windows.Forms.DockStyle.Fill;
        this.lbAppTitles.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.lbAppTitles.FormattingEnabled = true;
        this.lbAppTitles.IntegralHeight = false;
        this.lbAppTitles.Items.AddRange(new object[] {
            "World of Warcraft"});
        this.lbAppTitles.Location = new System.Drawing.Point(0, 0);
        this.lbAppTitles.Name = "lbAppTitles";
        this.lbAppTitles.Size = new System.Drawing.Size(318, 76);
        this.lbAppTitles.Sorted = true;
        this.lbAppTitles.TabIndex = 2;
        this.lbAppTitles.ThreeDCheckBoxes = true;
        this.lbAppTitles.SelectedIndexChanged += new System.EventHandler(this.lbApps_SelectedIndexChanged);
        // 
        // cmAppTitles
        // 
        this.cmAppTitles.Name = "cmAppTitles";
        this.cmAppTitles.Size = new System.Drawing.Size(61, 4);
        // 
        // lvPIDS
        // 
        this.lvPIDS.CheckBoxes = true;
        this.lvPIDS.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.chMachine,
            this.chAppPid,
            this.chKeyed,
            this.chKeys,
            this.chVKey});
        this.lvPIDS.Dock = System.Windows.Forms.DockStyle.Fill;
        this.lvPIDS.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.lvPIDS.FullRowSelect = true;
        this.lvPIDS.GridLines = true;
        this.lvPIDS.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
        this.lvPIDS.Location = new System.Drawing.Point(0, 0);
        this.lvPIDS.MultiSelect = false;
        this.lvPIDS.Name = "lvPIDS";
        this.lvPIDS.Size = new System.Drawing.Size(598, 178);
        this.lvPIDS.TabIndex = 0;
        this.lvPIDS.UseCompatibleStateImageBehavior = false;
        this.lvPIDS.View = System.Windows.Forms.View.Details;
        // 
        // chMachine
        // 
        this.chMachine.Text = "Machine";
        this.chMachine.Width = 340;
        // 
        // chAppPid
        // 
        this.chAppPid.Text = "Pid";
        this.chAppPid.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
        this.chAppPid.Width = 80;
        // 
        // chKeyed
        // 
        this.chKeyed.Text = "Out";
        this.chKeyed.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
        this.chKeyed.Width = 50;
        // 
        // chKeys
        // 
        this.chKeys.Text = "In";
        this.chKeys.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
        this.chKeys.Width = 50;
        // 
        // chVKey
        // 
        this.chVKey.Text = "VKey";
        this.chVKey.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
        // 
        // gbAddApp
        // 
        this.gbAddApp.Controls.Add(this.gbAppName);
        this.gbAddApp.Controls.Add(this.gbAppTitle);
        this.gbAddApp.Controls.Add(this.Panel1);
        this.gbAddApp.Dock = System.Windows.Forms.DockStyle.Top;
        this.gbAddApp.Location = new System.Drawing.Point(3, 3);
        this.gbAddApp.Name = "gbAddApp";
        this.gbAddApp.Padding = new System.Windows.Forms.Padding(12, 3, 12, 10);
        this.gbAddApp.Size = new System.Drawing.Size(598, 121);
        this.gbAddApp.TabIndex = 2;
        this.gbAddApp.TabStop = false;
        this.gbAddApp.Text = "Add/Remove Application";
        // 
        // gbAppName
        // 
        this.gbAppName.Controls.Add(this.tbAppName);
        this.gbAppName.Dock = System.Windows.Forms.DockStyle.Top;
        this.gbAppName.Location = new System.Drawing.Point(12, 60);
        this.gbAppName.Name = "gbAppName";
        this.gbAppName.Padding = new System.Windows.Forms.Padding(12, 3, 12, 8);
        this.gbAppName.Size = new System.Drawing.Size(373, 45);
        this.gbAppName.TabIndex = 12;
        this.gbAppName.TabStop = false;
        this.gbAppName.Text = "Application Executable Name";
        // 
        // tbAppName
        // 
        this.tbAppName.ContextMenuStrip = this.cmAppNames;
        this.tbAppName.Dock = System.Windows.Forms.DockStyle.Fill;
        this.tbAppName.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.tbAppName.Location = new System.Drawing.Point(12, 16);
        this.tbAppName.Name = "tbAppName";
        this.tbAppName.Size = new System.Drawing.Size(349, 22);
        this.tbAppName.TabIndex = 1;
        this.tbAppName.MouseLeave += new System.EventHandler(this.AppName_MouseLeave);
        this.tbAppName.MouseHover += new System.EventHandler(this.AppName_MouseHover);
        // 
        // gbAppTitle
        // 
        this.gbAppTitle.Controls.Add(this.tbAppTitle);
        this.gbAppTitle.Dock = System.Windows.Forms.DockStyle.Top;
        this.gbAppTitle.Location = new System.Drawing.Point(12, 16);
        this.gbAppTitle.Name = "gbAppTitle";
        this.gbAppTitle.Padding = new System.Windows.Forms.Padding(12, 3, 12, 8);
        this.gbAppTitle.Size = new System.Drawing.Size(373, 44);
        this.gbAppTitle.TabIndex = 11;
        this.gbAppTitle.TabStop = false;
        this.gbAppTitle.Text = "Application Window Title";
        // 
        // tbAppTitle
        // 
        this.tbAppTitle.ContextMenuStrip = this.cmAppTitles;
        this.tbAppTitle.Dock = System.Windows.Forms.DockStyle.Fill;
        this.tbAppTitle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.tbAppTitle.Location = new System.Drawing.Point(12, 16);
        this.tbAppTitle.Name = "tbAppTitle";
        this.tbAppTitle.Size = new System.Drawing.Size(349, 22);
        this.tbAppTitle.TabIndex = 1;
        this.tbAppTitle.MouseLeave += new System.EventHandler(this.AppTitle_MouseLeave);
        this.tbAppTitle.MouseHover += new System.EventHandler(this.AppTitle_MouseHover);
        // 
        // Panel1
        // 
        this.Panel1.Controls.Add(this.btnEnabled);
        this.Panel1.Controls.Add(this.Panel7);
        this.Panel1.Controls.Add(this.Panel6);
        this.Panel1.Dock = System.Windows.Forms.DockStyle.Right;
        this.Panel1.Location = new System.Drawing.Point(385, 16);
        this.Panel1.Name = "Panel1";
        this.Panel1.Size = new System.Drawing.Size(201, 95);
        this.Panel1.TabIndex = 9;
        // 
        // btnEnabled
        // 
        this.btnEnabled.BackColor = System.Drawing.Color.White;
        this.btnEnabled.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
        this.btnEnabled.Dock = System.Windows.Forms.DockStyle.Fill;
        this.btnEnabled.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.btnEnabled.ImageIndex = 0;
        this.btnEnabled.ImageList = this.ImageListEnable;
        this.btnEnabled.Location = new System.Drawing.Point(107, 0);
        this.btnEnabled.Name = "btnEnabled";
        this.btnEnabled.Size = new System.Drawing.Size(94, 95);
        this.btnEnabled.TabIndex = 10;
        this.btnEnabled.UseVisualStyleBackColor = false;
        this.btnEnabled.Click += new System.EventHandler(this.Button1_Click);
        // 
        // ImageListEnable
        // 
        this.ImageListEnable.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImageListEnable.ImageStream")));
        this.ImageListEnable.TransparentColor = System.Drawing.Color.Transparent;
        this.ImageListEnable.Images.SetKeyName(0, "enabled.bmp");
        this.ImageListEnable.Images.SetKeyName(1, "disabled.bmp");
        // 
        // Panel7
        // 
        this.Panel7.Dock = System.Windows.Forms.DockStyle.Left;
        this.Panel7.Location = new System.Drawing.Point(89, 0);
        this.Panel7.Name = "Panel7";
        this.Panel7.Size = new System.Drawing.Size(18, 95);
        this.Panel7.TabIndex = 9;
        // 
        // Panel6
        // 
        this.Panel6.Controls.Add(this.btnRemove);
        this.Panel6.Controls.Add(this.btnAdd);
        this.Panel6.Dock = System.Windows.Forms.DockStyle.Left;
        this.Panel6.Location = new System.Drawing.Point(0, 0);
        this.Panel6.Name = "Panel6";
        this.Panel6.Size = new System.Drawing.Size(89, 95);
        this.Panel6.TabIndex = 8;
        // 
        // btnRemove
        // 
        this.btnRemove.Dock = System.Windows.Forms.DockStyle.Right;
        this.btnRemove.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.btnRemove.Location = new System.Drawing.Point(13, 0);
        this.btnRemove.Name = "btnRemove";
        this.btnRemove.Size = new System.Drawing.Size(39, 95);
        this.btnRemove.TabIndex = 8;
        this.btnRemove.Text = "R  e  m  o  v  e";
        this.btnRemove.UseVisualStyleBackColor = true;
        this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
        // 
        // btnAdd
        // 
        this.btnAdd.Dock = System.Windows.Forms.DockStyle.Right;
        this.btnAdd.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.btnAdd.Location = new System.Drawing.Point(52, 0);
        this.btnAdd.Name = "btnAdd";
        this.btnAdd.Size = new System.Drawing.Size(37, 95);
        this.btnAdd.TabIndex = 7;
        this.btnAdd.Text = "A  d  d";
        this.btnAdd.UseVisualStyleBackColor = true;
        this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
        // 
        // tpKeys
        // 
        this.tpKeys.Controls.Add(this.SplitContainer3);
        this.tpKeys.Location = new System.Drawing.Point(4, 22);
        this.tpKeys.Name = "tpKeys";
        this.tpKeys.Padding = new System.Windows.Forms.Padding(3);
        this.tpKeys.Size = new System.Drawing.Size(604, 385);
        this.tpKeys.TabIndex = 1;
        this.tpKeys.Text = "Key Setup";
        this.tpKeys.UseVisualStyleBackColor = true;
        // 
        // SplitContainer3
        // 
        this.SplitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
        this.SplitContainer3.Location = new System.Drawing.Point(3, 3);
        this.SplitContainer3.Name = "SplitContainer3";
        this.SplitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
        // 
        // SplitContainer3.Panel1
        // 
        this.SplitContainer3.Panel1.Controls.Add(this.lbKeys);
        this.SplitContainer3.Panel1.Controls.Add(this.Panel3);
        // 
        // SplitContainer3.Panel2
        // 
        this.SplitContainer3.Panel2.Controls.Add(this.tbLog);
        this.SplitContainer3.Size = new System.Drawing.Size(598, 379);
        this.SplitContainer3.SplitterDistance = 301;
        this.SplitContainer3.TabIndex = 2;
        // 
        // lbKeys
        // 
        this.lbKeys.ColumnWidth = 30;
        this.lbKeys.Dock = System.Windows.Forms.DockStyle.Fill;
        this.lbKeys.FormattingEnabled = true;
        this.lbKeys.IntegralHeight = false;
        this.lbKeys.Location = new System.Drawing.Point(0, 0);
        this.lbKeys.MultiColumn = true;
        this.lbKeys.Name = "lbKeys";
        this.lbKeys.Size = new System.Drawing.Size(434, 301);
        this.lbKeys.Sorted = true;
        this.lbKeys.TabIndex = 2;
        // 
        // Panel3
        // 
        this.Panel3.Controls.Add(this.Panel5);
        this.Panel3.Controls.Add(this.Panel4);
        this.Panel3.Dock = System.Windows.Forms.DockStyle.Right;
        this.Panel3.Location = new System.Drawing.Point(434, 0);
        this.Panel3.Name = "Panel3";
        this.Panel3.Size = new System.Drawing.Size(164, 301);
        this.Panel3.TabIndex = 0;
        // 
        // Panel5
        // 
        this.Panel5.BackColor = System.Drawing.Color.White;
        this.Panel5.BackgroundImage = global::MirrorKeyAdministrator.Properties.Resources.remove;
        this.Panel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
        this.Panel5.Dock = System.Windows.Forms.DockStyle.Fill;
        this.Panel5.Location = new System.Drawing.Point(0, 150);
        this.Panel5.Name = "Panel5";
        this.Panel5.Size = new System.Drawing.Size(164, 151);
        this.Panel5.TabIndex = 1;
        this.Panel5.MouseLeave += new System.EventHandler(this.Panel5_MouseLeave);
        this.Panel5.MouseHover += new System.EventHandler(this.Panel5_MouseHover);
        // 
        // Panel4
        // 
        this.Panel4.BackColor = System.Drawing.Color.White;
        this.Panel4.BackgroundImage = global::MirrorKeyAdministrator.Properties.Resources.add;
        this.Panel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
        this.Panel4.Dock = System.Windows.Forms.DockStyle.Top;
        this.Panel4.Location = new System.Drawing.Point(0, 0);
        this.Panel4.Name = "Panel4";
        this.Panel4.Size = new System.Drawing.Size(164, 150);
        this.Panel4.TabIndex = 0;
        this.Panel4.MouseLeave += new System.EventHandler(this.Panel4_MouseLeave);
        this.Panel4.MouseHover += new System.EventHandler(this.Panel4_MouseHover);
        // 
        // tbLog
        // 
        this.tbLog.Dock = System.Windows.Forms.DockStyle.Fill;
        this.tbLog.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.tbLog.Location = new System.Drawing.Point(0, 0);
        this.tbLog.Multiline = true;
        this.tbLog.Name = "tbLog";
        this.tbLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
        this.tbLog.Size = new System.Drawing.Size(598, 74);
        this.tbLog.TabIndex = 1;
        this.tbLog.WordWrap = false;
        // 
        // FormMain
        // 
        this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        this.ClientSize = new System.Drawing.Size(612, 433);
        this.Controls.Add(this.TabControlMain);
        this.Controls.Add(this.StatusStrip1);
        this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
        this.Name = "FormMain";
        this.Text = "Mirror Key Administrator by Darg For Moon - Enabled";
        this.Load += new System.EventHandler(this.FormMain_Load);
        this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_FormClosing);
        this.StatusStrip1.ResumeLayout(false);
        this.StatusStrip1.PerformLayout();
        this.TabControlMain.ResumeLayout(false);
        this.tpSettings.ResumeLayout(false);
        this.Panel2.ResumeLayout(false);
        this.SplitContainer1.Panel1.ResumeLayout(false);
        this.SplitContainer1.Panel2.ResumeLayout(false);
        this.SplitContainer1.ResumeLayout(false);
        this.SplitContainer2.Panel1.ResumeLayout(false);
        this.SplitContainer2.Panel2.ResumeLayout(false);
        this.SplitContainer2.ResumeLayout(false);
        this.gbAddApp.ResumeLayout(false);
        this.gbAppName.ResumeLayout(false);
        this.gbAppName.PerformLayout();
        this.gbAppTitle.ResumeLayout(false);
        this.gbAppTitle.PerformLayout();
        this.Panel1.ResumeLayout(false);
        this.Panel6.ResumeLayout(false);
        this.tpKeys.ResumeLayout(false);
        this.SplitContainer3.Panel1.ResumeLayout(false);
        this.SplitContainer3.Panel2.ResumeLayout(false);
        this.SplitContainer3.Panel2.PerformLayout();
        this.SplitContainer3.ResumeLayout(false);
        this.Panel3.ResumeLayout(false);
        this.ResumeLayout(false);
        this.PerformLayout();

	}
	internal System.Windows.Forms.StatusStrip StatusStrip1;
	internal System.Windows.Forms.TabControl TabControlMain;
	internal System.Windows.Forms.TabPage tpSettings;
	internal System.Windows.Forms.TabPage tpKeys;
	internal System.Windows.Forms.GroupBox gbAddApp;
	internal System.Windows.Forms.GroupBox gbAppName;
	internal System.Windows.Forms.TextBox tbAppName;
	internal System.Windows.Forms.GroupBox gbAppTitle;
	internal System.Windows.Forms.TextBox tbAppTitle;
	internal System.Windows.Forms.SplitContainer SplitContainer1;
	internal System.Windows.Forms.ListView lvPIDS;
	internal System.Windows.Forms.ColumnHeader chMachine;
	internal System.Windows.Forms.ColumnHeader chAppPid;
	internal System.Windows.Forms.ColumnHeader chKeyed;
	internal System.Windows.Forms.ColumnHeader chKeys;
	internal System.Windows.Forms.ToolStripStatusLabel ToolStripStatusLabel1;
	internal System.Windows.Forms.SplitContainer SplitContainer2;
	internal System.Windows.Forms.CheckedListBox lbAppNames;
	internal System.Windows.Forms.CheckedListBox lbAppTitles;
	internal System.Windows.Forms.ColumnHeader chVKey;
	internal System.Windows.Forms.ToolStripStatusLabel ToolStripStatusLabel2;
	internal System.Windows.Forms.Panel Panel2;
	internal System.Windows.Forms.Panel Panel1;
	internal System.Windows.Forms.SplitContainer SplitContainer3;
	internal System.Windows.Forms.ListBox lbKeys;
	internal System.Windows.Forms.Panel Panel3;
	internal System.Windows.Forms.Panel Panel5;
	internal System.Windows.Forms.Panel Panel4;
	internal System.Windows.Forms.TextBox tbLog;
	internal System.Windows.Forms.Button btnEnabled;
	internal System.Windows.Forms.Panel Panel7;
	internal System.Windows.Forms.Panel Panel6;
	internal System.Windows.Forms.Button btnRemove;
	internal System.Windows.Forms.Button btnAdd;
	internal System.Windows.Forms.ImageList ImageListEnable;
	internal System.Windows.Forms.ToolStripStatusLabel ToolStripStatusLabel3;
	internal System.Windows.Forms.ContextMenuStrip cmAppTitles;
	internal System.Windows.Forms.ContextMenuStrip cmAppNames;
    
    #endregion
}


By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions