MW3_mp_fov
ChangeKey.Designer.cs
using System;
namespace MW3_fov_changer
{
partial clast ChangeKey
{
///
/// 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();
}
if (ptrHook != IntPtr.Zero)
{
UnhookWindowsHookEx(ptrHook);
ptrHook = IntPtr.Zero;
}
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.lblKeyName = new System.Windows.Forms.Label();
this.btnAccept = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lblKeyName
//
this.lblKeyName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.lblKeyName.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblKeyName.Location = new System.Drawing.Point(4, 4);
this.lblKeyName.Name = "lblKeyName";
this.lblKeyName.Size = new System.Drawing.Size(232, 68);
this.lblKeyName.TabIndex = 0;
this.lblKeyName.Text = "Waiting for a key...";
this.lblKeyName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// btnAccept
//
this.btnAccept.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnAccept.Enabled = false;
this.btnAccept.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnAccept.Location = new System.Drawing.Point(121, 75);
this.btnAccept.Name = "btnAccept";
this.btnAccept.Size = new System.Drawing.Size(116, 40);
this.btnAccept.TabIndex = 2;
this.btnAccept.Text = "Accept";
this.btnAccept.UseVisualStyleBackColor = true;
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnCancel.Location = new System.Drawing.Point(3, 75);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(116, 40);
this.btnCancel.TabIndex = 1;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Enter += new System.EventHandler(this.btnCancel_Enter);
//
// ChangeKey
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(240, 118);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnAccept);
this.Controls.Add(this.lblKeyName);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ChangeKey";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Choose a new key for ";
this.TopMost = true;
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label lblKeyName;
private System.Windows.Forms.Button btnAccept;
private System.Windows.Forms.Button btnCancel;
}
}