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-Functions/W32.Test/Form1.Designer.cs

594 lines
31 KiB
C#
Raw Normal View History

2019-09-07 10:12:24 +02:00
namespace CC_Functions.W32.Test
{
partial class Form1
{
/// <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()
{
this.exit = new System.Windows.Forms.Button();
this.keyboard_log = new System.Windows.Forms.TextBox();
this.keyboard = new System.Windows.Forms.GroupBox();
this.keyboard_enabled = new System.Windows.Forms.CheckBox();
this.mouse_log = new System.Windows.Forms.TextBox();
this.mouse_enabled = new System.Windows.Forms.CheckBox();
this.wnd_action_pos_h_label = new System.Windows.Forms.Label();
this.wnd_action_pos_w_label = new System.Windows.Forms.Label();
this.wnd_action_pos_h_bar = new System.Windows.Forms.TrackBar();
this.wnd_action_pos_w_bar = new System.Windows.Forms.TrackBar();
this.wnd_action_pos_y_label = new System.Windows.Forms.Label();
this.wnd_action_pos_x_label = new System.Windows.Forms.Label();
this.wnd_action_pos_y_bar = new System.Windows.Forms.TrackBar();
this.wnd_action_pos_x_bar = new System.Windows.Forms.TrackBar();
this.wnd_action_pos = new System.Windows.Forms.Button();
this.mouse = new System.Windows.Forms.GroupBox();
this.power = new System.Windows.Forms.GroupBox();
this.power_execute = new System.Windows.Forms.Button();
this.power_reason_label = new System.Windows.Forms.Label();
this.power_mod_label = new System.Windows.Forms.Label();
this.power_mod_box = new System.Windows.Forms.ComboBox();
this.power_reason_box = new System.Windows.Forms.ComboBox();
this.power_mode_label = new System.Windows.Forms.Label();
this.power_mode_box = new System.Windows.Forms.ComboBox();
this.wnd_select_mouse = new System.Windows.Forms.Button();
this.wnd_action_destroy = new System.Windows.Forms.Button();
this.wnd_action_front = new System.Windows.Forms.Button();
this.wnd_action_enabled = new System.Windows.Forms.CheckBox();
this.wnd_action_title_get = new System.Windows.Forms.Button();
this.wnd_action_title_set = new System.Windows.Forms.Button();
this.wnd_select_title_box = new System.Windows.Forms.TextBox();
this.wnd_selet_class_button = new System.Windows.Forms.Button();
this.wnd_select_title_button = new System.Windows.Forms.Button();
this.wnd_select_selected = new System.Windows.Forms.Label();
this.wnd_select_self = new System.Windows.Forms.Button();
this.wnd = new System.Windows.Forms.GroupBox();
this.wnd_select_list = new System.Windows.Forms.Button();
this.wnd_action_overlay = new System.Windows.Forms.CheckBox();
2019-09-11 11:22:16 +02:00
this.wnd_action_style = new System.Windows.Forms.ComboBox();
2019-11-29 21:27:24 +01:00
this.wnd_action_visible = new System.Windows.Forms.CheckBox();
this.wnd_action_icon = new System.Windows.Forms.Panel();
this.wnd_select_class_box = new System.Windows.Forms.TextBox();
2019-09-07 10:12:24 +02:00
this.keyboard.SuspendLayout();
((System.ComponentModel.ISupportInitialize) (this.wnd_action_pos_h_bar)).BeginInit();
((System.ComponentModel.ISupportInitialize) (this.wnd_action_pos_w_bar)).BeginInit();
((System.ComponentModel.ISupportInitialize) (this.wnd_action_pos_y_bar)).BeginInit();
((System.ComponentModel.ISupportInitialize) (this.wnd_action_pos_x_bar)).BeginInit();
2019-09-07 10:12:24 +02:00
this.mouse.SuspendLayout();
this.power.SuspendLayout();
this.wnd.SuspendLayout();
this.SuspendLayout();
//
// exit
//
this.exit.BackColor = System.Drawing.Color.Black;
this.exit.Font = new System.Drawing.Font("Microsoft Sans Serif", 36F, System.Drawing.FontStyle.Regular,
System.Drawing.GraphicsUnit.Point, ((byte) (0)));
2019-09-07 10:12:24 +02:00
this.exit.ForeColor = System.Drawing.Color.White;
this.exit.Location = new System.Drawing.Point(308, 135);
2019-09-07 10:12:24 +02:00
this.exit.Name = "exit";
this.exit.Size = new System.Drawing.Size(41, 43);
2019-09-07 10:12:24 +02:00
this.exit.TabIndex = 9;
this.exit.Text = "°";
this.exit.UseVisualStyleBackColor = false;
this.exit.Click += new System.EventHandler(this.Exit_Click);
this.exit.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Exit_MouseDown);
this.exit.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Exit_MouseMove);
this.exit.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Exit_MouseUp);
//
// keyboard_log
//
this.keyboard_log.Location = new System.Drawing.Point(7, 48);
2019-09-07 10:12:24 +02:00
this.keyboard_log.Multiline = true;
this.keyboard_log.Name = "keyboard_log";
this.keyboard_log.ReadOnly = true;
this.keyboard_log.Size = new System.Drawing.Size(333, 172);
2019-09-07 10:12:24 +02:00
this.keyboard_log.TabIndex = 2;
this.keyboard_log.TextChanged += new System.EventHandler(this.Keyboard_log_TextChanged);
//
// keyboard
//
this.keyboard.Controls.Add(this.keyboard_log);
this.keyboard.Controls.Add(this.keyboard_enabled);
this.keyboard.Location = new System.Drawing.Point(308, 185);
2019-09-07 10:12:24 +02:00
this.keyboard.Name = "keyboard";
this.keyboard.Size = new System.Drawing.Size(348, 228);
2019-09-07 10:12:24 +02:00
this.keyboard.TabIndex = 8;
this.keyboard.TabStop = false;
this.keyboard.Text = "CC-Functions.W32.KeyboardHook";
//
// keyboard_enabled
//
this.keyboard_enabled.AutoSize = true;
this.keyboard_enabled.Location = new System.Drawing.Point(7, 22);
2019-09-07 10:12:24 +02:00
this.keyboard_enabled.Name = "keyboard_enabled";
this.keyboard_enabled.Size = new System.Drawing.Size(68, 19);
2019-09-07 10:12:24 +02:00
this.keyboard_enabled.TabIndex = 0;
this.keyboard_enabled.Text = "Enabled";
this.keyboard_enabled.UseVisualStyleBackColor = true;
this.keyboard_enabled.CheckedChanged += new System.EventHandler(this.Keyboard_enabled_CheckedChanged);
//
// mouse_log
//
this.mouse_log.Location = new System.Drawing.Point(7, 48);
2019-09-07 10:12:24 +02:00
this.mouse_log.Multiline = true;
this.mouse_log.Name = "mouse_log";
this.mouse_log.ReadOnly = true;
this.mouse_log.Size = new System.Drawing.Size(285, 109);
2019-09-07 10:12:24 +02:00
this.mouse_log.TabIndex = 1;
this.mouse_log.TextChanged += new System.EventHandler(this.Mouse_log_TextChanged);
//
// mouse_enabled
//
this.mouse_enabled.AutoSize = true;
this.mouse_enabled.Location = new System.Drawing.Point(7, 22);
2019-09-07 10:12:24 +02:00
this.mouse_enabled.Name = "mouse_enabled";
this.mouse_enabled.Size = new System.Drawing.Size(68, 19);
2019-09-07 10:12:24 +02:00
this.mouse_enabled.TabIndex = 0;
this.mouse_enabled.Text = "Enabled";
this.mouse_enabled.UseVisualStyleBackColor = true;
this.mouse_enabled.CheckedChanged += new System.EventHandler(this.Mouse_enabled_CheckedChanged);
//
// wnd_action_pos_h_label
//
this.wnd_action_pos_h_label.AutoSize = true;
this.wnd_action_pos_h_label.Location = new System.Drawing.Point(135, 242);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_h_label.Name = "wnd_action_pos_h_label";
this.wnd_action_pos_h_label.Size = new System.Drawing.Size(19, 15);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_h_label.TabIndex = 19;
this.wnd_action_pos_h_label.Text = "H:";
//
// wnd_action_pos_w_label
//
this.wnd_action_pos_w_label.AutoSize = true;
this.wnd_action_pos_w_label.Location = new System.Drawing.Point(135, 215);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_w_label.Name = "wnd_action_pos_w_label";
this.wnd_action_pos_w_label.Size = new System.Drawing.Size(21, 15);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_w_label.TabIndex = 18;
this.wnd_action_pos_w_label.Text = "W:";
//
// wnd_action_pos_h_bar
//
this.wnd_action_pos_h_bar.Location = new System.Drawing.Point(159, 242);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_h_bar.Name = "wnd_action_pos_h_bar";
this.wnd_action_pos_h_bar.Size = new System.Drawing.Size(121, 45);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_h_bar.TabIndex = 21;
//
// wnd_action_pos_w_bar
//
this.wnd_action_pos_w_bar.Location = new System.Drawing.Point(159, 215);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_w_bar.Name = "wnd_action_pos_w_bar";
this.wnd_action_pos_w_bar.Size = new System.Drawing.Size(121, 45);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_w_bar.TabIndex = 20;
//
// wnd_action_pos_y_label
//
this.wnd_action_pos_y_label.AutoSize = true;
this.wnd_action_pos_y_label.Location = new System.Drawing.Point(7, 242);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_y_label.Name = "wnd_action_pos_y_label";
this.wnd_action_pos_y_label.Size = new System.Drawing.Size(17, 15);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_y_label.TabIndex = 15;
this.wnd_action_pos_y_label.Text = "Y:";
//
// wnd_action_pos_x_label
//
this.wnd_action_pos_x_label.AutoSize = true;
this.wnd_action_pos_x_label.Location = new System.Drawing.Point(7, 215);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_x_label.Name = "wnd_action_pos_x_label";
this.wnd_action_pos_x_label.Size = new System.Drawing.Size(17, 15);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_x_label.TabIndex = 13;
this.wnd_action_pos_x_label.Text = "X:";
//
// wnd_action_pos_y_bar
//
this.wnd_action_pos_y_bar.Location = new System.Drawing.Point(20, 242);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_y_bar.Name = "wnd_action_pos_y_bar";
this.wnd_action_pos_y_bar.Size = new System.Drawing.Size(121, 45);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_y_bar.TabIndex = 17;
//
// wnd_action_pos_x_bar
//
this.wnd_action_pos_x_bar.Location = new System.Drawing.Point(20, 215);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_x_bar.Name = "wnd_action_pos_x_bar";
this.wnd_action_pos_x_bar.Size = new System.Drawing.Size(121, 45);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos_x_bar.TabIndex = 16;
//
// wnd_action_pos
//
this.wnd_action_pos.Location = new System.Drawing.Point(101, 185);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos.Name = "wnd_action_pos";
this.wnd_action_pos.Size = new System.Drawing.Size(87, 27);
2019-09-07 10:12:24 +02:00
this.wnd_action_pos.TabIndex = 14;
this.wnd_action_pos.Text = "Set Position";
this.wnd_action_pos.UseVisualStyleBackColor = true;
this.wnd_action_pos.Click += new System.EventHandler(this.Wnd_action_pos_Click);
//
// mouse
//
this.mouse.Controls.Add(this.mouse_log);
this.mouse.Controls.Add(this.mouse_enabled);
this.mouse.Location = new System.Drawing.Point(356, 13);
2019-09-07 10:12:24 +02:00
this.mouse.Name = "mouse";
this.mouse.Size = new System.Drawing.Size(300, 165);
2019-09-07 10:12:24 +02:00
this.mouse.TabIndex = 7;
this.mouse.TabStop = false;
this.mouse.Text = "CC-Functions.W32.MouseHook";
//
// power
//
this.power.Controls.Add(this.power_execute);
this.power.Controls.Add(this.power_reason_label);
this.power.Controls.Add(this.power_mod_label);
this.power.Controls.Add(this.power_mod_box);
this.power.Controls.Add(this.power_reason_box);
this.power.Controls.Add(this.power_mode_label);
this.power.Controls.Add(this.power_mode_box);
this.power.Location = new System.Drawing.Point(14, 13);
2019-09-07 10:12:24 +02:00
this.power.Name = "power";
this.power.Size = new System.Drawing.Size(335, 115);
2019-09-07 10:12:24 +02:00
this.power.TabIndex = 5;
this.power.TabStop = false;
this.power.Text = "CC-Functions.W32.Power";
//
// power_execute
//
this.power_execute.BackColor = System.Drawing.Color.DarkRed;
this.power_execute.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F,
System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (0)));
2019-09-07 10:12:24 +02:00
this.power_execute.ForeColor = System.Drawing.Color.White;
this.power_execute.Location = new System.Drawing.Point(233, 22);
2019-09-07 10:12:24 +02:00
this.power_execute.Name = "power_execute";
this.power_execute.Size = new System.Drawing.Size(94, 87);
2019-09-07 10:12:24 +02:00
this.power_execute.TabIndex = 6;
this.power_execute.Text = "DO IT";
this.power_execute.UseVisualStyleBackColor = false;
this.power_execute.Click += new System.EventHandler(this.Power_execute_Click);
//
// power_reason_label
//
this.power_reason_label.AutoSize = true;
this.power_reason_label.Location = new System.Drawing.Point(7, 57);
2019-09-07 10:12:24 +02:00
this.power_reason_label.Name = "power_reason_label";
this.power_reason_label.Size = new System.Drawing.Size(45, 15);
2019-09-07 10:12:24 +02:00
this.power_reason_label.TabIndex = 5;
this.power_reason_label.Text = "Reason";
//
// power_mod_label
//
this.power_mod_label.AutoSize = true;
this.power_mod_label.Location = new System.Drawing.Point(7, 88);
2019-09-07 10:12:24 +02:00
this.power_mod_label.Name = "power_mod_label";
this.power_mod_label.Size = new System.Drawing.Size(32, 15);
2019-09-07 10:12:24 +02:00
this.power_mod_label.TabIndex = 4;
this.power_mod_label.Text = "Mod";
//
// power_mod_box
//
this.power_mod_box.FormattingEnabled = true;
this.power_mod_box.Location = new System.Drawing.Point(65, 84);
2019-09-07 10:12:24 +02:00
this.power_mod_box.Name = "power_mod_box";
this.power_mod_box.Size = new System.Drawing.Size(160, 23);
2019-09-07 10:12:24 +02:00
this.power_mod_box.TabIndex = 2;
//
// power_reason_box
//
this.power_reason_box.FormattingEnabled = true;
this.power_reason_box.Location = new System.Drawing.Point(65, 53);
2019-09-07 10:12:24 +02:00
this.power_reason_box.Name = "power_reason_box";
this.power_reason_box.Size = new System.Drawing.Size(160, 23);
2019-09-07 10:12:24 +02:00
this.power_reason_box.TabIndex = 3;
//
// power_mode_label
//
this.power_mode_label.AutoSize = true;
this.power_mode_label.Location = new System.Drawing.Point(7, 25);
2019-09-07 10:12:24 +02:00
this.power_mode_label.Name = "power_mode_label";
this.power_mode_label.Size = new System.Drawing.Size(38, 15);
2019-09-07 10:12:24 +02:00
this.power_mode_label.TabIndex = 1;
this.power_mode_label.Text = "Mode";
//
// power_mode_box
//
this.power_mode_box.FormattingEnabled = true;
this.power_mode_box.Location = new System.Drawing.Point(65, 22);
2019-09-07 10:12:24 +02:00
this.power_mode_box.Name = "power_mode_box";
this.power_mode_box.Size = new System.Drawing.Size(160, 23);
2019-09-07 10:12:24 +02:00
this.power_mode_box.TabIndex = 0;
//
// wnd_select_mouse
//
this.wnd_select_mouse.Location = new System.Drawing.Point(222, 22);
2019-09-07 10:12:24 +02:00
this.wnd_select_mouse.Name = "wnd_select_mouse";
this.wnd_select_mouse.Size = new System.Drawing.Size(58, 27);
2019-09-07 10:12:24 +02:00
this.wnd_select_mouse.TabIndex = 12;
this.wnd_select_mouse.Text = "Mouse";
this.wnd_select_mouse.UseVisualStyleBackColor = true;
this.wnd_select_mouse.Click += new System.EventHandler(this.Wnd_select_mouse_Click);
//
// wnd_action_destroy
//
this.wnd_action_destroy.Location = new System.Drawing.Point(7, 185);
2019-09-07 10:12:24 +02:00
this.wnd_action_destroy.Name = "wnd_action_destroy";
this.wnd_action_destroy.Size = new System.Drawing.Size(87, 27);
2019-09-07 10:12:24 +02:00
this.wnd_action_destroy.TabIndex = 2;
this.wnd_action_destroy.Text = "Destroy";
this.wnd_action_destroy.UseVisualStyleBackColor = true;
this.wnd_action_destroy.Click += new System.EventHandler(this.Wnd_action_destroy_Click);
//
// wnd_action_front
//
this.wnd_action_front.Location = new System.Drawing.Point(196, 185);
2019-09-07 10:12:24 +02:00
this.wnd_action_front.Name = "wnd_action_front";
this.wnd_action_front.Size = new System.Drawing.Size(84, 27);
2019-09-07 10:12:24 +02:00
this.wnd_action_front.TabIndex = 10;
this.wnd_action_front.Text = "To Front";
this.wnd_action_front.UseVisualStyleBackColor = true;
this.wnd_action_front.Click += new System.EventHandler(this.Wnd_action_front_Click);
//
// wnd_action_enabled
//
this.wnd_action_enabled.AutoSize = true;
this.wnd_action_enabled.Location = new System.Drawing.Point(132, 127);
2019-09-07 10:12:24 +02:00
this.wnd_action_enabled.Name = "wnd_action_enabled";
this.wnd_action_enabled.Size = new System.Drawing.Size(68, 19);
2019-09-07 10:12:24 +02:00
this.wnd_action_enabled.TabIndex = 9;
this.wnd_action_enabled.Text = "Enabled";
this.wnd_action_enabled.UseVisualStyleBackColor = true;
this.wnd_action_enabled.CheckedChanged += new System.EventHandler(this.Wnd_action_enabled_CheckedChanged);
//
// wnd_action_title_get
//
this.wnd_action_title_get.Location = new System.Drawing.Point(237, 89);
2019-09-07 10:12:24 +02:00
this.wnd_action_title_get.Name = "wnd_action_title_get";
this.wnd_action_title_get.Size = new System.Drawing.Size(43, 27);
2019-09-07 10:12:24 +02:00
this.wnd_action_title_get.TabIndex = 8;
this.wnd_action_title_get.Text = "Get";
this.wnd_action_title_get.UseVisualStyleBackColor = true;
this.wnd_action_title_get.Click += new System.EventHandler(this.Wnd_action_title_get_Click);
//
// wnd_action_title_set
//
this.wnd_action_title_set.Location = new System.Drawing.Point(237, 55);
2019-09-07 10:12:24 +02:00
this.wnd_action_title_set.Name = "wnd_action_title_set";
this.wnd_action_title_set.Size = new System.Drawing.Size(43, 27);
2019-09-07 10:12:24 +02:00
this.wnd_action_title_set.TabIndex = 7;
this.wnd_action_title_set.Text = "Set";
this.wnd_action_title_set.UseVisualStyleBackColor = true;
this.wnd_action_title_set.Click += new System.EventHandler(this.Wnd_action_title_set_Click);
//
// wnd_select_title_box
//
this.wnd_select_title_box.Location = new System.Drawing.Point(108, 58);
2019-09-07 10:12:24 +02:00
this.wnd_select_title_box.Name = "wnd_select_title_box";
this.wnd_select_title_box.Size = new System.Drawing.Size(121, 23);
2019-09-07 10:12:24 +02:00
this.wnd_select_title_box.TabIndex = 6;
//
// wnd_selet_class_button
//
this.wnd_selet_class_button.Location = new System.Drawing.Point(7, 89);
2019-09-07 10:12:24 +02:00
this.wnd_selet_class_button.Name = "wnd_selet_class_button";
this.wnd_selet_class_button.Size = new System.Drawing.Size(94, 27);
2019-09-07 10:12:24 +02:00
this.wnd_selet_class_button.TabIndex = 4;
this.wnd_selet_class_button.Text = "Select (class):";
this.wnd_selet_class_button.UseVisualStyleBackColor = true;
this.wnd_selet_class_button.Click += new System.EventHandler(this.Wnd_selet_class_button_Click);
//
// wnd_select_title_button
//
this.wnd_select_title_button.Location = new System.Drawing.Point(7, 55);
2019-09-07 10:12:24 +02:00
this.wnd_select_title_button.Name = "wnd_select_title_button";
this.wnd_select_title_button.Size = new System.Drawing.Size(94, 27);
2019-09-07 10:12:24 +02:00
this.wnd_select_title_button.TabIndex = 2;
this.wnd_select_title_button.Text = "Select (title):";
this.wnd_select_title_button.UseVisualStyleBackColor = true;
this.wnd_select_title_button.Click += new System.EventHandler(this.Wnd_select_title_button_Click);
//
// wnd_select_selected
//
this.wnd_select_selected.AutoSize = true;
this.wnd_select_selected.Location = new System.Drawing.Point(108, 28);
2019-09-07 10:12:24 +02:00
this.wnd_select_selected.Name = "wnd_select_selected";
this.wnd_select_selected.Size = new System.Drawing.Size(93, 15);
2019-09-07 10:12:24 +02:00
this.wnd_select_selected.TabIndex = 1;
this.wnd_select_selected.Text = "Selected: 123456";
//
// wnd_select_self
//
this.wnd_select_self.Location = new System.Drawing.Point(7, 22);
2019-09-07 10:12:24 +02:00
this.wnd_select_self.Name = "wnd_select_self";
this.wnd_select_self.Size = new System.Drawing.Size(94, 27);
2019-09-07 10:12:24 +02:00
this.wnd_select_self.TabIndex = 0;
this.wnd_select_self.Text = "Select self";
this.wnd_select_self.UseVisualStyleBackColor = true;
this.wnd_select_self.Click += new System.EventHandler(this.Wnd_select_self_Click);
//
// wnd
//
this.wnd.Controls.Add(this.wnd_select_list);
2019-11-29 21:27:24 +01:00
this.wnd.Controls.Add(this.wnd_action_overlay);
2019-09-11 11:22:16 +02:00
this.wnd.Controls.Add(this.wnd_action_style);
this.wnd.Controls.Add(this.wnd_action_visible);
this.wnd.Controls.Add(this.wnd_action_icon);
2019-09-07 10:12:24 +02:00
this.wnd.Controls.Add(this.wnd_action_pos_h_label);
this.wnd.Controls.Add(this.wnd_action_pos_w_label);
this.wnd.Controls.Add(this.wnd_action_pos_h_bar);
this.wnd.Controls.Add(this.wnd_action_pos_w_bar);
this.wnd.Controls.Add(this.wnd_action_pos_y_label);
this.wnd.Controls.Add(this.wnd_action_pos_x_label);
this.wnd.Controls.Add(this.wnd_action_pos_y_bar);
this.wnd.Controls.Add(this.wnd_action_pos_x_bar);
this.wnd.Controls.Add(this.wnd_action_pos);
this.wnd.Controls.Add(this.wnd_select_mouse);
this.wnd.Controls.Add(this.wnd_action_destroy);
this.wnd.Controls.Add(this.wnd_action_front);
this.wnd.Controls.Add(this.wnd_action_enabled);
this.wnd.Controls.Add(this.wnd_action_title_get);
this.wnd.Controls.Add(this.wnd_action_title_set);
this.wnd.Controls.Add(this.wnd_select_title_box);
this.wnd.Controls.Add(this.wnd_select_class_box);
this.wnd.Controls.Add(this.wnd_selet_class_button);
this.wnd.Controls.Add(this.wnd_select_title_button);
this.wnd.Controls.Add(this.wnd_select_selected);
this.wnd.Controls.Add(this.wnd_select_self);
this.wnd.Location = new System.Drawing.Point(14, 135);
2019-09-07 10:12:24 +02:00
this.wnd.Name = "wnd";
this.wnd.Size = new System.Drawing.Size(287, 278);
2019-09-07 10:12:24 +02:00
this.wnd.TabIndex = 6;
this.wnd.TabStop = false;
this.wnd.Text = "CC-Functions.W32.Wnd32";
//
// wnd_select_list
//
this.wnd_select_list.Location = new System.Drawing.Point(7, 122);
this.wnd_select_list.Name = "wnd_select_list";
this.wnd_select_list.Size = new System.Drawing.Size(94, 27);
this.wnd_select_list.TabIndex = 26;
this.wnd_select_list.Text = "Select (list)";
this.wnd_select_list.UseVisualStyleBackColor = true;
this.wnd_select_list.Click += new System.EventHandler(this.wnd_select_list_Click);
//
// wnd_action_overlay
//
this.wnd_action_overlay.AutoSize = true;
this.wnd_action_overlay.Location = new System.Drawing.Point(159, 156);
this.wnd_action_overlay.Name = "wnd_action_overlay";
this.wnd_action_overlay.Size = new System.Drawing.Size(66, 19);
this.wnd_action_overlay.TabIndex = 25;
this.wnd_action_overlay.Text = "Overlay";
this.wnd_action_overlay.UseVisualStyleBackColor = true;
this.wnd_action_overlay.CheckedChanged += new System.EventHandler(this.wnd_action_overlay_CheckedChanged);
//
2019-11-29 21:27:24 +01:00
// wnd_action_style
2019-09-11 11:22:16 +02:00
//
2019-11-29 21:27:24 +01:00
this.wnd_action_style.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.wnd_action_style.FormattingEnabled = true;
this.wnd_action_style.Location = new System.Drawing.Point(7, 153);
2019-11-29 21:27:24 +01:00
this.wnd_action_style.Name = "wnd_action_style";
this.wnd_action_style.Size = new System.Drawing.Size(140, 23);
2019-11-29 21:27:24 +01:00
this.wnd_action_style.TabIndex = 24;
this.wnd_action_style.SelectedIndexChanged +=
new System.EventHandler(this.Wnd_action_style_SelectedIndexChanged);
2019-09-11 11:22:16 +02:00
//
// wnd_action_visible
//
this.wnd_action_visible.AutoSize = true;
this.wnd_action_visible.Location = new System.Drawing.Point(215, 127);
2019-09-11 11:22:16 +02:00
this.wnd_action_visible.Name = "wnd_action_visible";
this.wnd_action_visible.Size = new System.Drawing.Size(60, 19);
2019-09-11 11:22:16 +02:00
this.wnd_action_visible.TabIndex = 23;
this.wnd_action_visible.Text = "Visible";
this.wnd_action_visible.UseVisualStyleBackColor = true;
this.wnd_action_visible.CheckedChanged += new System.EventHandler(this.Wnd_action_visible_CheckedChanged);
//
2019-11-29 21:27:24 +01:00
// wnd_action_icon
2019-09-11 11:22:16 +02:00
//
2019-11-29 21:27:24 +01:00
this.wnd_action_icon.BackColor = System.Drawing.SystemColors.ControlLight;
this.wnd_action_icon.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.wnd_action_icon.Location = new System.Drawing.Point(253, 151);
2019-11-29 21:27:24 +01:00
this.wnd_action_icon.Name = "wnd_action_icon";
this.wnd_action_icon.Size = new System.Drawing.Size(27, 27);
2019-11-29 21:27:24 +01:00
this.wnd_action_icon.TabIndex = 22;
//
// wnd_select_class_box
//
this.wnd_select_class_box.Location = new System.Drawing.Point(108, 91);
2019-11-29 21:27:24 +01:00
this.wnd_select_class_box.Name = "wnd_select_class_box";
this.wnd_select_class_box.Size = new System.Drawing.Size(121, 23);
2019-11-29 21:27:24 +01:00
this.wnd_select_class_box.TabIndex = 5;
//
2019-09-07 10:12:24 +02:00
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
2019-09-07 10:12:24 +02:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(670, 427);
2019-09-07 10:12:24 +02:00
this.Controls.Add(this.exit);
this.Controls.Add(this.keyboard);
this.Controls.Add(this.mouse);
this.Controls.Add(this.power);
this.Controls.Add(this.wnd);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.MaximizeBox = false;
this.Name = "Form1";
this.Text = "CC-Functions.W32.Test";
this.keyboard.ResumeLayout(false);
this.keyboard.PerformLayout();
((System.ComponentModel.ISupportInitialize) (this.wnd_action_pos_h_bar)).EndInit();
((System.ComponentModel.ISupportInitialize) (this.wnd_action_pos_w_bar)).EndInit();
((System.ComponentModel.ISupportInitialize) (this.wnd_action_pos_y_bar)).EndInit();
((System.ComponentModel.ISupportInitialize) (this.wnd_action_pos_x_bar)).EndInit();
2019-09-07 10:12:24 +02:00
this.mouse.ResumeLayout(false);
this.mouse.PerformLayout();
this.power.ResumeLayout(false);
this.power.PerformLayout();
this.wnd.ResumeLayout(false);
this.wnd.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button exit;
private System.Windows.Forms.TextBox keyboard_log;
private System.Windows.Forms.GroupBox keyboard;
private System.Windows.Forms.CheckBox keyboard_enabled;
private System.Windows.Forms.TextBox mouse_log;
private System.Windows.Forms.CheckBox mouse_enabled;
private System.Windows.Forms.Label wnd_action_pos_h_label;
private System.Windows.Forms.Label wnd_action_pos_w_label;
private System.Windows.Forms.TrackBar wnd_action_pos_h_bar;
private System.Windows.Forms.TrackBar wnd_action_pos_w_bar;
private System.Windows.Forms.Label wnd_action_pos_y_label;
private System.Windows.Forms.Label wnd_action_pos_x_label;
private System.Windows.Forms.TrackBar wnd_action_pos_y_bar;
private System.Windows.Forms.TrackBar wnd_action_pos_x_bar;
private System.Windows.Forms.Button wnd_action_pos;
private System.Windows.Forms.GroupBox mouse;
private System.Windows.Forms.GroupBox power;
private System.Windows.Forms.Button power_execute;
private System.Windows.Forms.Label power_reason_label;
private System.Windows.Forms.Label power_mod_label;
private System.Windows.Forms.ComboBox power_mod_box;
private System.Windows.Forms.ComboBox power_reason_box;
private System.Windows.Forms.Label power_mode_label;
private System.Windows.Forms.ComboBox power_mode_box;
private System.Windows.Forms.Button wnd_select_mouse;
private System.Windows.Forms.Button wnd_action_destroy;
private System.Windows.Forms.Button wnd_action_front;
private System.Windows.Forms.CheckBox wnd_action_enabled;
private System.Windows.Forms.Button wnd_action_title_get;
private System.Windows.Forms.Button wnd_action_title_set;
private System.Windows.Forms.TextBox wnd_select_title_box;
private System.Windows.Forms.Button wnd_selet_class_button;
private System.Windows.Forms.Button wnd_select_title_button;
private System.Windows.Forms.Label wnd_select_selected;
private System.Windows.Forms.Button wnd_select_self;
private System.Windows.Forms.GroupBox wnd;
private System.Windows.Forms.TextBox wnd_select_class_box;
2019-09-11 11:22:16 +02:00
private System.Windows.Forms.Panel wnd_action_icon;
private System.Windows.Forms.CheckBox wnd_action_visible;
private System.Windows.Forms.ComboBox wnd_action_style;
2019-11-29 21:27:24 +01:00
private System.Windows.Forms.CheckBox wnd_action_overlay;
private System.Windows.Forms.Button wnd_select_list;
2019-09-07 10:12:24 +02:00
}
}