126 lines
5.1 KiB
C#
126 lines
5.1 KiB
C#
namespace AsyncRAT_Sharp.Forms
|
|
{
|
|
partial class FormPorts
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPorts));
|
|
this.textPorts = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.textPassword = new System.Windows.Forms.TextBox();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.groupBox1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// textPorts
|
|
//
|
|
this.textPorts.Location = new System.Drawing.Point(129, 48);
|
|
this.textPorts.Name = "textPorts";
|
|
this.textPorts.Size = new System.Drawing.Size(423, 26);
|
|
this.textPorts.TabIndex = 0;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(6, 51);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(46, 20);
|
|
this.label1.TabIndex = 1;
|
|
this.label1.Text = "Ports";
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.label2);
|
|
this.groupBox1.Controls.Add(this.textPassword);
|
|
this.groupBox1.Controls.Add(this.label1);
|
|
this.groupBox1.Controls.Add(this.textPorts);
|
|
this.groupBox1.Location = new System.Drawing.Point(13, 13);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(558, 160);
|
|
this.groupBox1.TabIndex = 2;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "Settings";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(6, 103);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(78, 20);
|
|
this.label2.TabIndex = 3;
|
|
this.label2.Text = "Password";
|
|
//
|
|
// textPassword
|
|
//
|
|
this.textPassword.Location = new System.Drawing.Point(129, 100);
|
|
this.textPassword.Name = "textPassword";
|
|
this.textPassword.Size = new System.Drawing.Size(423, 26);
|
|
this.textPassword.TabIndex = 2;
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(23, 203);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(542, 50);
|
|
this.button1.TabIndex = 0;
|
|
this.button1.Text = "Start AsyncRAT";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// FormPorts
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(583, 265);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "FormPorts";
|
|
this.ShowInTaskbar = false;
|
|
this.Text = "PortsFrm";
|
|
this.TopMost = true;
|
|
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.PortsFrm_FormClosed);
|
|
this.Load += new System.EventHandler(this.PortsFrm_Load);
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.groupBox1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Button button1;
|
|
public System.Windows.Forms.TextBox textPorts;
|
|
public System.Windows.Forms.TextBox textPassword;
|
|
}
|
|
} |