namespace FCC_Uber_MDX_Configurator
{
partial class RemoteControlForm
{
///
/// 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.TXT_PORT = new System.Windows.Forms.TextBox();
this.label26 = new System.Windows.Forms.Label();
this.TXT_USER_NAME = new System.Windows.Forms.TextBox();
this.label25 = new System.Windows.Forms.Label();
this.CHK_ENABLE = new System.Windows.Forms.CheckBox();
this.BTN_REGISTER = new System.Windows.Forms.Button();
this.BTN_SAVE = new System.Windows.Forms.Button();
this.BTN_CANCEL = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// TXT_PORT
//
this.TXT_PORT.Font = new System.Drawing.Font("Arial", 14.25F);
this.TXT_PORT.Location = new System.Drawing.Point(156, 79);
this.TXT_PORT.MaxLength = 1024;
this.TXT_PORT.Name = "TXT_PORT";
this.TXT_PORT.Size = new System.Drawing.Size(197, 29);
this.TXT_PORT.TabIndex = 162;
this.TXT_PORT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.TXT_PORT.KeyDown += new System.Windows.Forms.KeyEventHandler(this.KeyDown_IsANumber);
this.TXT_PORT.Leave += new System.EventHandler(this.Leave_VerifyTXTIsValid);
//
// label26
//
this.label26.AutoSize = true;
this.label26.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label26.Location = new System.Drawing.Point(40, 82);
this.label26.Name = "label26";
this.label26.Size = new System.Drawing.Size(50, 22);
this.label26.TabIndex = 161;
this.label26.Text = "Port:";
//
// TXT_USER_NAME
//
this.TXT_USER_NAME.Font = new System.Drawing.Font("Arial", 14.25F);
this.TXT_USER_NAME.Location = new System.Drawing.Point(156, 44);
this.TXT_USER_NAME.MaxLength = 1024;
this.TXT_USER_NAME.Name = "TXT_USER_NAME";
this.TXT_USER_NAME.Size = new System.Drawing.Size(197, 29);
this.TXT_USER_NAME.TabIndex = 160;
this.TXT_USER_NAME.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// label25
//
this.label25.AutoSize = true;
this.label25.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label25.Location = new System.Drawing.Point(40, 47);
this.label25.Name = "label25";
this.label25.Size = new System.Drawing.Size(110, 22);
this.label25.TabIndex = 159;
this.label25.Text = "User Name:";
//
// CHK_ENABLE
//
this.CHK_ENABLE.AutoSize = true;
this.CHK_ENABLE.Font = new System.Drawing.Font("Arial", 14F);
this.CHK_ENABLE.Location = new System.Drawing.Point(12, 12);
this.CHK_ENABLE.Name = "CHK_ENABLE";
this.CHK_ENABLE.Size = new System.Drawing.Size(227, 26);
this.CHK_ENABLE.TabIndex = 165;
this.CHK_ENABLE.Text = "Enable Remote Control";
this.CHK_ENABLE.UseVisualStyleBackColor = true;
//
// BTN_REGISTER
//
this.BTN_REGISTER.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.BTN_REGISTER.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.registerImage;
this.BTN_REGISTER.Location = new System.Drawing.Point(12, 120);
this.BTN_REGISTER.Name = "BTN_REGISTER";
this.BTN_REGISTER.Size = new System.Drawing.Size(158, 39);
this.BTN_REGISTER.TabIndex = 166;
this.BTN_REGISTER.UseVisualStyleBackColor = true;
this.BTN_REGISTER.Click += new System.EventHandler(this.BTN_REGISTER_Click);
//
// BTN_SAVE
//
this.BTN_SAVE.DialogResult = System.Windows.Forms.DialogResult.OK;
this.BTN_SAVE.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.SaveCheckIcon;
this.BTN_SAVE.Location = new System.Drawing.Point(303, 114);
this.BTN_SAVE.Name = "BTN_SAVE";
this.BTN_SAVE.Size = new System.Drawing.Size(50, 50);
this.BTN_SAVE.TabIndex = 164;
this.BTN_SAVE.UseVisualStyleBackColor = true;
//
// BTN_CANCEL
//
this.BTN_CANCEL.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.BTN_CANCEL.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.CancelIcon;
this.BTN_CANCEL.Location = new System.Drawing.Point(247, 114);
this.BTN_CANCEL.Name = "BTN_CANCEL";
this.BTN_CANCEL.Size = new System.Drawing.Size(50, 50);
this.BTN_CANCEL.TabIndex = 163;
this.BTN_CANCEL.UseVisualStyleBackColor = true;
//
// RemoteControlForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(358, 169);
this.Controls.Add(this.BTN_REGISTER);
this.Controls.Add(this.CHK_ENABLE);
this.Controls.Add(this.BTN_SAVE);
this.Controls.Add(this.BTN_CANCEL);
this.Controls.Add(this.TXT_PORT);
this.Controls.Add(this.label26);
this.Controls.Add(this.TXT_USER_NAME);
this.Controls.Add(this.label25);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.MaximizeBox = false;
this.MinimizeBox = true;
this.Name = "RemoteControlForm";
this.ShowIcon = false;
this.ShowInTaskbar = true;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Remote Control";
this.TopMost = false;
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox TXT_PORT;
private System.Windows.Forms.Label label26;
private System.Windows.Forms.TextBox TXT_USER_NAME;
private System.Windows.Forms.Label label25;
private System.Windows.Forms.Button BTN_SAVE;
private System.Windows.Forms.Button BTN_CANCEL;
private System.Windows.Forms.CheckBox CHK_ENABLE;
private System.Windows.Forms.Button BTN_REGISTER;
}
}