namespace AsyncRAT_Sharp { partial class Form1 { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.listView1 = new System.Windows.Forms.ListView(); this.lv_ip = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.lv_user = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.lv_os = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); this.sendMessageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.sendFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.closeConnectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.statusStrip1 = new System.Windows.Forms.StatusStrip(); this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); this.ping = new System.Windows.Forms.Timer(this.components); this.UpdateUI = new System.Windows.Forms.Timer(this.components); this.contextMenuStrip1.SuspendLayout(); this.statusStrip1.SuspendLayout(); this.SuspendLayout(); // // listView1 // this.listView1.BorderStyle = System.Windows.Forms.BorderStyle.None; this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.lv_ip, this.lv_user, this.lv_os}); this.listView1.ContextMenuStrip = this.contextMenuStrip1; this.listView1.Dock = System.Windows.Forms.DockStyle.Fill; this.listView1.FullRowSelect = true; this.listView1.GridLines = true; this.listView1.Location = new System.Drawing.Point(0, 0); this.listView1.Name = "listView1"; this.listView1.Size = new System.Drawing.Size(849, 342); this.listView1.TabIndex = 0; this.listView1.UseCompatibleStateImageBehavior = false; this.listView1.View = System.Windows.Forms.View.Details; this.listView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.listView1_KeyDown); this.listView1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.listView1_MouseMove); // // lv_ip // this.lv_ip.Text = "IP"; this.lv_ip.Width = 150; // // lv_user // this.lv_user.Text = "USER"; this.lv_user.Width = 150; // // lv_os // this.lv_os.Text = "OS"; this.lv_os.Width = 300; // // contextMenuStrip1 // this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24); this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.sendMessageToolStripMenuItem, this.sendFileToolStripMenuItem, this.closeConnectionToolStripMenuItem}); this.contextMenuStrip1.Name = "contextMenuStrip1"; this.contextMenuStrip1.Size = new System.Drawing.Size(223, 94); // // sendMessageToolStripMenuItem // this.sendMessageToolStripMenuItem.Name = "sendMessageToolStripMenuItem"; this.sendMessageToolStripMenuItem.Size = new System.Drawing.Size(222, 30); this.sendMessageToolStripMenuItem.Text = "Send Message"; this.sendMessageToolStripMenuItem.Click += new System.EventHandler(this.sendMessageToolStripMenuItem_Click); // // sendFileToolStripMenuItem // this.sendFileToolStripMenuItem.Name = "sendFileToolStripMenuItem"; this.sendFileToolStripMenuItem.Size = new System.Drawing.Size(222, 30); this.sendFileToolStripMenuItem.Text = "Send File"; this.sendFileToolStripMenuItem.Click += new System.EventHandler(this.sendFileToolStripMenuItem_Click); // // closeConnectionToolStripMenuItem // this.closeConnectionToolStripMenuItem.Name = "closeConnectionToolStripMenuItem"; this.closeConnectionToolStripMenuItem.Size = new System.Drawing.Size(222, 30); this.closeConnectionToolStripMenuItem.Text = "Close Connection"; this.closeConnectionToolStripMenuItem.Click += new System.EventHandler(this.closeConnectionToolStripMenuItem_Click); // // statusStrip1 // this.statusStrip1.ImageScalingSize = new System.Drawing.Size(24, 24); this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusLabel1}); this.statusStrip1.Location = new System.Drawing.Point(0, 342); this.statusStrip1.Name = "statusStrip1"; this.statusStrip1.Size = new System.Drawing.Size(849, 30); this.statusStrip1.TabIndex = 1; this.statusStrip1.Text = "statusStrip1"; // // toolStripStatusLabel1 // this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; this.toolStripStatusLabel1.Size = new System.Drawing.Size(24, 25); this.toolStripStatusLabel1.Text = "..."; // // ping // this.ping.Enabled = true; this.ping.Interval = 50000; this.ping.Tick += new System.EventHandler(this.ping_Tick); // // UpdateUI // this.UpdateUI.Enabled = true; this.UpdateUI.Interval = 1000; this.UpdateUI.Tick += new System.EventHandler(this.UpdateUI_Tick); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(849, 372); this.Controls.Add(this.listView1); this.Controls.Add(this.statusStrip1); this.Name = "Form1"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "AsyncRAT-Sharp // NYAN CAT"; this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed); this.Load += new System.EventHandler(this.Form1_Load); this.contextMenuStrip1.ResumeLayout(false); this.statusStrip1.ResumeLayout(false); this.statusStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion public System.Windows.Forms.ListView listView1; private System.Windows.Forms.ColumnHeader lv_ip; private System.Windows.Forms.ColumnHeader lv_user; private System.Windows.Forms.ColumnHeader lv_os; private System.Windows.Forms.ContextMenuStrip contextMenuStrip1; private System.Windows.Forms.ToolStripMenuItem sendMessageToolStripMenuItem; private System.Windows.Forms.StatusStrip statusStrip1; private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1; private System.Windows.Forms.Timer ping; private System.Windows.Forms.ToolStripMenuItem sendFileToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem closeConnectionToolStripMenuItem; private System.Windows.Forms.Timer UpdateUI; } }