138 lines
5.8 KiB
C#
138 lines
5.8 KiB
C#
|
|
namespace Networking.Pages
|
|
{
|
|
partial class WF_IPScanner
|
|
{
|
|
/// <summary>
|
|
/// Erforderliche Designervariable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Verwendete Ressourcen bereinigen.
|
|
/// </summary>
|
|
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Vom Komponenten-Designer generierter Code
|
|
|
|
/// <summary>
|
|
/// Erforderliche Methode für die Designerunterstützung.
|
|
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.lvIPList = new System.Windows.Forms.ListView();
|
|
this.chIP = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.chPing = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.chHost = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.chRecognized = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.btnScan = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.tbIPRange = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// lvIPList
|
|
//
|
|
this.lvIPList.Activation = System.Windows.Forms.ItemActivation.OneClick;
|
|
this.lvIPList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.lvIPList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.chIP,
|
|
this.chPing,
|
|
this.chHost,
|
|
this.chRecognized});
|
|
this.lvIPList.FullRowSelect = true;
|
|
this.lvIPList.GridLines = true;
|
|
this.lvIPList.HideSelection = false;
|
|
this.lvIPList.HoverSelection = true;
|
|
this.lvIPList.Location = new System.Drawing.Point(0, 32);
|
|
this.lvIPList.MultiSelect = false;
|
|
this.lvIPList.Name = "lvIPList";
|
|
this.lvIPList.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
|
this.lvIPList.Size = new System.Drawing.Size(800, 418);
|
|
this.lvIPList.TabIndex = 1;
|
|
this.lvIPList.UseCompatibleStateImageBehavior = false;
|
|
this.lvIPList.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// chIP
|
|
//
|
|
this.chIP.Text = "IP";
|
|
this.chIP.Width = 191;
|
|
//
|
|
// chPing
|
|
//
|
|
this.chPing.Text = "Ping";
|
|
//
|
|
// chHost
|
|
//
|
|
this.chHost.Text = "Host";
|
|
this.chHost.Width = 241;
|
|
//
|
|
// chRecognized
|
|
//
|
|
this.chRecognized.Text = "Recognized as";
|
|
this.chRecognized.Width = 296;
|
|
//
|
|
// btnScan
|
|
//
|
|
this.btnScan.Location = new System.Drawing.Point(319, 4);
|
|
this.btnScan.Name = "btnScan";
|
|
this.btnScan.Size = new System.Drawing.Size(112, 23);
|
|
this.btnScan.TabIndex = 7;
|
|
this.btnScan.Text = "Scan";
|
|
this.btnScan.UseVisualStyleBackColor = true;
|
|
this.btnScan.Click += new System.EventHandler(this.btnScan_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(5, 9);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(50, 13);
|
|
this.label1.TabIndex = 6;
|
|
this.label1.Text = "IP range:";
|
|
//
|
|
// tbIPRange
|
|
//
|
|
this.tbIPRange.Location = new System.Drawing.Point(62, 6);
|
|
this.tbIPRange.Name = "tbIPRange";
|
|
this.tbIPRange.Size = new System.Drawing.Size(251, 20);
|
|
this.tbIPRange.TabIndex = 8;
|
|
//
|
|
// WF_IPScanner
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.tbIPRange);
|
|
this.Controls.Add(this.btnScan);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.lvIPList);
|
|
this.Name = "WF_IPScanner";
|
|
this.Size = new System.Drawing.Size(800, 450);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListView lvIPList;
|
|
private System.Windows.Forms.ColumnHeader chIP;
|
|
private System.Windows.Forms.ColumnHeader chPing;
|
|
private System.Windows.Forms.ColumnHeader chHost;
|
|
private System.Windows.Forms.ColumnHeader chRecognized;
|
|
private System.Windows.Forms.Button btnScan;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.TextBox tbIPRange;
|
|
}
|
|
}
|