139 lines
5.9 KiB
C#
139 lines
5.9 KiB
C#
namespace EduNetworkBuilder
|
|
{
|
|
partial class LinkEditor
|
|
{
|
|
/// <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.lbSrcHost = new System.Windows.Forms.ListBox();
|
|
this.lbSrcNic = new System.Windows.Forms.ListBox();
|
|
this.lbDstNic = new System.Windows.Forms.ListBox();
|
|
this.lbDstHost = new System.Windows.Forms.ListBox();
|
|
this.btnLink = new System.Windows.Forms.Button();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.cbLinkType = new System.Windows.Forms.ComboBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// lbSrcHost
|
|
//
|
|
this.lbSrcHost.FormattingEnabled = true;
|
|
this.lbSrcHost.ItemHeight = 16;
|
|
this.lbSrcHost.Location = new System.Drawing.Point(9, 18);
|
|
this.lbSrcHost.Name = "lbSrcHost";
|
|
this.lbSrcHost.Size = new System.Drawing.Size(103, 84);
|
|
this.lbSrcHost.TabIndex = 0;
|
|
this.lbSrcHost.SelectedIndexChanged += new System.EventHandler(this.lbSrcHost_SelectedIndexChanged);
|
|
//
|
|
// lbSrcNic
|
|
//
|
|
this.lbSrcNic.FormattingEnabled = true;
|
|
this.lbSrcNic.ItemHeight = 16;
|
|
this.lbSrcNic.Location = new System.Drawing.Point(118, 18);
|
|
this.lbSrcNic.Name = "lbSrcNic";
|
|
this.lbSrcNic.Size = new System.Drawing.Size(89, 84);
|
|
this.lbSrcNic.TabIndex = 1;
|
|
this.lbSrcNic.SelectedIndexChanged += new System.EventHandler(this.lbSrcNic_SelectedIndexChanged);
|
|
//
|
|
// lbDstNic
|
|
//
|
|
this.lbDstNic.FormattingEnabled = true;
|
|
this.lbDstNic.ItemHeight = 16;
|
|
this.lbDstNic.Location = new System.Drawing.Point(399, 18);
|
|
this.lbDstNic.Name = "lbDstNic";
|
|
this.lbDstNic.Size = new System.Drawing.Size(89, 84);
|
|
this.lbDstNic.TabIndex = 3;
|
|
this.lbDstNic.SelectedIndexChanged += new System.EventHandler(this.lbDstNic_SelectedIndexChanged);
|
|
//
|
|
// lbDstHost
|
|
//
|
|
this.lbDstHost.FormattingEnabled = true;
|
|
this.lbDstHost.ItemHeight = 16;
|
|
this.lbDstHost.Location = new System.Drawing.Point(290, 18);
|
|
this.lbDstHost.Name = "lbDstHost";
|
|
this.lbDstHost.Size = new System.Drawing.Size(103, 84);
|
|
this.lbDstHost.TabIndex = 2;
|
|
this.lbDstHost.SelectedIndexChanged += new System.EventHandler(this.lbDstHost_SelectedIndexChanged);
|
|
//
|
|
// btnLink
|
|
//
|
|
this.btnLink.Location = new System.Drawing.Point(210, 18);
|
|
this.btnLink.Name = "btnLink";
|
|
this.btnLink.Size = new System.Drawing.Size(75, 23);
|
|
this.btnLink.TabIndex = 4;
|
|
this.btnLink.Text = "Link";
|
|
this.btnLink.UseVisualStyleBackColor = true;
|
|
this.btnLink.Click += new System.EventHandler(this.btnLink_Click);
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.Location = new System.Drawing.Point(210, 47);
|
|
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);
|
|
//
|
|
// cbLinkType
|
|
//
|
|
this.cbLinkType.FormattingEnabled = true;
|
|
this.cbLinkType.Location = new System.Drawing.Point(210, 76);
|
|
this.cbLinkType.Name = "cbLinkType";
|
|
this.cbLinkType.Size = new System.Drawing.Size(75, 24);
|
|
this.cbLinkType.TabIndex = 6;
|
|
//
|
|
// LinkEditor
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(495, 117);
|
|
this.Controls.Add(this.cbLinkType);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.btnLink);
|
|
this.Controls.Add(this.lbDstNic);
|
|
this.Controls.Add(this.lbDstHost);
|
|
this.Controls.Add(this.lbSrcNic);
|
|
this.Controls.Add(this.lbSrcHost);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Icon = global::EduNetworkBuilder.Properties.Resources.NBIco;
|
|
this.Name = "LinkEditor";
|
|
this.Text = "LinkEditor";
|
|
this.Shown += new System.EventHandler(this.LinkEditor_Shown);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListBox lbSrcHost;
|
|
private System.Windows.Forms.ListBox lbSrcNic;
|
|
private System.Windows.Forms.ListBox lbDstNic;
|
|
private System.Windows.Forms.ListBox lbDstHost;
|
|
private System.Windows.Forms.Button btnLink;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.ComboBox cbLinkType;
|
|
}
|
|
} |