EduNetworkBuilder/EduNetworkBuilder/NetTestEditor.Designer.cs

155 lines
6.5 KiB
C#

namespace EduNetworkBuilder
{
partial class NetTestEditor
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NetTestEditor));
this.cbSource = new System.Windows.Forms.ComboBox();
this.cbTest = new System.Windows.Forms.ComboBox();
this.cbDest = new System.Windows.Forms.ComboBox();
this.lblSource = new System.Windows.Forms.Label();
this.lblTest = new System.Windows.Forms.Label();
this.lblDest = new System.Windows.Forms.Label();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// cbSource
//
this.cbSource.FormattingEnabled = true;
this.cbSource.Location = new System.Drawing.Point(12, 32);
this.cbSource.Name = "cbSource";
this.cbSource.Size = new System.Drawing.Size(121, 24);
this.cbSource.TabIndex = 0;
this.cbSource.SelectedValueChanged += new System.EventHandler(this.cbSource_SelectedValueChanged);
//
// cbTest
//
this.cbTest.FormattingEnabled = true;
this.cbTest.Location = new System.Drawing.Point(139, 32);
this.cbTest.Name = "cbTest";
this.cbTest.Size = new System.Drawing.Size(175, 24);
this.cbTest.TabIndex = 1;
this.cbTest.SelectedValueChanged += new System.EventHandler(this.cbTest_SelectedValueChanged);
//
// cbDest
//
this.cbDest.FormattingEnabled = true;
this.cbDest.Location = new System.Drawing.Point(320, 32);
this.cbDest.Name = "cbDest";
this.cbDest.Size = new System.Drawing.Size(121, 24);
this.cbDest.TabIndex = 2;
this.cbDest.SelectedValueChanged += new System.EventHandler(this.cbDest_SelectedValueChanged);
//
// lblSource
//
this.lblSource.AutoSize = true;
this.lblSource.Location = new System.Drawing.Point(16, 13);
this.lblSource.Name = "lblSource";
this.lblSource.Size = new System.Drawing.Size(86, 17);
this.lblSource.TabIndex = 3;
this.lblSource.Text = "Source Host";
//
// lblTest
//
this.lblTest.AutoSize = true;
this.lblTest.Location = new System.Drawing.Point(141, 14);
this.lblTest.Name = "lblTest";
this.lblTest.Size = new System.Drawing.Size(36, 17);
this.lblTest.TabIndex = 4;
this.lblTest.Text = "Test";
//
// lblDest
//
this.lblDest.AutoSize = true;
this.lblDest.Location = new System.Drawing.Point(317, 12);
this.lblDest.Name = "lblDest";
this.lblDest.Size = new System.Drawing.Size(70, 17);
this.lblDest.TabIndex = 5;
this.lblDest.Text = "Dest Host";
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(366, 62);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 6;
this.btnOK.Text = "Done";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(285, 62);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 7;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// NetTestEditor
//
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(450, 96);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.lblDest);
this.Controls.Add(this.lblTest);
this.Controls.Add(this.lblSource);
this.Controls.Add(this.cbDest);
this.Controls.Add(this.cbTest);
this.Controls.Add(this.cbSource);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "NetTestEditor";
this.Text = "Edit a Test";
this.Load += new System.EventHandler(this.NetTestEditor_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox cbSource;
private System.Windows.Forms.ComboBox cbTest;
private System.Windows.Forms.ComboBox cbDest;
private System.Windows.Forms.Label lblSource;
private System.Windows.Forms.Label lblTest;
private System.Windows.Forms.Label lblDest;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
}
}