148 lines
6.3 KiB
C#
148 lines
6.3 KiB
C#
namespace EduNetworkBuilder
|
|
{
|
|
partial class IPAddressEntry
|
|
{
|
|
/// <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.Icon = Properties.Resources.NBIco;
|
|
this.lblIP = new System.Windows.Forms.Label();
|
|
this.lblNetmask = new System.Windows.Forms.Label();
|
|
this.lblGateway = new System.Windows.Forms.Label();
|
|
this.tbIPAddress = new System.Windows.Forms.TextBox();
|
|
this.tbNetmask = new System.Windows.Forms.TextBox();
|
|
this.tbGateway = new System.Windows.Forms.TextBox();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// lblIP
|
|
//
|
|
this.lblIP.Location = new System.Drawing.Point(19, 13);
|
|
this.lblIP.Name = "lblIP";
|
|
this.lblIP.Size = new System.Drawing.Size(60, 17);
|
|
this.lblIP.TabIndex = 0;
|
|
this.lblIP.Text = "IP";
|
|
this.lblIP.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
|
//
|
|
// lblNetmask
|
|
//
|
|
this.lblNetmask.Location = new System.Drawing.Point(16, 45);
|
|
this.lblNetmask.Name = "lblNetmask";
|
|
this.lblNetmask.Size = new System.Drawing.Size(63, 17);
|
|
this.lblNetmask.TabIndex = 1;
|
|
this.lblNetmask.Text = "Netmask";
|
|
this.lblNetmask.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
|
//
|
|
// lblGateway
|
|
//
|
|
this.lblGateway.Location = new System.Drawing.Point(16, 74);
|
|
this.lblGateway.Name = "lblGateway";
|
|
this.lblGateway.Size = new System.Drawing.Size(63, 17);
|
|
this.lblGateway.TabIndex = 2;
|
|
this.lblGateway.Text = "Gateway";
|
|
this.lblGateway.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
|
//
|
|
// tbIPAddress
|
|
//
|
|
this.tbIPAddress.Location = new System.Drawing.Point(86, 13);
|
|
this.tbIPAddress.Name = "tbIPAddress";
|
|
this.tbIPAddress.Size = new System.Drawing.Size(128, 22);
|
|
this.tbIPAddress.TabIndex = 3;
|
|
this.tbIPAddress.Validating += new System.ComponentModel.CancelEventHandler(this.tbIPAddress_Validating);
|
|
//
|
|
// tbNetmask
|
|
//
|
|
this.tbNetmask.Location = new System.Drawing.Point(86, 42);
|
|
this.tbNetmask.Name = "tbNetmask";
|
|
this.tbNetmask.Size = new System.Drawing.Size(128, 22);
|
|
this.tbNetmask.TabIndex = 4;
|
|
this.tbNetmask.Validating += new System.ComponentModel.CancelEventHandler(this.tbNetmask_Validating);
|
|
//
|
|
// tbGateway
|
|
//
|
|
this.tbGateway.Location = new System.Drawing.Point(86, 71);
|
|
this.tbGateway.Name = "tbGateway";
|
|
this.tbGateway.Size = new System.Drawing.Size(128, 22);
|
|
this.tbGateway.TabIndex = 5;
|
|
this.tbGateway.Validating += new System.ComponentModel.CancelEventHandler(this.tbGateway_Validating);
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point(19, 120);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.btnCancel.TabIndex = 6;
|
|
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(139, 120);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(75, 23);
|
|
this.btnOK.TabIndex = 7;
|
|
this.btnOK.Text = "OK";
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|
//
|
|
// IPAddressEntry
|
|
//
|
|
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(226, 163);
|
|
this.Controls.Add(this.btnOK);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.tbGateway);
|
|
this.Controls.Add(this.tbNetmask);
|
|
this.Controls.Add(this.tbIPAddress);
|
|
this.Controls.Add(this.lblGateway);
|
|
this.Controls.Add(this.lblNetmask);
|
|
this.Controls.Add(this.lblIP);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Name = "IPAddressEntry";
|
|
this.Text = "IP-Address Entry";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label lblIP;
|
|
private System.Windows.Forms.Label lblNetmask;
|
|
private System.Windows.Forms.Label lblGateway;
|
|
private System.Windows.Forms.TextBox tbIPAddress;
|
|
private System.Windows.Forms.TextBox tbNetmask;
|
|
private System.Windows.Forms.TextBox tbGateway;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnOK;
|
|
}
|
|
} |