📄 form1.designer.cs
字号:
namespace ICMP_App
{
partial class Form1
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.hostTextBox = new System.Windows.Forms.TextBox();
this.pktDataTextBox = new System.Windows.Forms.TextBox();
this.simpleBtn = new System.Windows.Forms.Button();
this.advPingBtn = new System.Windows.Forms.Button();
this.traceRtBtn = new System.Windows.Forms.Button();
this.findMaskBtn = new System.Windows.Forms.Button();
this.clearBtn = new System.Windows.Forms.Button();
this.msgListBox = new System.Windows.Forms.ListBox();
this.advPingStopBtn = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(10, 19);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(137, 12);
this.label2.TabIndex = 1;
this.label2.Text = "Enter Host/IP to ping:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(12, 59);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(77, 12);
this.label3.TabIndex = 2;
this.label3.Text = "Packet data:";
//
// hostTextBox
//
this.hostTextBox.Location = new System.Drawing.Point(175, 16);
this.hostTextBox.Name = "hostTextBox";
this.hostTextBox.Size = new System.Drawing.Size(201, 21);
this.hostTextBox.TabIndex = 4;
//
// pktDataTextBox
//
this.pktDataTextBox.Location = new System.Drawing.Point(175, 50);
this.pktDataTextBox.Name = "pktDataTextBox";
this.pktDataTextBox.Size = new System.Drawing.Size(201, 21);
this.pktDataTextBox.TabIndex = 5;
//
// simpleBtn
//
this.simpleBtn.Location = new System.Drawing.Point(14, 98);
this.simpleBtn.Name = "simpleBtn";
this.simpleBtn.Size = new System.Drawing.Size(75, 23);
this.simpleBtn.TabIndex = 6;
this.simpleBtn.Text = "简单Ping";
this.simpleBtn.UseVisualStyleBackColor = true;
this.simpleBtn.Click += new System.EventHandler(this.simpleBtn_Click);
//
// advPingBtn
//
this.advPingBtn.Location = new System.Drawing.Point(95, 98);
this.advPingBtn.Name = "advPingBtn";
this.advPingBtn.Size = new System.Drawing.Size(93, 23);
this.advPingBtn.TabIndex = 7;
this.advPingBtn.Text = "高级Ping开始";
this.advPingBtn.UseVisualStyleBackColor = true;
this.advPingBtn.Click += new System.EventHandler(this.advPingBtn_Click);
//
// traceRtBtn
//
this.traceRtBtn.Location = new System.Drawing.Point(285, 98);
this.traceRtBtn.Name = "traceRtBtn";
this.traceRtBtn.Size = new System.Drawing.Size(75, 23);
this.traceRtBtn.TabIndex = 8;
this.traceRtBtn.Text = "TraceRoute";
this.traceRtBtn.UseVisualStyleBackColor = true;
this.traceRtBtn.Click += new System.EventHandler(this.traceRtBtn_Click);
//
// findMaskBtn
//
this.findMaskBtn.Location = new System.Drawing.Point(366, 98);
this.findMaskBtn.Name = "findMaskBtn";
this.findMaskBtn.Size = new System.Drawing.Size(91, 23);
this.findMaskBtn.TabIndex = 9;
this.findMaskBtn.Text = "寻找子网掩码";
this.findMaskBtn.UseVisualStyleBackColor = true;
this.findMaskBtn.Click += new System.EventHandler(this.findMaskBtn_Click);
//
// clearBtn
//
this.clearBtn.Location = new System.Drawing.Point(410, 50);
this.clearBtn.Name = "clearBtn";
this.clearBtn.Size = new System.Drawing.Size(75, 23);
this.clearBtn.TabIndex = 10;
this.clearBtn.Text = "清空列表框";
this.clearBtn.UseVisualStyleBackColor = true;
this.clearBtn.Click += new System.EventHandler(this.clearBtn_Click);
//
// msgListBox
//
this.msgListBox.FormattingEnabled = true;
this.msgListBox.ItemHeight = 12;
this.msgListBox.Location = new System.Drawing.Point(12, 127);
this.msgListBox.Name = "msgListBox";
this.msgListBox.Size = new System.Drawing.Size(473, 256);
this.msgListBox.TabIndex = 11;
//
// advPingStopBtn
//
this.advPingStopBtn.Enabled = false;
this.advPingStopBtn.Location = new System.Drawing.Point(193, 98);
this.advPingStopBtn.Name = "advPingStopBtn";
this.advPingStopBtn.Size = new System.Drawing.Size(86, 23);
this.advPingStopBtn.TabIndex = 12;
this.advPingStopBtn.Text = "高级Ping停止";
this.advPingStopBtn.UseVisualStyleBackColor = true;
this.advPingStopBtn.Click += new System.EventHandler(this.advPingStopBtn_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(508, 394);
this.Controls.Add(this.advPingStopBtn);
this.Controls.Add(this.msgListBox);
this.Controls.Add(this.clearBtn);
this.Controls.Add(this.findMaskBtn);
this.Controls.Add(this.traceRtBtn);
this.Controls.Add(this.advPingBtn);
this.Controls.Add(this.simpleBtn);
this.Controls.Add(this.pktDataTextBox);
this.Controls.Add(this.hostTextBox);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Name = "Form1";
this.Text = "ICMPApp";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox hostTextBox;
private System.Windows.Forms.TextBox pktDataTextBox;
private System.Windows.Forms.Button simpleBtn;
private System.Windows.Forms.Button advPingBtn;
private System.Windows.Forms.Button traceRtBtn;
private System.Windows.Forms.Button findMaskBtn;
private System.Windows.Forms.Button clearBtn;
private System.Windows.Forms.ListBox msgListBox;
private System.Windows.Forms.Button advPingStopBtn;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -