-> IPScanner added

-> PortScanner added
This commit is contained in:
Kevin Krüger
2022-01-17 15:17:34 +01:00
parent 1dc3d93edf
commit bb6c229875
57 changed files with 9227 additions and 26 deletions

133
Networking/Pages/WF_IPScanner.Designer.cs generated Normal file
View File

@@ -0,0 +1,133 @@
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.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.HideSelection = false;
this.lvIPList.Location = new System.Drawing.Point(12, 87);
this.lvIPList.MultiSelect = false;
this.lvIPList.Name = "lvIPList";
this.lvIPList.Size = new System.Drawing.Size(714, 282);
this.lvIPList.TabIndex = 1;
this.lvIPList.UseCompatibleStateImageBehavior = false;
this.lvIPList.View = System.Windows.Forms.View.Details;
//
// chIP
//
this.chIP.Text = "IP";
this.chIP.Width = 93;
//
// chPing
//
this.chPing.Text = "Ping";
//
// chHost
//
this.chHost.Text = "Host";
this.chHost.Width = 88;
//
// chRecognized
//
this.chRecognized.Text = "Recognized as";
this.chRecognized.Width = 119;
//
// btnScan
//
this.btnScan.Location = new System.Drawing.Point(323, 58);
this.btnScan.Name = "btnScan";
this.btnScan.Size = new System.Drawing.Size(75, 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(9, 64);
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(66, 61);
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;
}
}