This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
CC-Clicker/CC-Clicker 2.0/MainForm.Designer.cs

194 lines
9.0 KiB
C#
Raw Permalink Normal View History

2019-04-23 15:14:09 +02:00
namespace CC_Clicker_2._0
2018-07-07 15:03:45 +02:00
{
2019-11-10 00:28:55 +01:00
partial class MainForm
2018-07-07 15:03:45 +02:00
{
/// <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();
2020-03-11 18:53:32 +01:00
_ov.Dispose();
2018-07-07 15:03:45 +02:00
}
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()
{
this.components = new System.ComponentModel.Container();
2020-03-11 18:53:32 +01:00
System.ComponentModel.ComponentResourceManager resources =
new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
2019-04-23 15:14:09 +02:00
this.clickBox = new System.Windows.Forms.CheckBox();
this.rightBox = new System.Windows.Forms.CheckBox();
this.timeBox = new System.Windows.Forms.TextBox();
this.keyButton = new System.Windows.Forms.Button();
2019-11-10 00:28:55 +01:00
this.delmBox = new System.Windows.Forms.CheckBox();
this.timer = new System.Windows.Forms.Timer(this.components);
2019-04-23 15:14:09 +02:00
this.delmVal = new System.Windows.Forms.TextBox();
2019-11-10 00:28:55 +01:00
this.fixBox = new System.Windows.Forms.CheckBox();
this.fixButton = new System.Windows.Forms.Button();
2019-11-10 12:13:07 +01:00
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
2018-07-07 15:03:45 +02:00
this.SuspendLayout();
//
2019-04-23 15:14:09 +02:00
// clickBox
//
this.clickBox.AutoSize = true;
2019-11-10 12:13:07 +01:00
this.clickBox.Enabled = false;
2020-03-11 18:53:32 +01:00
this.clickBox.Location = new System.Drawing.Point(14, 16);
2019-04-23 15:14:09 +02:00
this.clickBox.Name = "clickBox";
2020-03-11 18:53:32 +01:00
this.clickBox.Size = new System.Drawing.Size(52, 19);
2019-04-23 15:14:09 +02:00
this.clickBox.TabIndex = 0;
this.clickBox.Text = "Click";
2019-11-11 13:35:39 +01:00
this.toolTip.SetToolTip(this.clickBox, "Check to start listening for the activation sequence");
2019-04-23 15:14:09 +02:00
this.clickBox.UseVisualStyleBackColor = true;
this.clickBox.CheckedChanged += new System.EventHandler(this.clickBox_CheckedChanged);
//
// rightBox
//
this.rightBox.AutoSize = true;
2020-03-11 18:53:32 +01:00
this.rightBox.Location = new System.Drawing.Point(14, 48);
2019-04-23 15:14:09 +02:00
this.rightBox.Name = "rightBox";
2020-03-11 18:53:32 +01:00
this.rightBox.Size = new System.Drawing.Size(54, 19);
2019-04-23 15:14:09 +02:00
this.rightBox.TabIndex = 1;
this.rightBox.Text = "Right";
2019-11-11 13:35:39 +01:00
this.toolTip.SetToolTip(this.rightBox, "Check to use right clicks instead of left clicks");
2019-04-23 15:14:09 +02:00
this.rightBox.UseVisualStyleBackColor = true;
//
// timeBox
//
2020-03-11 18:53:32 +01:00
this.timeBox.Anchor =
((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top |
System.Windows.Forms.AnchorStyles.Right)));
2019-04-23 15:14:09 +02:00
this.timeBox.BackColor = System.Drawing.Color.White;
2020-03-11 18:53:32 +01:00
this.timeBox.Location = new System.Drawing.Point(118, 14);
2019-04-23 15:14:09 +02:00
this.timeBox.Name = "timeBox";
2020-03-11 18:53:32 +01:00
this.timeBox.Size = new System.Drawing.Size(116, 23);
2019-04-23 15:14:09 +02:00
this.timeBox.TabIndex = 2;
this.timeBox.Text = "100";
2020-03-11 18:53:32 +01:00
this.toolTip.SetToolTip(this.timeBox,
"Base delay between clicks in milliseconds. Must be an even number above 0");
2019-11-10 12:13:07 +01:00
this.timeBox.TextChanged += new System.EventHandler(this.timeBox_TextChanged);
2019-04-23 15:14:09 +02:00
//
// keyButton
//
2020-03-11 18:53:32 +01:00
this.keyButton.Anchor =
((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top |
System.Windows.Forms.AnchorStyles.Right)));
2019-04-23 15:14:09 +02:00
this.keyButton.BackColor = System.Drawing.Color.Red;
2020-03-11 18:53:32 +01:00
this.keyButton.Location = new System.Drawing.Point(118, 44);
2019-04-23 15:14:09 +02:00
this.keyButton.Name = "keyButton";
2020-03-11 18:53:32 +01:00
this.keyButton.Size = new System.Drawing.Size(117, 27);
2019-04-23 15:14:09 +02:00
this.keyButton.TabIndex = 3;
this.keyButton.Text = "Click to set key";
2019-11-11 13:35:39 +01:00
this.toolTip.SetToolTip(this.keyButton, "Click and press a key to set it as the (de-)activation sequence");
2019-04-23 15:14:09 +02:00
this.keyButton.UseVisualStyleBackColor = false;
this.keyButton.Click += new System.EventHandler(this.keyButton_Click);
//
2019-11-10 00:28:55 +01:00
// delmBox
2019-04-23 15:14:09 +02:00
//
2019-11-10 00:28:55 +01:00
this.delmBox.AutoSize = true;
2020-03-11 18:53:32 +01:00
this.delmBox.Location = new System.Drawing.Point(14, 80);
2019-11-10 00:28:55 +01:00
this.delmBox.Name = "delmBox";
2020-03-11 18:53:32 +01:00
this.delmBox.Size = new System.Drawing.Size(75, 19);
2019-11-10 00:28:55 +01:00
this.delmBox.TabIndex = 4;
this.delmBox.Text = "DelayMix";
2020-03-11 18:53:32 +01:00
this.toolTip.SetToolTip(this.delmBox,
"Check to generate more human clicks by waiting a random amount of time instead of" +
" a fixed amount");
2019-11-10 00:28:55 +01:00
this.delmBox.UseVisualStyleBackColor = true;
2019-04-23 15:14:09 +02:00
//
2019-11-10 00:28:55 +01:00
// timer
2019-04-23 15:14:09 +02:00
//
2019-11-10 12:13:07 +01:00
this.timer.Tick += new System.EventHandler(this.timer_Tick);
2019-04-23 15:14:09 +02:00
//
// delmVal
//
this.delmVal.BackColor = System.Drawing.Color.White;
2020-03-11 18:53:32 +01:00
this.delmVal.Location = new System.Drawing.Point(118, 77);
2019-04-23 15:14:09 +02:00
this.delmVal.Name = "delmVal";
2020-03-11 18:53:32 +01:00
this.delmVal.Size = new System.Drawing.Size(116, 23);
2019-04-23 15:14:09 +02:00
this.delmVal.TabIndex = 5;
this.delmVal.Text = "4";
2019-11-11 13:35:39 +01:00
this.toolTip.SetToolTip(this.delmVal, "Maximum Delay that will be randomly added by DelayMix");
2019-04-23 15:14:09 +02:00
this.delmVal.TextChanged += new System.EventHandler(this.delmVal_TextChanged);
2018-07-07 15:03:45 +02:00
//
2019-11-10 00:28:55 +01:00
// fixBox
//
this.fixBox.AutoSize = true;
2020-03-11 18:53:32 +01:00
this.fixBox.Location = new System.Drawing.Point(14, 112);
2019-11-10 00:28:55 +01:00
this.fixBox.Name = "fixBox";
2020-03-11 18:53:32 +01:00
this.fixBox.Size = new System.Drawing.Size(87, 19);
2019-11-10 00:28:55 +01:00
this.fixBox.TabIndex = 6;
this.fixBox.Text = "Fix Position";
2019-11-11 13:35:39 +01:00
this.toolTip.SetToolTip(this.fixBox, "Check to use a fixed click position instead of the Cursors position");
2019-11-10 00:28:55 +01:00
this.fixBox.UseVisualStyleBackColor = true;
this.fixBox.CheckedChanged += new System.EventHandler(this.fixBox_CheckedChanged);
//
// fixButton
//
2020-03-11 18:53:32 +01:00
this.fixButton.Location = new System.Drawing.Point(118, 107);
2019-11-10 00:28:55 +01:00
this.fixButton.Name = "fixButton";
2020-03-11 18:53:32 +01:00
this.fixButton.Size = new System.Drawing.Size(117, 27);
2019-11-10 00:28:55 +01:00
this.fixButton.TabIndex = 7;
this.fixButton.Text = "Set Position";
2019-11-11 13:35:39 +01:00
this.toolTip.SetToolTip(this.fixButton, "Set the location where clicks will be simulated");
2019-11-10 00:28:55 +01:00
this.fixButton.UseVisualStyleBackColor = true;
this.fixButton.Click += new System.EventHandler(this.fixButton_Click);
this.fixButton.MouseEnter += new System.EventHandler(this.fixButton_MouseEnter);
this.fixButton.MouseLeave += new System.EventHandler(this.fixButton_MouseLeave);
//
// MainForm
2018-07-07 15:03:45 +02:00
//
2020-03-11 18:53:32 +01:00
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
2018-07-07 15:03:45 +02:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2020-03-11 18:53:32 +01:00
this.ClientSize = new System.Drawing.Size(260, 157);
2019-11-10 00:28:55 +01:00
this.Controls.Add(this.fixButton);
this.Controls.Add(this.fixBox);
2019-04-23 15:14:09 +02:00
this.Controls.Add(this.delmVal);
2019-11-10 00:28:55 +01:00
this.Controls.Add(this.delmBox);
2019-04-23 15:14:09 +02:00
this.Controls.Add(this.keyButton);
this.Controls.Add(this.timeBox);
this.Controls.Add(this.rightBox);
this.Controls.Add(this.clickBox);
2018-07-07 15:03:45 +02:00
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
2020-03-11 18:53:32 +01:00
this.Icon = ((System.Drawing.Icon) (resources.GetObject("$this.Icon")));
2019-04-23 15:14:09 +02:00
this.MaximizeBox = false;
2020-03-11 18:53:32 +01:00
this.MaximumSize = new System.Drawing.Size(266, 186);
2019-11-10 12:13:07 +01:00
this.MinimizeBox = false;
2020-03-11 18:53:32 +01:00
this.MinimumSize = new System.Drawing.Size(266, 186);
2019-11-10 00:28:55 +01:00
this.Name = "MainForm";
2019-04-23 15:14:09 +02:00
this.Text = "CC-Clicker 2.0";
2018-07-07 15:03:45 +02:00
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
2019-04-23 15:14:09 +02:00
private System.Windows.Forms.CheckBox clickBox;
private System.Windows.Forms.CheckBox rightBox;
private System.Windows.Forms.TextBox timeBox;
private System.Windows.Forms.Button keyButton;
2019-11-10 00:28:55 +01:00
private System.Windows.Forms.CheckBox delmBox;
private System.Windows.Forms.Timer timer;
2019-04-23 15:14:09 +02:00
private System.Windows.Forms.TextBox delmVal;
2019-11-10 00:28:55 +01:00
private System.Windows.Forms.CheckBox fixBox;
private System.Windows.Forms.Button fixButton;
2019-11-10 12:13:07 +01:00
private System.Windows.Forms.ToolTip toolTip;
2018-07-07 15:03:45 +02:00
}
}