mirror of https://github.com/quasar/Quasar.git
119 lines
5.2 KiB
C#
119 lines
5.2 KiB
C#
namespace xServer.Forms
|
|
{
|
|
partial class FrmUploadAndExecute
|
|
{
|
|
/// <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(FrmUploadAndExecute));
|
|
this.btnUploadAndExecute = new System.Windows.Forms.Button();
|
|
this.chkRunHidden = new System.Windows.Forms.CheckBox();
|
|
this.lblPath = new System.Windows.Forms.Label();
|
|
this.txtPath = new System.Windows.Forms.TextBox();
|
|
this.btnBrowse = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// btnUploadAndExecute
|
|
//
|
|
this.btnUploadAndExecute.Location = new System.Drawing.Point(273, 37);
|
|
this.btnUploadAndExecute.Name = "btnUploadAndExecute";
|
|
this.btnUploadAndExecute.Size = new System.Drawing.Size(111, 23);
|
|
this.btnUploadAndExecute.TabIndex = 4;
|
|
this.btnUploadAndExecute.Text = "Upload && Execute";
|
|
this.btnUploadAndExecute.UseVisualStyleBackColor = true;
|
|
this.btnUploadAndExecute.Click += new System.EventHandler(this.btnUploadAndExecute_Click);
|
|
//
|
|
// chkRunHidden
|
|
//
|
|
this.chkRunHidden.AutoSize = true;
|
|
this.chkRunHidden.Location = new System.Drawing.Point(48, 41);
|
|
this.chkRunHidden.Name = "chkRunHidden";
|
|
this.chkRunHidden.Size = new System.Drawing.Size(106, 17);
|
|
this.chkRunHidden.TabIndex = 2;
|
|
this.chkRunHidden.Text = "Run file hidden";
|
|
this.chkRunHidden.UseVisualStyleBackColor = true;
|
|
//
|
|
// lblPath
|
|
//
|
|
this.lblPath.AutoSize = true;
|
|
this.lblPath.Location = new System.Drawing.Point(12, 9);
|
|
this.lblPath.Name = "lblPath";
|
|
this.lblPath.Size = new System.Drawing.Size(33, 13);
|
|
this.lblPath.TabIndex = 0;
|
|
this.lblPath.Text = "Path:";
|
|
//
|
|
// txtPath
|
|
//
|
|
this.txtPath.Location = new System.Drawing.Point(51, 6);
|
|
this.txtPath.MaxLength = 300;
|
|
this.txtPath.Name = "txtPath";
|
|
this.txtPath.ReadOnly = true;
|
|
this.txtPath.Size = new System.Drawing.Size(333, 22);
|
|
this.txtPath.TabIndex = 1;
|
|
//
|
|
// btnBrowse
|
|
//
|
|
this.btnBrowse.Location = new System.Drawing.Point(184, 37);
|
|
this.btnBrowse.Name = "btnBrowse";
|
|
this.btnBrowse.Size = new System.Drawing.Size(83, 23);
|
|
this.btnBrowse.TabIndex = 3;
|
|
this.btnBrowse.Text = "Browse...";
|
|
this.btnBrowse.UseVisualStyleBackColor = true;
|
|
this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
|
|
//
|
|
// frmUploadAndExecute
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(396, 72);
|
|
this.Controls.Add(this.btnBrowse);
|
|
this.Controls.Add(this.txtPath);
|
|
this.Controls.Add(this.lblPath);
|
|
this.Controls.Add(this.chkRunHidden);
|
|
this.Controls.Add(this.btnUploadAndExecute);
|
|
this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "frmUploadAndExecute";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "xRAT 2.0 - Upload & Execute []";
|
|
this.Load += new System.EventHandler(this.FrmUploadAndExecute_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button btnUploadAndExecute;
|
|
private System.Windows.Forms.CheckBox chkRunHidden;
|
|
private System.Windows.Forms.Label lblPath;
|
|
private System.Windows.Forms.TextBox txtPath;
|
|
private System.Windows.Forms.Button btnBrowse;
|
|
}
|
|
} |