AsyncRAT-C-Sharp/AsyncRAT-C#/Server/Forms/FormMiner.Designer.cs
NYAN CAT 0d0f0792d7 Update
fixed bugs
added miner
2019-10-05 15:25:03 +03:00

179 lines
8.0 KiB
C#

namespace Server.Forms
{
partial class FormMiner
{
/// <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(FormMiner));
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label4 = new System.Windows.Forms.Label();
this.comboInjection = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.txtPass = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.btnOK = new System.Windows.Forms.Button();
this.txtWallet = new System.Windows.Forms.TextBox();
this.txtPool = new System.Windows.Forms.TextBox();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.comboInjection);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.txtPass);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.txtWallet);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.txtPool);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(840, 236);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Settings";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(17, 181);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(73, 20);
this.label4.TabIndex = 6;
this.label4.Text = "Injection:";
//
// comboInjection
//
this.comboInjection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboInjection.FormattingEnabled = true;
this.comboInjection.Items.AddRange(new object[] {
"RegAsm.exe",
"MSBuild.exe",
"RegSvcs.exe"});
this.comboInjection.Location = new System.Drawing.Point(154, 178);
this.comboInjection.Name = "comboInjection";
this.comboInjection.Size = new System.Drawing.Size(201, 28);
this.comboInjection.TabIndex = 7;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(17, 133);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(78, 20);
this.label3.TabIndex = 5;
this.label3.Text = "Password";
//
// txtPass
//
this.txtPass.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::Server.Properties.Settings.Default, "txtxmrPass", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.txtPass.Location = new System.Drawing.Point(154, 130);
this.txtPass.Name = "txtPass";
this.txtPass.Size = new System.Drawing.Size(663, 26);
this.txtPass.TabIndex = 4;
this.txtPass.Text = global::Server.Properties.Settings.Default.txtxmrPass;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(17, 87);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 20);
this.label2.TabIndex = 3;
this.label2.Text = "Wallet";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(17, 43);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(73, 20);
this.label1.TabIndex = 1;
this.label1.Text = "Pool:Port";
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(12, 274);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(840, 58);
this.btnOK.TabIndex = 1;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.BtnOK_Click);
//
// txtWallet
//
this.txtWallet.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::Server.Properties.Settings.Default, "txtWallet", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.txtWallet.Location = new System.Drawing.Point(154, 84);
this.txtWallet.Name = "txtWallet";
this.txtWallet.Size = new System.Drawing.Size(663, 26);
this.txtWallet.TabIndex = 2;
this.txtWallet.Text = global::Server.Properties.Settings.Default.txtWallet;
//
// txtPool
//
this.txtPool.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::Server.Properties.Settings.Default, "txtPool", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.txtPool.Location = new System.Drawing.Point(154, 40);
this.txtPool.Name = "txtPool";
this.txtPool.Size = new System.Drawing.Size(663, 26);
this.txtPool.TabIndex = 0;
this.txtPool.Text = global::Server.Properties.Settings.Default.txtPool;
//
// FormMiner
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(864, 357);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.groupBox1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FormMiner";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "XMR Miner | AsyncRAT";
this.Load += new System.EventHandler(this.FormMiner_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
public System.Windows.Forms.TextBox txtPool;
public System.Windows.Forms.TextBox txtWallet;
public System.Windows.Forms.TextBox txtPass;
public System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Label label4;
public System.Windows.Forms.ComboBox comboInjection;
}
}