DisplayMagician/HeliosDisplayManagement/UIForms/ShortcutForm.Designer.cs
temacdonald e71b5bcb29 [WIP] Refactor to use CommandLineUtils and change Shortcut Form
Changed to use natemcmaster's CommandLineUtils library to provide
flexbility for command structure, and enable the use of custom
validators which allow us to make sure that the command line options
provided are accurate. This removes the need for all the individual
exceptions being thrown across the main application.
    Also started the modification of the CreateShortcut Form to make
it easier to use and more self explanatory.
    And finally started the integration of Uplay into the application so
that users can use Uplay as well as Steam to select their games.
2020-04-19 17:37:29 +12:00

585 lines
28 KiB
C#

using HeliosDisplayManagement.Resources;
using HeliosDisplayManagement.Shared.UserControls;
namespace HeliosDisplayManagement.UIForms
{
partial class ShortcutForm
{
/// <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(ShortcutForm));
this.btn_save = new System.Windows.Forms.Button();
this.btn_cancel = new System.Windows.Forms.Button();
this.g_temp = new System.Windows.Forms.GroupBox();
this.p_steam = new System.Windows.Forms.Panel();
this.label6 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.btn_choose_game = new System.Windows.Forms.Button();
this.treeView1 = new System.Windows.Forms.TreeView();
this.textBox1 = new System.Windows.Forms.TextBox();
this.cb_arg_launcher = new System.Windows.Forms.CheckBox();
this.nud_steamapps = new System.Windows.Forms.Button();
this.label5 = new System.Windows.Forms.Label();
this.nud_steamtimeout = new System.Windows.Forms.NumericUpDown();
this.label3 = new System.Windows.Forms.Label();
this.nud_appid = new System.Windows.Forms.NumericUpDown();
this.p_standalone = new System.Windows.Forms.Panel();
this.txt_args_executable = new System.Windows.Forms.TextBox();
this.cb_args_executable = new System.Windows.Forms.CheckBox();
this.btn_app_process = new System.Windows.Forms.Button();
this.txt_process = new System.Windows.Forms.TextBox();
this.rb_wait_process = new System.Windows.Forms.RadioButton();
this.rb_wait_executable = new System.Windows.Forms.RadioButton();
this.btn_app_executable = new System.Windows.Forms.Button();
this.txt_executable = new System.Windows.Forms.TextBox();
this.lbl_app_executable = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.nud_timeout = new System.Windows.Forms.NumericUpDown();
this.rb_launcher = new System.Windows.Forms.RadioButton();
this.rb_standalone = new System.Windows.Forms.RadioButton();
this.dv_profile = new HeliosDisplayManagement.Shared.UserControls.DisplayView();
this.dialog_open = new System.Windows.Forms.OpenFileDialog();
this.dialog_save = new System.Windows.Forms.SaveFileDialog();
this.rb_switch_perm = new System.Windows.Forms.RadioButton();
this.rb_switch_temp = new System.Windows.Forms.RadioButton();
this.cb_game_launcher = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.textBox2 = new System.Windows.Forms.TextBox();
this.g_temp.SuspendLayout();
this.p_steam.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.nud_steamtimeout)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nud_appid)).BeginInit();
this.p_standalone.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.nud_timeout)).BeginInit();
this.SuspendLayout();
//
// btn_save
//
this.btn_save.Location = new System.Drawing.Point(700, 749);
this.btn_save.Name = "btn_save";
this.btn_save.Size = new System.Drawing.Size(94, 23);
this.btn_save.TabIndex = 6;
this.btn_save.Text = "&Create Shortcut";
this.btn_save.UseVisualStyleBackColor = true;
this.btn_save.Click += new System.EventHandler(this.btn_save_Click);
//
// btn_cancel
//
this.btn_cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btn_cancel.Location = new System.Drawing.Point(601, 749);
this.btn_cancel.Name = "btn_cancel";
this.btn_cancel.Size = new System.Drawing.Size(94, 23);
this.btn_cancel.TabIndex = 5;
this.btn_cancel.Text = "&Back";
this.btn_cancel.UseVisualStyleBackColor = true;
//
// g_temp
//
this.g_temp.Controls.Add(this.p_steam);
this.g_temp.Controls.Add(this.p_standalone);
this.g_temp.Controls.Add(this.rb_launcher);
this.g_temp.Controls.Add(this.rb_standalone);
this.g_temp.Enabled = false;
this.g_temp.Location = new System.Drawing.Point(12, 388);
this.g_temp.Name = "g_temp";
this.g_temp.Size = new System.Drawing.Size(786, 355);
this.g_temp.TabIndex = 4;
this.g_temp.TabStop = false;
this.g_temp.Text = "Application or Game Information";
//
// p_steam
//
this.p_steam.Controls.Add(this.textBox2);
this.p_steam.Controls.Add(this.nud_appid);
this.p_steam.Controls.Add(this.cb_game_launcher);
this.p_steam.Controls.Add(this.label6);
this.p_steam.Controls.Add(this.label4);
this.p_steam.Controls.Add(this.btn_choose_game);
this.p_steam.Controls.Add(this.label1);
this.p_steam.Controls.Add(this.treeView1);
this.p_steam.Controls.Add(this.textBox1);
this.p_steam.Controls.Add(this.cb_arg_launcher);
this.p_steam.Controls.Add(this.nud_steamapps);
this.p_steam.Controls.Add(this.label5);
this.p_steam.Controls.Add(this.nud_steamtimeout);
this.p_steam.Controls.Add(this.label3);
this.p_steam.Enabled = false;
this.p_steam.Location = new System.Drawing.Point(26, 198);
this.p_steam.Name = "p_steam";
this.p_steam.Size = new System.Drawing.Size(730, 145);
this.p_steam.TabIndex = 3;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(323, 21);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(86, 13);
this.label6.TabIndex = 18;
this.label6.Text = "Game Launcher:";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(340, 76);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(69, 13);
this.label4.TabIndex = 17;
this.label4.Text = "Game Name:";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// btn_choose_game
//
this.btn_choose_game.Location = new System.Drawing.Point(224, 58);
this.btn_choose_game.Name = "btn_choose_game";
this.btn_choose_game.Size = new System.Drawing.Size(29, 31);
this.btn_choose_game.TabIndex = 16;
this.btn_choose_game.Text = ">>";
this.btn_choose_game.UseVisualStyleBackColor = true;
//
// treeView1
//
this.treeView1.Location = new System.Drawing.Point(6, 19);
this.treeView1.Name = "treeView1";
this.treeView1.Size = new System.Drawing.Size(212, 120);
this.treeView1.TabIndex = 14;
//
// textBox1
//
this.textBox1.Enabled = false;
this.textBox1.Location = new System.Drawing.Point(408, 100);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(302, 20);
this.textBox1.TabIndex = 13;
//
// cb_arg_launcher
//
this.cb_arg_launcher.AutoSize = true;
this.cb_arg_launcher.Location = new System.Drawing.Point(265, 102);
this.cb_arg_launcher.Name = "cb_arg_launcher";
this.cb_arg_launcher.Size = new System.Drawing.Size(147, 17);
this.cb_arg_launcher.TabIndex = 12;
this.cb_arg_launcher.Text = "Pass arguments to Game:";
this.cb_arg_launcher.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.cb_arg_launcher.UseVisualStyleBackColor = true;
//
// nud_steamapps
//
this.nud_steamapps.Location = new System.Drawing.Point(505, 45);
this.nud_steamapps.Name = "nud_steamapps";
this.nud_steamapps.Size = new System.Drawing.Size(24, 20);
this.nud_steamapps.TabIndex = 2;
this.nud_steamapps.Text = "...";
this.nud_steamapps.UseVisualStyleBackColor = true;
this.nud_steamapps.Click += new System.EventHandler(this.nud_steamapps_Click);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(589, 20);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(48, 13);
this.label5.TabIndex = 4;
this.label5.Text = "Timeout:";
//
// nud_steamtimeout
//
this.nud_steamtimeout.Location = new System.Drawing.Point(640, 17);
this.nud_steamtimeout.Maximum = new decimal(new int[] {
240,
0,
0,
0});
this.nud_steamtimeout.Minimum = new decimal(new int[] {
5,
0,
0,
0});
this.nud_steamtimeout.Name = "nud_steamtimeout";
this.nud_steamtimeout.Size = new System.Drawing.Size(70, 20);
this.nud_steamtimeout.TabIndex = 5;
this.nud_steamtimeout.Value = new decimal(new int[] {
120,
0,
0,
0});
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(357, 47);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(52, 13);
this.label3.TabIndex = 0;
this.label3.Text = "Game ID:";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// nud_appid
//
this.nud_appid.Location = new System.Drawing.Point(408, 45);
this.nud_appid.Maximum = new decimal(new int[] {
1410065407,
2,
0,
0});
this.nud_appid.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.nud_appid.Name = "nud_appid";
this.nud_appid.Size = new System.Drawing.Size(89, 20);
this.nud_appid.TabIndex = 1;
this.nud_appid.Value = new decimal(new int[] {
730,
0,
0,
0});
this.nud_appid.ValueChanged += new System.EventHandler(this.nud_steamappid_ValueChanged);
//
// p_standalone
//
this.p_standalone.Controls.Add(this.txt_args_executable);
this.p_standalone.Controls.Add(this.cb_args_executable);
this.p_standalone.Controls.Add(this.btn_app_process);
this.p_standalone.Controls.Add(this.txt_process);
this.p_standalone.Controls.Add(this.rb_wait_process);
this.p_standalone.Controls.Add(this.rb_wait_executable);
this.p_standalone.Controls.Add(this.btn_app_executable);
this.p_standalone.Controls.Add(this.txt_executable);
this.p_standalone.Controls.Add(this.lbl_app_executable);
this.p_standalone.Controls.Add(this.label2);
this.p_standalone.Controls.Add(this.nud_timeout);
this.p_standalone.Location = new System.Drawing.Point(26, 42);
this.p_standalone.Name = "p_standalone";
this.p_standalone.Size = new System.Drawing.Size(730, 118);
this.p_standalone.TabIndex = 1;
//
// txt_args_executable
//
this.txt_args_executable.Enabled = false;
this.txt_args_executable.Location = new System.Drawing.Point(190, 83);
this.txt_args_executable.Name = "txt_args_executable";
this.txt_args_executable.Size = new System.Drawing.Size(520, 20);
this.txt_args_executable.TabIndex = 11;
//
// cb_args_executable
//
this.cb_args_executable.AutoSize = true;
this.cb_args_executable.Location = new System.Drawing.Point(23, 85);
this.cb_args_executable.Name = "cb_args_executable";
this.cb_args_executable.Size = new System.Drawing.Size(172, 17);
this.cb_args_executable.TabIndex = 10;
this.cb_args_executable.Text = "Pass arguments to Executable:";
this.cb_args_executable.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.cb_args_executable.UseVisualStyleBackColor = true;
this.cb_args_executable.CheckedChanged += new System.EventHandler(this.cb_args_executable_CheckedChanged);
//
// btn_app_process
//
this.btn_app_process.Location = new System.Drawing.Point(527, 55);
this.btn_app_process.Name = "btn_app_process";
this.btn_app_process.Size = new System.Drawing.Size(56, 21);
this.btn_app_process.TabIndex = 9;
this.btn_app_process.Text = "Choose";
this.btn_app_process.UseVisualStyleBackColor = true;
//
// txt_process
//
this.txt_process.Enabled = false;
this.txt_process.Location = new System.Drawing.Point(323, 56);
this.txt_process.Name = "txt_process";
this.txt_process.Size = new System.Drawing.Size(198, 20);
this.txt_process.TabIndex = 4;
//
// rb_wait_process
//
this.rb_wait_process.AutoSize = true;
this.rb_wait_process.Location = new System.Drawing.Point(6, 59);
this.rb_wait_process.Name = "rb_wait_process";
this.rb_wait_process.Size = new System.Drawing.Size(311, 17);
this.rb_wait_process.TabIndex = 8;
this.rb_wait_process.TabStop = true;
this.rb_wait_process.Text = "Revert to default Display Profile when this process is closed: ";
this.rb_wait_process.UseVisualStyleBackColor = true;
//
// rb_wait_executable
//
this.rb_wait_executable.AutoSize = true;
this.rb_wait_executable.Location = new System.Drawing.Point(6, 37);
this.rb_wait_executable.Name = "rb_wait_executable";
this.rb_wait_executable.Size = new System.Drawing.Size(319, 17);
this.rb_wait_executable.TabIndex = 7;
this.rb_wait_executable.TabStop = true;
this.rb_wait_executable.Text = "Revert to default Display Profile when the executable is closed";
this.rb_wait_executable.UseVisualStyleBackColor = true;
//
// btn_app_executable
//
this.btn_app_executable.Location = new System.Drawing.Point(527, 6);
this.btn_app_executable.Name = "btn_app_executable";
this.btn_app_executable.Size = new System.Drawing.Size(56, 20);
this.btn_app_executable.TabIndex = 2;
this.btn_app_executable.Text = "Choose";
this.btn_app_executable.UseVisualStyleBackColor = true;
this.btn_app_executable.Click += new System.EventHandler(this.btn_app_executable_Click);
//
// txt_executable
//
this.txt_executable.Location = new System.Drawing.Point(105, 6);
this.txt_executable.Name = "txt_executable";
this.txt_executable.Size = new System.Drawing.Size(416, 20);
this.txt_executable.TabIndex = 1;
this.txt_executable.TextChanged += new System.EventHandler(this.txt_executable_TextChanged);
//
// lbl_app_executable
//
this.lbl_app_executable.AutoSize = true;
this.lbl_app_executable.Location = new System.Drawing.Point(3, 10);
this.lbl_app_executable.Name = "lbl_app_executable";
this.lbl_app_executable.Size = new System.Drawing.Size(98, 13);
this.lbl_app_executable.TabIndex = 0;
this.lbl_app_executable.Text = "Executable to start:";
this.lbl_app_executable.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(589, 9);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(45, 13);
this.label2.TabIndex = 5;
this.label2.Text = "Timeout";
//
// nud_timeout
//
this.nud_timeout.Enabled = false;
this.nud_timeout.Location = new System.Drawing.Point(640, 6);
this.nud_timeout.Maximum = new decimal(new int[] {
240,
0,
0,
0});
this.nud_timeout.Minimum = new decimal(new int[] {
5,
0,
0,
0});
this.nud_timeout.Name = "nud_timeout";
this.nud_timeout.Size = new System.Drawing.Size(70, 20);
this.nud_timeout.TabIndex = 6;
this.nud_timeout.Value = new decimal(new int[] {
30,
0,
0,
0});
//
// rb_launcher
//
this.rb_launcher.AutoSize = true;
this.rb_launcher.Location = new System.Drawing.Point(9, 178);
this.rb_launcher.Name = "rb_launcher";
this.rb_launcher.Size = new System.Drawing.Size(259, 17);
this.rb_launcher.TabIndex = 2;
this.rb_launcher.Text = "Launch Game already installed by Steam or Uplay";
this.rb_launcher.UseVisualStyleBackColor = true;
this.rb_launcher.CheckedChanged += new System.EventHandler(this.Controls_CheckedChanged);
//
// rb_standalone
//
this.rb_standalone.AutoSize = true;
this.rb_standalone.Checked = true;
this.rb_standalone.Location = new System.Drawing.Point(9, 19);
this.rb_standalone.Name = "rb_standalone";
this.rb_standalone.Size = new System.Drawing.Size(177, 17);
this.rb_standalone.TabIndex = 0;
this.rb_standalone.TabStop = true;
this.rb_standalone.Text = "Standalone Application or Game";
this.rb_standalone.UseVisualStyleBackColor = true;
this.rb_standalone.CheckedChanged += new System.EventHandler(this.Controls_CheckedChanged);
//
// dv_profile
//
this.dv_profile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dv_profile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(174)))), ((int)(((byte)(184)))), ((int)(((byte)(196)))));
this.dv_profile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.dv_profile.Font = new System.Drawing.Font("Consolas", 50F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.dv_profile.ForeColor = System.Drawing.Color.MidnightBlue;
this.dv_profile.Location = new System.Drawing.Point(0, 0);
this.dv_profile.Margin = new System.Windows.Forms.Padding(18);
this.dv_profile.Name = "dv_profile";
this.dv_profile.PaddingX = 100;
this.dv_profile.PaddingY = 100;
this.dv_profile.Profile = null;
this.dv_profile.Size = new System.Drawing.Size(810, 309);
this.dv_profile.TabIndex = 2;
//
// dialog_open
//
this.dialog_open.DefaultExt = "exe";
this.dialog_open.FileName = "*.exe";
this.dialog_open.Filter = global::HeliosDisplayManagement.Resources.Language.Executable_Files_Filter;
this.dialog_open.RestoreDirectory = true;
this.dialog_open.SupportMultiDottedExtensions = true;
//
// dialog_save
//
this.dialog_save.DefaultExt = "lnk";
this.dialog_save.DereferenceLinks = false;
this.dialog_save.Filter = global::HeliosDisplayManagement.Resources.Language.Shortcuts_Filter;
this.dialog_save.RestoreDirectory = true;
//
// rb_switch_perm
//
this.rb_switch_perm.AutoSize = true;
this.rb_switch_perm.Location = new System.Drawing.Point(16, 330);
this.rb_switch_perm.Name = "rb_switch_perm";
this.rb_switch_perm.Size = new System.Drawing.Size(216, 17);
this.rb_switch_perm.TabIndex = 7;
this.rb_switch_perm.Text = "Switch to the Display Profile permanently";
this.rb_switch_perm.UseVisualStyleBackColor = true;
this.rb_switch_perm.CheckedChanged += new System.EventHandler(this.rb_switch_temp_CheckedChanged);
//
// rb_switch_temp
//
this.rb_switch_temp.AutoSize = true;
this.rb_switch_temp.Checked = true;
this.rb_switch_temp.Location = new System.Drawing.Point(16, 353);
this.rb_switch_temp.Name = "rb_switch_temp";
this.rb_switch_temp.Size = new System.Drawing.Size(381, 17);
this.rb_switch_temp.TabIndex = 8;
this.rb_switch_temp.TabStop = true;
this.rb_switch_temp.Text = "Switch to the Display Profile temporarily while we run an application or game";
this.rb_switch_temp.UseVisualStyleBackColor = true;
this.rb_switch_temp.CheckedChanged += new System.EventHandler(this.rb_switch_temp_CheckedChanged);
//
// cb_game_launcher
//
this.cb_game_launcher.FormattingEnabled = true;
this.cb_game_launcher.Location = new System.Drawing.Point(408, 18);
this.cb_game_launcher.Name = "cb_game_launcher";
this.cb_game_launcher.Size = new System.Drawing.Size(163, 21);
this.cb_game_launcher.TabIndex = 20;
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.Location = new System.Drawing.Point(72, 11);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(88, 13);
this.label1.TabIndex = 15;
this.label1.Text = "Games detected:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.label1.Click += new System.EventHandler(this.label1_Click);
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(408, 73);
this.textBox2.Name = "textBox2";
this.textBox2.ReadOnly = true;
this.textBox2.Size = new System.Drawing.Size(302, 20);
this.textBox2.TabIndex = 21;
//
// ShortcutForm
//
this.AcceptButton = this.btn_save;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(248)))), ((int)(((byte)(248)))));
this.CancelButton = this.btn_cancel;
this.ClientSize = new System.Drawing.Size(810, 782);
this.Controls.Add(this.rb_switch_temp);
this.Controls.Add(this.rb_switch_perm);
this.Controls.Add(this.g_temp);
this.Controls.Add(this.btn_cancel);
this.Controls.Add(this.btn_save);
this.Controls.Add(this.dv_profile);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ShortcutForm";
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Create Shortcut";
this.g_temp.ResumeLayout(false);
this.g_temp.PerformLayout();
this.p_steam.ResumeLayout(false);
this.p_steam.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.nud_steamtimeout)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nud_appid)).EndInit();
this.p_standalone.ResumeLayout(false);
this.p_standalone.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.nud_timeout)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private DisplayView dv_profile;
private System.Windows.Forms.Button btn_save;
private System.Windows.Forms.Button btn_cancel;
private System.Windows.Forms.GroupBox g_temp;
private System.Windows.Forms.RadioButton rb_standalone;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.NumericUpDown nud_timeout;
private System.Windows.Forms.Panel p_standalone;
private System.Windows.Forms.Button btn_app_executable;
private System.Windows.Forms.TextBox txt_executable;
private System.Windows.Forms.Label lbl_app_executable;
private System.Windows.Forms.TextBox txt_process;
private System.Windows.Forms.RadioButton rb_launcher;
private System.Windows.Forms.Panel p_steam;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.NumericUpDown nud_appid;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.NumericUpDown nud_steamtimeout;
private System.Windows.Forms.Button nud_steamapps;
private System.Windows.Forms.OpenFileDialog dialog_open;
private System.Windows.Forms.SaveFileDialog dialog_save;
private System.Windows.Forms.RadioButton rb_switch_perm;
private System.Windows.Forms.RadioButton rb_switch_temp;
private System.Windows.Forms.RadioButton rb_wait_process;
private System.Windows.Forms.RadioButton rb_wait_executable;
private System.Windows.Forms.Button btn_app_process;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.CheckBox cb_arg_launcher;
private System.Windows.Forms.TextBox txt_args_executable;
private System.Windows.Forms.CheckBox cb_args_executable;
private System.Windows.Forms.TreeView treeView1;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button btn_choose_game;
private System.Windows.Forms.ComboBox cb_game_launcher;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textBox2;
}
}