113 lines
4.6 KiB
C#
113 lines
4.6 KiB
C#
namespace VAR.Toolbox.UI
|
|
{
|
|
partial class FrmIPScan
|
|
{
|
|
/// <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.ctrOutput = new VAR.Toolbox.Controls.CtrOutput();
|
|
this.btnScan = new VAR.Toolbox.Controls.CButton();
|
|
this.lblStatus = new System.Windows.Forms.Label();
|
|
this.btnStop = new VAR.Toolbox.Controls.CButton();
|
|
this.txtSubnet = new VAR.Toolbox.Controls.TextBoxMonospace();
|
|
this.SuspendLayout();
|
|
//
|
|
// lsvResult
|
|
//
|
|
this.ctrOutput.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.ctrOutput.Location = new System.Drawing.Point(9, 59);
|
|
this.ctrOutput.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.ctrOutput.Name = "lsvResult";
|
|
this.ctrOutput.Size = new System.Drawing.Size(350, 238);
|
|
this.ctrOutput.TabIndex = 0;
|
|
//
|
|
// btnScan
|
|
//
|
|
this.btnScan.Location = new System.Drawing.Point(9, 8);
|
|
this.btnScan.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.btnScan.Name = "btnScan";
|
|
this.btnScan.Size = new System.Drawing.Size(61, 21);
|
|
this.btnScan.TabIndex = 1;
|
|
this.btnScan.Text = "Scan";
|
|
this.btnScan.UseVisualStyleBackColor = true;
|
|
this.btnScan.Click += new System.EventHandler(this.BtnScan_Click);
|
|
//
|
|
// lblStatus
|
|
//
|
|
this.lblStatus.AutoSize = true;
|
|
this.lblStatus.Location = new System.Drawing.Point(165, 12);
|
|
this.lblStatus.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
|
this.lblStatus.Name = "lblStatus";
|
|
this.lblStatus.Size = new System.Drawing.Size(47, 13);
|
|
this.lblStatus.TabIndex = 2;
|
|
this.lblStatus.Text = "lblStatus";
|
|
//
|
|
// btnStop
|
|
//
|
|
this.btnStop.Location = new System.Drawing.Point(73, 8);
|
|
this.btnStop.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.btnStop.Name = "btnStop";
|
|
this.btnStop.Size = new System.Drawing.Size(61, 21);
|
|
this.btnStop.TabIndex = 3;
|
|
this.btnStop.Text = "Stop";
|
|
this.btnStop.UseVisualStyleBackColor = true;
|
|
this.btnStop.Click += new System.EventHandler(this.BtnStop_Click);
|
|
//
|
|
// txtSubnet
|
|
//
|
|
this.txtSubnet.Location = new System.Drawing.Point(9, 34);
|
|
this.txtSubnet.Name = "txtSubnet";
|
|
this.txtSubnet.Size = new System.Drawing.Size(100, 20);
|
|
this.txtSubnet.TabIndex = 4;
|
|
this.txtSubnet.Text = "192.168.0.";
|
|
//
|
|
// FrmIPScan
|
|
//
|
|
this.ClientSize = new System.Drawing.Size(365, 307);
|
|
this.Controls.Add(this.txtSubnet);
|
|
this.Controls.Add(this.btnStop);
|
|
this.Controls.Add(this.lblStatus);
|
|
this.Controls.Add(this.btnScan);
|
|
this.Controls.Add(this.ctrOutput);
|
|
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.Name = "FrmIPScan";
|
|
this.Text = "IPScan";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private VAR.Toolbox.Controls.CtrOutput ctrOutput;
|
|
private VAR.Toolbox.Controls.CButton btnScan;
|
|
private System.Windows.Forms.Label lblStatus;
|
|
private VAR.Toolbox.Controls.CButton btnStop;
|
|
private VAR.Toolbox.Controls.TextBoxMonospace txtSubnet;
|
|
}
|
|
} |