EduNetworkBuilder/EduNetworkBuilder/DeviceConfig.Designer.cs

324 lines
15 KiB
C#

namespace EduNetworkBuilder
{
partial class DeviceConfig
{
/// <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.tbHostname = new System.Windows.Forms.TextBox();
this.lblHostname = new System.Windows.Forms.Label();
this.lbNics = new System.Windows.Forms.ListBox();
this.lbAddresses = new System.Windows.Forms.ListBox();
this.lblHelp = new System.Windows.Forms.Label();
this.btnCancel = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.btnNicPlus = new System.Windows.Forms.Button();
this.btnNicMinus = new System.Windows.Forms.Button();
this.btnNicEdit = new System.Windows.Forms.Button();
this.btnIfEdit = new System.Windows.Forms.Button();
this.btnIfMinus = new System.Windows.Forms.Button();
this.btnIfAdd = new System.Windows.Forms.Button();
this.lbArpTable = new System.Windows.Forms.ListBox();
this.btnGateway = new System.Windows.Forms.Button();
this.btnRoutes = new System.Windows.Forms.Button();
this.cbDHCP = new System.Windows.Forms.CheckBox();
this.btnDHCP = new System.Windows.Forms.Button();
this.btnVLAN = new System.Windows.Forms.Button();
this.btnFirewall = new System.Windows.Forms.Button();
this.cbFirewall = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// tbHostname
//
this.tbHostname.Location = new System.Drawing.Point(90, 6);
this.tbHostname.Name = "tbHostname";
this.tbHostname.Size = new System.Drawing.Size(124, 22);
this.tbHostname.TabIndex = 0;
this.tbHostname.Validating += new System.ComponentModel.CancelEventHandler(this.tbHostname_Validating);
//
// lblHostname
//
this.lblHostname.AutoSize = true;
this.lblHostname.Location = new System.Drawing.Point(12, 9);
this.lblHostname.Name = "lblHostname";
this.lblHostname.Size = new System.Drawing.Size(72, 17);
this.lblHostname.TabIndex = 1;
this.lblHostname.Text = "Hostname";
//
// lbNics
//
this.lbNics.FormattingEnabled = true;
this.lbNics.ItemHeight = 16;
this.lbNics.Location = new System.Drawing.Point(13, 103);
this.lbNics.Name = "lbNics";
this.lbNics.Size = new System.Drawing.Size(150, 116);
this.lbNics.TabIndex = 2;
this.lbNics.SelectedIndexChanged += new System.EventHandler(this.lbNics_SelectedIndexChanged);
this.lbNics.DoubleClick += new System.EventHandler(this.lbNics_DoubleClick);
//
// lbAddresses
//
this.lbAddresses.FormattingEnabled = true;
this.lbAddresses.ItemHeight = 16;
this.lbAddresses.Location = new System.Drawing.Point(182, 103);
this.lbAddresses.Name = "lbAddresses";
this.lbAddresses.Size = new System.Drawing.Size(277, 116);
this.lbAddresses.TabIndex = 3;
this.lbAddresses.DoubleClick += new System.EventHandler(this.lbAddresses_DoubleClick);
//
// lblHelp
//
this.lblHelp.Location = new System.Drawing.Point(15, 222);
this.lblHelp.Name = "lblHelp";
this.lblHelp.Size = new System.Drawing.Size(444, 44);
this.lblHelp.TabIndex = 4;
this.lblHelp.Text = "HelpGoesHere";
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(384, 301);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 5;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(384, 330);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 6;
this.btnOK.Text = "Ok";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnNicPlus
//
this.btnNicPlus.Location = new System.Drawing.Point(14, 80);
this.btnNicPlus.Name = "btnNicPlus";
this.btnNicPlus.Size = new System.Drawing.Size(19, 23);
this.btnNicPlus.TabIndex = 7;
this.btnNicPlus.Text = "+";
this.btnNicPlus.UseVisualStyleBackColor = true;
this.btnNicPlus.Click += new System.EventHandler(this.btnNicPlus_Click);
//
// btnNicMinus
//
this.btnNicMinus.Location = new System.Drawing.Point(39, 80);
this.btnNicMinus.Name = "btnNicMinus";
this.btnNicMinus.Size = new System.Drawing.Size(18, 23);
this.btnNicMinus.TabIndex = 8;
this.btnNicMinus.Text = "-";
this.btnNicMinus.UseVisualStyleBackColor = true;
this.btnNicMinus.Click += new System.EventHandler(this.btnNicMinus_Click);
//
// btnNicEdit
//
this.btnNicEdit.Location = new System.Drawing.Point(63, 80);
this.btnNicEdit.Name = "btnNicEdit";
this.btnNicEdit.Size = new System.Drawing.Size(65, 23);
this.btnNicEdit.TabIndex = 9;
this.btnNicEdit.Text = "edit";
this.btnNicEdit.UseVisualStyleBackColor = true;
this.btnNicEdit.Click += new System.EventHandler(this.btnNicEdit_Click);
//
// btnIfEdit
//
this.btnIfEdit.Location = new System.Drawing.Point(394, 80);
this.btnIfEdit.Name = "btnIfEdit";
this.btnIfEdit.Size = new System.Drawing.Size(65, 23);
this.btnIfEdit.TabIndex = 12;
this.btnIfEdit.Text = "edit";
this.btnIfEdit.UseVisualStyleBackColor = true;
this.btnIfEdit.Click += new System.EventHandler(this.btnIfEdit_Click);
//
// btnIfMinus
//
this.btnIfMinus.Location = new System.Drawing.Point(370, 80);
this.btnIfMinus.Name = "btnIfMinus";
this.btnIfMinus.Size = new System.Drawing.Size(18, 23);
this.btnIfMinus.TabIndex = 11;
this.btnIfMinus.Text = "-";
this.btnIfMinus.UseVisualStyleBackColor = true;
this.btnIfMinus.Click += new System.EventHandler(this.btnIfMinus_Click);
//
// btnIfAdd
//
this.btnIfAdd.Location = new System.Drawing.Point(345, 80);
this.btnIfAdd.Name = "btnIfAdd";
this.btnIfAdd.Size = new System.Drawing.Size(19, 23);
this.btnIfAdd.TabIndex = 10;
this.btnIfAdd.Text = "+";
this.btnIfAdd.UseVisualStyleBackColor = true;
this.btnIfAdd.Click += new System.EventHandler(this.btnIfAdd_Click);
//
// lbArpTable
//
this.lbArpTable.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lbArpTable.FormattingEnabled = true;
this.lbArpTable.ItemHeight = 17;
this.lbArpTable.Location = new System.Drawing.Point(15, 269);
this.lbArpTable.Name = "lbArpTable";
this.lbArpTable.Size = new System.Drawing.Size(349, 89);
this.lbArpTable.TabIndex = 13;
//
// btnGateway
//
this.btnGateway.Location = new System.Drawing.Point(251, 6);
this.btnGateway.Name = "btnGateway";
this.btnGateway.Size = new System.Drawing.Size(208, 23);
this.btnGateway.TabIndex = 16;
this.btnGateway.Text = "Gateway:";
this.btnGateway.UseVisualStyleBackColor = true;
this.btnGateway.Click += new System.EventHandler(this.btnGateway_Click);
//
// btnRoutes
//
this.btnRoutes.Location = new System.Drawing.Point(251, 31);
this.btnRoutes.Name = "btnRoutes";
this.btnRoutes.Size = new System.Drawing.Size(113, 23);
this.btnRoutes.TabIndex = 17;
this.btnRoutes.Text = "Routes";
this.btnRoutes.UseVisualStyleBackColor = true;
this.btnRoutes.Click += new System.EventHandler(this.btnRoutes_Click);
//
// cbDHCP
//
this.cbDHCP.AutoSize = true;
this.cbDHCP.Location = new System.Drawing.Point(15, 34);
this.cbDHCP.Name = "cbDHCP";
this.cbDHCP.Size = new System.Drawing.Size(114, 21);
this.cbDHCP.TabIndex = 18;
this.cbDHCP.Text = "DHCP Server";
this.cbDHCP.UseVisualStyleBackColor = true;
this.cbDHCP.CheckedChanged += new System.EventHandler(this.cbDHCP_CheckedChanged);
//
// btnDHCP
//
this.btnDHCP.Location = new System.Drawing.Point(365, 31);
this.btnDHCP.Name = "btnDHCP";
this.btnDHCP.Size = new System.Drawing.Size(94, 23);
this.btnDHCP.TabIndex = 20;
this.btnDHCP.Text = "DHCP";
this.btnDHCP.UseVisualStyleBackColor = true;
this.btnDHCP.Click += new System.EventHandler(this.btnDHCP_Click);
//
// btnVLAN
//
this.btnVLAN.Location = new System.Drawing.Point(365, 55);
this.btnVLAN.Name = "btnVLAN";
this.btnVLAN.Size = new System.Drawing.Size(94, 23);
this.btnVLAN.TabIndex = 21;
this.btnVLAN.Text = "VLANs";
this.btnVLAN.UseVisualStyleBackColor = true;
this.btnVLAN.Click += new System.EventHandler(this.btnVLAN_Click);
//
// btnFirewall
//
this.btnFirewall.Location = new System.Drawing.Point(251, 55);
this.btnFirewall.Name = "btnFirewall";
this.btnFirewall.Size = new System.Drawing.Size(113, 23);
this.btnFirewall.TabIndex = 22;
this.btnFirewall.Text = "Firewall";
this.btnFirewall.UseVisualStyleBackColor = true;
this.btnFirewall.Click += new System.EventHandler(this.btnFirewall_Click);
//
// cbFirewall
//
this.cbFirewall.AutoSize = true;
this.cbFirewall.Location = new System.Drawing.Point(15, 56);
this.cbFirewall.Name = "cbFirewall";
this.cbFirewall.Size = new System.Drawing.Size(77, 21);
this.cbFirewall.TabIndex = 23;
this.cbFirewall.Text = "Firewall";
this.cbFirewall.UseVisualStyleBackColor = true;
this.cbFirewall.CheckedChanged += new System.EventHandler(this.cbFirewall_CheckedChanged);
//
// DeviceConfig
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(471, 365);
this.Controls.Add(this.cbFirewall);
this.Controls.Add(this.btnFirewall);
this.Controls.Add(this.btnVLAN);
this.Controls.Add(this.btnDHCP);
this.Controls.Add(this.cbDHCP);
this.Controls.Add(this.btnRoutes);
this.Controls.Add(this.btnGateway);
this.Controls.Add(this.lbArpTable);
this.Controls.Add(this.btnIfEdit);
this.Controls.Add(this.btnIfMinus);
this.Controls.Add(this.btnIfAdd);
this.Controls.Add(this.btnNicEdit);
this.Controls.Add(this.btnNicMinus);
this.Controls.Add(this.btnNicPlus);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.lblHelp);
this.Controls.Add(this.lbAddresses);
this.Controls.Add(this.lbNics);
this.Controls.Add(this.lblHostname);
this.Controls.Add(this.tbHostname);
this.Icon = global::EduNetworkBuilder.Properties.Resources.NBIco;
this.Name = "DeviceConfig";
this.Text = "DeviceConfig";
this.Shown += new System.EventHandler(this.DeviceConfig_Shown);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox tbHostname;
private System.Windows.Forms.Label lblHostname;
private System.Windows.Forms.ListBox lbNics;
private System.Windows.Forms.ListBox lbAddresses;
private System.Windows.Forms.Label lblHelp;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnNicPlus;
private System.Windows.Forms.Button btnNicMinus;
private System.Windows.Forms.Button btnNicEdit;
private System.Windows.Forms.Button btnIfEdit;
private System.Windows.Forms.Button btnIfMinus;
private System.Windows.Forms.Button btnIfAdd;
private System.Windows.Forms.ListBox lbArpTable;
private System.Windows.Forms.Button btnGateway;
private System.Windows.Forms.Button btnRoutes;
private System.Windows.Forms.CheckBox cbDHCP;
private System.Windows.Forms.Button btnDHCP;
private System.Windows.Forms.Button btnVLAN;
private System.Windows.Forms.Button btnFirewall;
private System.Windows.Forms.CheckBox cbFirewall;
}
}