mirror of https://github.com/quasar/Quasar.git
210 lines
9.9 KiB
C#
210 lines
9.9 KiB
C#
namespace xRAT_2.Forms
|
|
{
|
|
partial class frmRemoteDesktop
|
|
{
|
|
/// <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(frmRemoteDesktop));
|
|
this.btnStart = new System.Windows.Forms.Button();
|
|
this.btnStop = new System.Windows.Forms.Button();
|
|
this.barQuality = new System.Windows.Forms.TrackBar();
|
|
this.lblQuality = new System.Windows.Forms.Label();
|
|
this.lblQualityShow = new System.Windows.Forms.Label();
|
|
this.btnMouse = new System.Windows.Forms.Button();
|
|
this.picDesktop = new System.Windows.Forms.PictureBox();
|
|
this.panelTop = new System.Windows.Forms.Panel();
|
|
this.btnHide = new System.Windows.Forms.Button();
|
|
this.btnShow = new System.Windows.Forms.Button();
|
|
this.cbMonitors = new System.Windows.Forms.ComboBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.barQuality)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.picDesktop)).BeginInit();
|
|
this.panelTop.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// btnStart
|
|
//
|
|
this.btnStart.Location = new System.Drawing.Point(15, 5);
|
|
this.btnStart.Name = "btnStart";
|
|
this.btnStart.Size = new System.Drawing.Size(68, 23);
|
|
this.btnStart.TabIndex = 1;
|
|
this.btnStart.Text = "Start";
|
|
this.btnStart.UseVisualStyleBackColor = true;
|
|
this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
|
|
//
|
|
// btnStop
|
|
//
|
|
this.btnStop.Enabled = false;
|
|
this.btnStop.Location = new System.Drawing.Point(96, 5);
|
|
this.btnStop.Name = "btnStop";
|
|
this.btnStop.Size = new System.Drawing.Size(68, 23);
|
|
this.btnStop.TabIndex = 2;
|
|
this.btnStop.Text = "Stop";
|
|
this.btnStop.UseVisualStyleBackColor = true;
|
|
this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
|
|
//
|
|
// barQuality
|
|
//
|
|
this.barQuality.Location = new System.Drawing.Point(230, 3);
|
|
this.barQuality.Maximum = 2;
|
|
this.barQuality.Minimum = 1;
|
|
this.barQuality.Name = "barQuality";
|
|
this.barQuality.Size = new System.Drawing.Size(104, 45);
|
|
this.barQuality.TabIndex = 3;
|
|
this.barQuality.Value = 1;
|
|
this.barQuality.Scroll += new System.EventHandler(this.barQuality_Scroll);
|
|
//
|
|
// lblQuality
|
|
//
|
|
this.lblQuality.AutoSize = true;
|
|
this.lblQuality.Location = new System.Drawing.Point(184, 18);
|
|
this.lblQuality.Name = "lblQuality";
|
|
this.lblQuality.Size = new System.Drawing.Size(40, 13);
|
|
this.lblQuality.TabIndex = 4;
|
|
this.lblQuality.Text = "Mode:";
|
|
//
|
|
// lblQualityShow
|
|
//
|
|
this.lblQualityShow.AutoSize = true;
|
|
this.lblQualityShow.Location = new System.Drawing.Point(262, 38);
|
|
this.lblQualityShow.Name = "lblQualityShow";
|
|
this.lblQualityShow.Size = new System.Drawing.Size(39, 13);
|
|
this.lblQualityShow.TabIndex = 5;
|
|
this.lblQualityShow.Text = "Speed";
|
|
//
|
|
// btnMouse
|
|
//
|
|
this.btnMouse.Image = global::xRAT_2.Properties.Resources.mouse_delete;
|
|
this.btnMouse.Location = new System.Drawing.Point(340, 10);
|
|
this.btnMouse.Name = "btnMouse";
|
|
this.btnMouse.Size = new System.Drawing.Size(28, 28);
|
|
this.btnMouse.TabIndex = 6;
|
|
this.btnMouse.UseVisualStyleBackColor = true;
|
|
this.btnMouse.Click += new System.EventHandler(this.btnMouse_Click);
|
|
//
|
|
// picDesktop
|
|
//
|
|
this.picDesktop.BackColor = System.Drawing.Color.Black;
|
|
this.picDesktop.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.picDesktop.Cursor = System.Windows.Forms.Cursors.Default;
|
|
this.picDesktop.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.picDesktop.Location = new System.Drawing.Point(0, 0);
|
|
this.picDesktop.Name = "picDesktop";
|
|
this.picDesktop.Size = new System.Drawing.Size(797, 501);
|
|
this.picDesktop.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
|
this.picDesktop.TabIndex = 0;
|
|
this.picDesktop.TabStop = false;
|
|
this.picDesktop.MouseClick += new System.Windows.Forms.MouseEventHandler(this.picDesktop_MouseClick);
|
|
this.picDesktop.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.picDesktop_MouseDoubleClick);
|
|
//
|
|
// panelTop
|
|
//
|
|
this.panelTop.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.panelTop.Controls.Add(this.cbMonitors);
|
|
this.panelTop.Controls.Add(this.btnHide);
|
|
this.panelTop.Controls.Add(this.lblQualityShow);
|
|
this.panelTop.Controls.Add(this.btnMouse);
|
|
this.panelTop.Controls.Add(this.btnStart);
|
|
this.panelTop.Controls.Add(this.btnStop);
|
|
this.panelTop.Controls.Add(this.lblQuality);
|
|
this.panelTop.Controls.Add(this.barQuality);
|
|
this.panelTop.Location = new System.Drawing.Point(189, 0);
|
|
this.panelTop.Name = "panelTop";
|
|
this.panelTop.Size = new System.Drawing.Size(384, 57);
|
|
this.panelTop.TabIndex = 7;
|
|
//
|
|
// btnHide
|
|
//
|
|
this.btnHide.Location = new System.Drawing.Point(170, 37);
|
|
this.btnHide.Name = "btnHide";
|
|
this.btnHide.Size = new System.Drawing.Size(54, 19);
|
|
this.btnHide.TabIndex = 7;
|
|
this.btnHide.Text = "Hide";
|
|
this.btnHide.UseVisualStyleBackColor = true;
|
|
this.btnHide.Click += new System.EventHandler(this.btnHide_Click);
|
|
//
|
|
// btnShow
|
|
//
|
|
this.btnShow.Location = new System.Drawing.Point(377, 69);
|
|
this.btnShow.Name = "btnShow";
|
|
this.btnShow.Size = new System.Drawing.Size(54, 19);
|
|
this.btnShow.TabIndex = 8;
|
|
this.btnShow.Text = "Show";
|
|
this.btnShow.UseVisualStyleBackColor = true;
|
|
this.btnShow.Visible = false;
|
|
this.btnShow.Click += new System.EventHandler(this.btnShow_Click);
|
|
//
|
|
// cbMonitors
|
|
//
|
|
this.cbMonitors.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.cbMonitors.FormattingEnabled = true;
|
|
this.cbMonitors.Location = new System.Drawing.Point(15, 30);
|
|
this.cbMonitors.Name = "cbMonitors";
|
|
this.cbMonitors.Size = new System.Drawing.Size(149, 21);
|
|
this.cbMonitors.TabIndex = 8;
|
|
//
|
|
// frmRemoteDesktop
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(797, 501);
|
|
this.Controls.Add(this.btnShow);
|
|
this.Controls.Add(this.panelTop);
|
|
this.Controls.Add(this.picDesktop);
|
|
this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.KeyPreview = true;
|
|
this.MinimizeBox = false;
|
|
this.MinimumSize = new System.Drawing.Size(570, 421);
|
|
this.Name = "frmRemoteDesktop";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "xRAT 2.0 - Remote Desktop []";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmRemoteDesktop_FormClosing);
|
|
this.Load += new System.EventHandler(this.frmRemoteDesktop_Load);
|
|
this.Resize += new System.EventHandler(this.frmRemoteDesktop_Resize);
|
|
((System.ComponentModel.ISupportInitialize)(this.barQuality)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.picDesktop)).EndInit();
|
|
this.panelTop.ResumeLayout(false);
|
|
this.panelTop.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button btnStart;
|
|
private System.Windows.Forms.Button btnStop;
|
|
public System.Windows.Forms.PictureBox picDesktop;
|
|
private System.Windows.Forms.TrackBar barQuality;
|
|
private System.Windows.Forms.Label lblQuality;
|
|
private System.Windows.Forms.Label lblQualityShow;
|
|
private System.Windows.Forms.Button btnMouse;
|
|
private System.Windows.Forms.Panel panelTop;
|
|
private System.Windows.Forms.Button btnHide;
|
|
private System.Windows.Forms.Button btnShow;
|
|
public System.Windows.Forms.ComboBox cbMonitors;
|
|
}
|
|
} |