Update FormFileManager.Designer.cs
This commit is contained in:
parent
8cb80a9908
commit
ec3b05b3e4
130
AsyncRAT-C#/Server/Forms/FormFileManager.Designer.cs
generated
130
AsyncRAT-C#/Server/Forms/FormFileManager.Designer.cs
generated
@ -29,10 +29,10 @@
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Folders", System.Windows.Forms.HorizontalAlignment.Left);
|
||||
System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("File", System.Windows.Forms.HorizontalAlignment.Left);
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormFileManager));
|
||||
this.listView1 = new System.Windows.Forms.ListView();
|
||||
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
||||
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
||||
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||
this.backToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.rEFRESHToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
@ -48,9 +48,16 @@
|
||||
this.eXECUTEToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.renameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.cutToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.dELETEToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.sevenZiplStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.installToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.zipToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.unzipToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.createFolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.openClientFolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
@ -60,13 +67,6 @@
|
||||
this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
|
||||
this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
|
||||
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
||||
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.cutToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.sevenZiplStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.installToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.zipToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.unzipToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.contextMenuStrip1.SuspendLayout();
|
||||
this.statusStrip1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
@ -78,10 +78,14 @@
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.listView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
||||
this.columnHeader1,
|
||||
this.columnHeader2});
|
||||
this.listView1.ContextMenuStrip = this.contextMenuStrip1;
|
||||
listViewGroup1.Header = "Folders";
|
||||
listViewGroup1.Name = "Folders";
|
||||
listViewGroup2.Header = "File";
|
||||
listViewGroup2.Name = "File";
|
||||
this.listView1.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
|
||||
listViewGroup1,
|
||||
listViewGroup2});
|
||||
this.listView1.HideSelection = false;
|
||||
this.listView1.LargeImageList = this.imageList1;
|
||||
this.listView1.Location = new System.Drawing.Point(0, 1);
|
||||
@ -117,7 +121,7 @@
|
||||
this.toolStripSeparator3,
|
||||
this.openClientFolderToolStripMenuItem});
|
||||
this.contextMenuStrip1.Name = "contextMenuStrip1";
|
||||
this.contextMenuStrip1.Size = new System.Drawing.Size(241, 509);
|
||||
this.contextMenuStrip1.Size = new System.Drawing.Size(233, 476);
|
||||
//
|
||||
// backToolStripMenuItem
|
||||
//
|
||||
@ -218,6 +222,13 @@
|
||||
this.copyToolStripMenuItem.Text = "Copy";
|
||||
this.copyToolStripMenuItem.Click += new System.EventHandler(this.CopyToolStripMenuItem_Click);
|
||||
//
|
||||
// cutToolStripMenuItem1
|
||||
//
|
||||
this.cutToolStripMenuItem1.Name = "cutToolStripMenuItem1";
|
||||
this.cutToolStripMenuItem1.Size = new System.Drawing.Size(232, 32);
|
||||
this.cutToolStripMenuItem1.Text = "Cut";
|
||||
this.cutToolStripMenuItem1.Click += new System.EventHandler(this.CutToolStripMenuItem1_Click);
|
||||
//
|
||||
// pasteToolStripMenuItem
|
||||
//
|
||||
this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
|
||||
@ -237,6 +248,48 @@
|
||||
this.toolStripSeparator4.Name = "toolStripSeparator4";
|
||||
this.toolStripSeparator4.Size = new System.Drawing.Size(229, 6);
|
||||
//
|
||||
// sevenZiplStripMenuItem1
|
||||
//
|
||||
this.sevenZiplStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.installToolStripMenuItem,
|
||||
this.toolStripSeparator6,
|
||||
this.zipToolStripMenuItem,
|
||||
this.unzipToolStripMenuItem});
|
||||
this.sevenZiplStripMenuItem1.Name = "sevenZiplStripMenuItem1";
|
||||
this.sevenZiplStripMenuItem1.Size = new System.Drawing.Size(232, 32);
|
||||
this.sevenZiplStripMenuItem1.Text = "7-Zip";
|
||||
//
|
||||
// installToolStripMenuItem
|
||||
//
|
||||
this.installToolStripMenuItem.Name = "installToolStripMenuItem";
|
||||
this.installToolStripMenuItem.Size = new System.Drawing.Size(263, 34);
|
||||
this.installToolStripMenuItem.Text = "Hidden Installation";
|
||||
this.installToolStripMenuItem.Click += new System.EventHandler(this.InstallToolStripMenuItem_Click);
|
||||
//
|
||||
// toolStripSeparator6
|
||||
//
|
||||
this.toolStripSeparator6.Name = "toolStripSeparator6";
|
||||
this.toolStripSeparator6.Size = new System.Drawing.Size(260, 6);
|
||||
//
|
||||
// zipToolStripMenuItem
|
||||
//
|
||||
this.zipToolStripMenuItem.Name = "zipToolStripMenuItem";
|
||||
this.zipToolStripMenuItem.Size = new System.Drawing.Size(263, 34);
|
||||
this.zipToolStripMenuItem.Text = "Zip";
|
||||
this.zipToolStripMenuItem.Click += new System.EventHandler(this.ZipToolStripMenuItem_Click);
|
||||
//
|
||||
// unzipToolStripMenuItem
|
||||
//
|
||||
this.unzipToolStripMenuItem.Name = "unzipToolStripMenuItem";
|
||||
this.unzipToolStripMenuItem.Size = new System.Drawing.Size(263, 34);
|
||||
this.unzipToolStripMenuItem.Text = "Unzip";
|
||||
this.unzipToolStripMenuItem.Click += new System.EventHandler(this.UnzipToolStripMenuItem_Click);
|
||||
//
|
||||
// toolStripSeparator5
|
||||
//
|
||||
this.toolStripSeparator5.Name = "toolStripSeparator5";
|
||||
this.toolStripSeparator5.Size = new System.Drawing.Size(229, 6);
|
||||
//
|
||||
// createFolderToolStripMenuItem
|
||||
//
|
||||
this.createFolderToolStripMenuItem.Name = "createFolderToolStripMenuItem";
|
||||
@ -302,55 +355,6 @@
|
||||
this.timer1.Interval = 1000;
|
||||
this.timer1.Tick += new System.EventHandler(this.Timer1_Tick);
|
||||
//
|
||||
// toolStripSeparator5
|
||||
//
|
||||
this.toolStripSeparator5.Name = "toolStripSeparator5";
|
||||
this.toolStripSeparator5.Size = new System.Drawing.Size(229, 6);
|
||||
//
|
||||
// cutToolStripMenuItem1
|
||||
//
|
||||
this.cutToolStripMenuItem1.Name = "cutToolStripMenuItem1";
|
||||
this.cutToolStripMenuItem1.Size = new System.Drawing.Size(232, 32);
|
||||
this.cutToolStripMenuItem1.Text = "Cut";
|
||||
this.cutToolStripMenuItem1.Click += new System.EventHandler(this.CutToolStripMenuItem1_Click);
|
||||
//
|
||||
// sevenZiplStripMenuItem1
|
||||
//
|
||||
this.sevenZiplStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.installToolStripMenuItem,
|
||||
this.toolStripSeparator6,
|
||||
this.zipToolStripMenuItem,
|
||||
this.unzipToolStripMenuItem});
|
||||
this.sevenZiplStripMenuItem1.Name = "sevenZiplStripMenuItem1";
|
||||
this.sevenZiplStripMenuItem1.Size = new System.Drawing.Size(240, 32);
|
||||
this.sevenZiplStripMenuItem1.Text = "7-Zip";
|
||||
//
|
||||
// installToolStripMenuItem
|
||||
//
|
||||
this.installToolStripMenuItem.Name = "installToolStripMenuItem";
|
||||
this.installToolStripMenuItem.Size = new System.Drawing.Size(270, 34);
|
||||
this.installToolStripMenuItem.Text = "Hidden Installation";
|
||||
this.installToolStripMenuItem.Click += new System.EventHandler(this.InstallToolStripMenuItem_Click);
|
||||
//
|
||||
// zipToolStripMenuItem
|
||||
//
|
||||
this.zipToolStripMenuItem.Name = "zipToolStripMenuItem";
|
||||
this.zipToolStripMenuItem.Size = new System.Drawing.Size(270, 34);
|
||||
this.zipToolStripMenuItem.Text = "Zip";
|
||||
this.zipToolStripMenuItem.Click += new System.EventHandler(this.ZipToolStripMenuItem_Click);
|
||||
//
|
||||
// unzipToolStripMenuItem
|
||||
//
|
||||
this.unzipToolStripMenuItem.Name = "unzipToolStripMenuItem";
|
||||
this.unzipToolStripMenuItem.Size = new System.Drawing.Size(270, 34);
|
||||
this.unzipToolStripMenuItem.Text = "Unzip";
|
||||
this.unzipToolStripMenuItem.Click += new System.EventHandler(this.UnzipToolStripMenuItem_Click);
|
||||
//
|
||||
// toolStripSeparator6
|
||||
//
|
||||
this.toolStripSeparator6.Name = "toolStripSeparator6";
|
||||
this.toolStripSeparator6.Size = new System.Drawing.Size(267, 6);
|
||||
//
|
||||
// FormFileManager
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
|
||||
@ -379,8 +383,6 @@
|
||||
public System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
|
||||
public System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel2;
|
||||
private System.Windows.Forms.ToolStripMenuItem downloadToolStripMenuItem;
|
||||
public System.Windows.Forms.ColumnHeader columnHeader1;
|
||||
private System.Windows.Forms.ColumnHeader columnHeader2;
|
||||
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
|
||||
private System.Windows.Forms.ToolStripMenuItem uPLOADToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem dELETEToolStripMenuItem;
|
||||
|
Loading…
x
Reference in New Issue
Block a user