EduNetworkBuilder/EduNetworkBuilder/NetworkCardEditor.Designer.cs

172 lines
7.2 KiB
C#

namespace EduNetworkBuilder
{
partial class NetworkCardEditor
{
/// <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.tbNicName = new System.Windows.Forms.TextBox();
this.tbNicType = new System.Windows.Forms.TextBox();
this.TBMacAddress = new System.Windows.Forms.TextBox();
this.cbCanUseDHCP = new System.Windows.Forms.CheckBox();
this.cbDHCP = new System.Windows.Forms.CheckBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.btnDone = new System.Windows.Forms.Button();
this.lblLinkStatus = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// tbNicName
//
this.tbNicName.Location = new System.Drawing.Point(131, 16);
this.tbNicName.Name = "tbNicName";
this.tbNicName.Size = new System.Drawing.Size(159, 22);
this.tbNicName.TabIndex = 0;
//
// tbNicType
//
this.tbNicType.Location = new System.Drawing.Point(131, 44);
this.tbNicType.Name = "tbNicType";
this.tbNicType.Size = new System.Drawing.Size(159, 22);
this.tbNicType.TabIndex = 1;
//
// TBMacAddress
//
this.TBMacAddress.Location = new System.Drawing.Point(131, 72);
this.TBMacAddress.Name = "TBMacAddress";
this.TBMacAddress.Size = new System.Drawing.Size(159, 22);
this.TBMacAddress.TabIndex = 2;
//
// cbCanUseDHCP
//
this.cbCanUseDHCP.AutoSize = true;
this.cbCanUseDHCP.Location = new System.Drawing.Point(131, 100);
this.cbCanUseDHCP.Name = "cbCanUseDHCP";
this.cbCanUseDHCP.Size = new System.Drawing.Size(124, 21);
this.cbCanUseDHCP.TabIndex = 3;
this.cbCanUseDHCP.Text = "Can use DHCP";
this.cbCanUseDHCP.UseVisualStyleBackColor = true;
//
// cbDHCP
//
this.cbDHCP.AutoSize = true;
this.cbDHCP.Location = new System.Drawing.Point(131, 128);
this.cbDHCP.Name = "cbDHCP";
this.cbDHCP.Size = new System.Drawing.Size(104, 21);
this.cbDHCP.TabIndex = 4;
this.cbDHCP.Text = "Uses DHCP";
this.cbDHCP.UseVisualStyleBackColor = true;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(56, 19);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(69, 17);
this.label1.TabIndex = 5;
this.label1.Text = "Nic Name";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(61, 47);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(64, 17);
this.label2.TabIndex = 6;
this.label2.Text = "Nic Type";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(32, 75);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(93, 17);
this.label3.TabIndex = 7;
this.label3.Text = "MAC Address";
//
// btnDone
//
this.btnDone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnDone.Location = new System.Drawing.Point(215, 169);
this.btnDone.Name = "btnDone";
this.btnDone.Size = new System.Drawing.Size(75, 23);
this.btnDone.TabIndex = 8;
this.btnDone.Text = "Done";
this.btnDone.UseVisualStyleBackColor = true;
this.btnDone.Click += new System.EventHandler(this.btnDone_Click);
//
// lblLinkStatus
//
this.lblLinkStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.lblLinkStatus.AutoSize = true;
this.lblLinkStatus.Location = new System.Drawing.Point(32, 169);
this.lblLinkStatus.Name = "lblLinkStatus";
this.lblLinkStatus.Size = new System.Drawing.Size(74, 17);
this.lblLinkStatus.TabIndex = 9;
this.lblLinkStatus.Text = "LinkStatus";
//
// NetworkCardEditor
//
this.AcceptButton = this.btnDone;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(302, 204);
this.Controls.Add(this.lblLinkStatus);
this.Controls.Add(this.btnDone);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.cbDHCP);
this.Controls.Add(this.cbCanUseDHCP);
this.Controls.Add(this.TBMacAddress);
this.Controls.Add(this.tbNicType);
this.Controls.Add(this.tbNicName);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = global::EduNetworkBuilder.Properties.Resources.NBIco;
this.Name = "NetworkCardEditor";
this.Text = "NetworkCardEditor";
this.Shown += new System.EventHandler(this.NetworkCardEditor_Shown);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox tbNicName;
private System.Windows.Forms.TextBox tbNicType;
private System.Windows.Forms.TextBox TBMacAddress;
private System.Windows.Forms.CheckBox cbCanUseDHCP;
private System.Windows.Forms.CheckBox cbDHCP;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button btnDone;
private System.Windows.Forms.Label lblLinkStatus;
}
}