Cosmos/source/FrodeIPv4Test/IPTestForm.Designer.cs
2008-07-01 20:45:09 +00:00

131 lines
5.3 KiB
C#

namespace FrodeIPv4Test
{
partial class IPTestForm
{
/// <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.destinationTextBox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.bytesTextBox = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.sourceTextBox = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// destinationTextBox
//
this.destinationTextBox.Location = new System.Drawing.Point(65, 428);
this.destinationTextBox.Name = "destinationTextBox";
this.destinationTextBox.Size = new System.Drawing.Size(165, 20);
this.destinationTextBox.TabIndex = 0;
this.destinationTextBox.Text = "172.28.6.1";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(65, 409);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(60, 13);
this.label1.TabIndex = 1;
this.label1.Text = "Destination";
//
// bytesTextBox
//
this.bytesTextBox.Location = new System.Drawing.Point(521, 25);
this.bytesTextBox.Multiline = true;
this.bytesTextBox.Name = "bytesTextBox";
this.bytesTextBox.Size = new System.Drawing.Size(268, 428);
this.bytesTextBox.TabIndex = 2;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(518, 9);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(47, 13);
this.label2.TabIndex = 3;
this.label2.Text = "As bytes";
//
// button1
//
this.button1.Location = new System.Drawing.Point(402, 175);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(113, 69);
this.button1.TabIndex = 4;
this.button1.Text = "Calculate";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(65, 367);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(41, 13);
this.label3.TabIndex = 6;
this.label3.Text = "Source";
//
// sourceTextBox
//
this.sourceTextBox.Location = new System.Drawing.Point(65, 386);
this.sourceTextBox.Name = "sourceTextBox";
this.sourceTextBox.Size = new System.Drawing.Size(165, 20);
this.sourceTextBox.TabIndex = 5;
this.sourceTextBox.Text = "172.28.6.6";
//
// IPTestForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(889, 465);
this.Controls.Add(this.label3);
this.Controls.Add(this.sourceTextBox);
this.Controls.Add(this.button1);
this.Controls.Add(this.label2);
this.Controls.Add(this.bytesTextBox);
this.Controls.Add(this.label1);
this.Controls.Add(this.destinationTextBox);
this.Name = "IPTestForm";
this.Text = "Testproject for converting IPv4 packet to bytes";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox destinationTextBox;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox bytesTextBox;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox sourceTextBox;
}
}