85 lines
3.2 KiB
C#
85 lines
3.2 KiB
C#
namespace PingTool
|
|
{
|
|
partial class PingToolForm
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
this.lblThisPcIP = new System.Windows.Forms.Label();
|
|
this.timerPing = new System.Windows.Forms.Timer(this.components);
|
|
this.lblDestinationPcIPs = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// lblThisPcIP
|
|
//
|
|
this.lblThisPcIP.AutoSize = true;
|
|
this.lblThisPcIP.Location = new System.Drawing.Point(13, 13);
|
|
this.lblThisPcIP.Name = "lblThisPcIP";
|
|
this.lblThisPcIP.Size = new System.Drawing.Size(79, 13);
|
|
this.lblThisPcIP.TabIndex = 0;
|
|
this.lblThisPcIP.Text = "IP máy hiện tại:";
|
|
//
|
|
// timerPing
|
|
//
|
|
this.timerPing.Enabled = true;
|
|
this.timerPing.Interval = 500;
|
|
//
|
|
// lblDestinationPcIPs
|
|
//
|
|
this.lblDestinationPcIPs.AutoSize = true;
|
|
this.lblDestinationPcIPs.Location = new System.Drawing.Point(13, 50);
|
|
this.lblDestinationPcIPs.Name = "lblDestinationPcIPs";
|
|
this.lblDestinationPcIPs.Size = new System.Drawing.Size(95, 13);
|
|
this.lblDestinationPcIPs.TabIndex = 1;
|
|
this.lblDestinationPcIPs.Text = "DestinationPC IPs:";
|
|
//
|
|
// PingToolForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.lblDestinationPcIPs);
|
|
this.Controls.Add(this.lblThisPcIP);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.Name = "PingToolForm";
|
|
this.Text = "Ping Tool";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.PingToolForm_FormClosing);
|
|
this.Resize += new System.EventHandler(this.PingToolForm_Resize);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label lblThisPcIP;
|
|
private System.Windows.Forms.Timer timerPing;
|
|
private System.Windows.Forms.Label lblDestinationPcIPs;
|
|
}
|
|
}
|
|
|