namespace FCC_Uber_MDX_Configurator
{
partial class AddDigitialOutputForm
{
///
/// 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_Name = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.COMBO_ConnectedTo = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.TXT_Port = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.COMBO_Default = new System.Windows.Forms.ComboBox();
this.BTN_SAVE = new System.Windows.Forms.Button();
this.BTN_CANCEL = new System.Windows.Forms.Button();
this.BTN_HELP_DEFAULTSTATE = new System.Windows.Forms.Button();
this.BTN_HELP_PORT = new System.Windows.Forms.Button();
this.BTN_HELP_CONNECTEDTO = new System.Windows.Forms.Button();
this.BTN_HELP_NAME = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// TXT_Name
//
this.TXT_Name.Font = new System.Drawing.Font("Arial", 14.25F);
this.TXT_Name.Location = new System.Drawing.Point(83, 20);
this.TXT_Name.MaxLength = 255;
this.TXT_Name.Name = "TXT_Name";
this.TXT_Name.Size = new System.Drawing.Size(292, 29);
this.TXT_Name.TabIndex = 25;
this.TXT_Name.Text = "My Digital Output";
this.TXT_Name.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.TXT_Name.Leave += new System.EventHandler(this.Leave_VerifyNameIsValid);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(12, 23);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 22);
this.label1.TabIndex = 28;
this.label1.Text = "Name:";
//
// COMBO_ConnectedTo
//
this.COMBO_ConnectedTo.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.COMBO_ConnectedTo.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.COMBO_ConnectedTo.Font = new System.Drawing.Font("Arial", 14.25F);
this.COMBO_ConnectedTo.FormattingEnabled = true;
this.COMBO_ConnectedTo.Location = new System.Drawing.Point(154, 76);
this.COMBO_ConnectedTo.Name = "COMBO_ConnectedTo";
this.COMBO_ConnectedTo.Size = new System.Drawing.Size(221, 30);
this.COMBO_ConnectedTo.TabIndex = 30;
this.COMBO_ConnectedTo.Leave += new System.EventHandler(this.Leave_VerifyCOMBOIsValid);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(12, 79);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(136, 22);
this.label2.TabIndex = 32;
this.label2.Text = "Connected To:";
//
// TXT_Port
//
this.TXT_Port.Font = new System.Drawing.Font("Arial", 14.25F);
this.TXT_Port.Location = new System.Drawing.Point(83, 132);
this.TXT_Port.MaxLength = 255;
this.TXT_Port.Name = "TXT_Port";
this.TXT_Port.Size = new System.Drawing.Size(292, 29);
this.TXT_Port.TabIndex = 33;
this.TXT_Port.Text = "0";
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);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.Location = new System.Drawing.Point(12, 135);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(50, 22);
this.label3.TabIndex = 34;
this.label3.Text = "Port:";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.Location = new System.Drawing.Point(12, 191);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(124, 22);
this.label4.TabIndex = 38;
this.label4.Text = "Default State:";
//
// COMBO_Default
//
this.COMBO_Default.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.COMBO_Default.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.COMBO_Default.Font = new System.Drawing.Font("Arial", 14.25F);
this.COMBO_Default.FormattingEnabled = true;
this.COMBO_Default.Items.AddRange(new object[] {
"On",
"Off"});
this.COMBO_Default.Location = new System.Drawing.Point(154, 188);
this.COMBO_Default.Name = "COMBO_Default";
this.COMBO_Default.Size = new System.Drawing.Size(221, 30);
this.COMBO_Default.TabIndex = 36;
this.COMBO_Default.Text = "Off";
this.COMBO_Default.Leave += new System.EventHandler(this.Leave_VerifyCOMBOIsValid);
//
// BTN_SAVE
//
this.BTN_SAVE.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.SaveCheckIcon;
this.BTN_SAVE.Location = new System.Drawing.Point(381, 235);
this.BTN_SAVE.Name = "BTN_SAVE";
this.BTN_SAVE.Size = new System.Drawing.Size(50, 50);
this.BTN_SAVE.TabIndex = 27;
this.BTN_SAVE.UseVisualStyleBackColor = true;
this.BTN_SAVE.Click += new System.EventHandler(this.BTN_SAVE_Click);
//
// 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(325, 235);
this.BTN_CANCEL.Name = "BTN_CANCEL";
this.BTN_CANCEL.Size = new System.Drawing.Size(50, 50);
this.BTN_CANCEL.TabIndex = 26;
this.BTN_CANCEL.UseVisualStyleBackColor = true;
this.BTN_CANCEL.Click += new System.EventHandler(this.BTN_CANCEL_Click);
//
// BTN_HELP_DEFAULTSTATE
//
this.BTN_HELP_DEFAULTSTATE.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.HelpIcon;
this.BTN_HELP_DEFAULTSTATE.Location = new System.Drawing.Point(381, 179);
this.BTN_HELP_DEFAULTSTATE.Name = "BTN_HELP_DEFAULTSTATE";
this.BTN_HELP_DEFAULTSTATE.Size = new System.Drawing.Size(50, 50);
this.BTN_HELP_DEFAULTSTATE.TabIndex = 37;
this.BTN_HELP_DEFAULTSTATE.TabStop = false;
this.BTN_HELP_DEFAULTSTATE.UseVisualStyleBackColor = true;
this.BTN_HELP_DEFAULTSTATE.Click += new System.EventHandler(this.BTN_HELP_DEFAULTSTATE_Click);
//
// BTN_HELP_PORT
//
this.BTN_HELP_PORT.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.HelpIcon;
this.BTN_HELP_PORT.Location = new System.Drawing.Point(381, 123);
this.BTN_HELP_PORT.Name = "BTN_HELP_PORT";
this.BTN_HELP_PORT.Size = new System.Drawing.Size(50, 50);
this.BTN_HELP_PORT.TabIndex = 35;
this.BTN_HELP_PORT.TabStop = false;
this.BTN_HELP_PORT.UseVisualStyleBackColor = true;
this.BTN_HELP_PORT.Click += new System.EventHandler(this.BTN_HELP_PORT_Click);
//
// BTN_HELP_CONNECTEDTO
//
this.BTN_HELP_CONNECTEDTO.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.HelpIcon;
this.BTN_HELP_CONNECTEDTO.Location = new System.Drawing.Point(381, 67);
this.BTN_HELP_CONNECTEDTO.Name = "BTN_HELP_CONNECTEDTO";
this.BTN_HELP_CONNECTEDTO.Size = new System.Drawing.Size(50, 50);
this.BTN_HELP_CONNECTEDTO.TabIndex = 31;
this.BTN_HELP_CONNECTEDTO.TabStop = false;
this.BTN_HELP_CONNECTEDTO.UseVisualStyleBackColor = true;
this.BTN_HELP_CONNECTEDTO.Click += new System.EventHandler(this.BTN_HELP_CONNECTEDTO_Click);
//
// BTN_HELP_NAME
//
this.BTN_HELP_NAME.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.HelpIcon;
this.BTN_HELP_NAME.Location = new System.Drawing.Point(381, 11);
this.BTN_HELP_NAME.Name = "BTN_HELP_NAME";
this.BTN_HELP_NAME.Size = new System.Drawing.Size(50, 50);
this.BTN_HELP_NAME.TabIndex = 29;
this.BTN_HELP_NAME.TabStop = false;
this.BTN_HELP_NAME.UseVisualStyleBackColor = true;
this.BTN_HELP_NAME.Click += new System.EventHandler(this.BTN_HELP_NAME_Click);
//
// AddDigitialOutputForm
//
this.AcceptButton = this.BTN_SAVE;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.CancelButton = this.BTN_CANCEL;
this.ClientSize = new System.Drawing.Size(434, 289);
this.Controls.Add(this.label4);
this.Controls.Add(this.BTN_HELP_DEFAULTSTATE);
this.Controls.Add(this.COMBO_Default);
this.Controls.Add(this.BTN_HELP_PORT);
this.Controls.Add(this.TXT_Port);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.BTN_HELP_CONNECTEDTO);
this.Controls.Add(this.COMBO_ConnectedTo);
this.Controls.Add(this.BTN_SAVE);
this.Controls.Add(this.BTN_CANCEL);
this.Controls.Add(this.BTN_HELP_NAME);
this.Controls.Add(this.TXT_Name);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = true;
this.Name = "AddDigitialOutputForm";
this.ShowIcon = false;
this.ShowInTaskbar = true;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Add Digital Output";
this.TopMost = false;
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button BTN_SAVE;
private System.Windows.Forms.Button BTN_CANCEL;
private System.Windows.Forms.Button BTN_HELP_NAME;
private System.Windows.Forms.TextBox TXT_Name;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox COMBO_ConnectedTo;
private System.Windows.Forms.Button BTN_HELP_CONNECTEDTO;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button BTN_HELP_PORT;
private System.Windows.Forms.TextBox TXT_Port;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button BTN_HELP_DEFAULTSTATE;
private System.Windows.Forms.ComboBox COMBO_Default;
}
}