mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
Added in a binary VDF reader to find and figure out all of the Game Icons, Exe locations, Names, Ids and Install Dirs all from the local file syste,m. It makes the shortcuts populate within 1 second, rather than the 60 seconds it was taking beforehand. Users should love the newfound responsiveness.
709 lines
25 KiB
C#
709 lines
25 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing.IconLib;
|
|
using System.Drawing;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
using System.Windows.Forms;
|
|
using HeliosPlus.Resources;
|
|
using HeliosPlus.Shared;
|
|
using HeliosPlus.GameLibraries;
|
|
using NvAPIWrapper.Native.GPU;
|
|
|
|
namespace HeliosPlus.UIForms
|
|
{
|
|
public partial class ShortcutForm : Form
|
|
{
|
|
|
|
public ShortcutForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public ShortcutForm(Profile profile) : this()
|
|
{
|
|
Profile = profile;
|
|
}
|
|
|
|
public string ProcessNameToMonitor
|
|
{
|
|
get
|
|
{
|
|
if (rb_switch_temp.Checked && rb_standalone.Checked) {
|
|
if (rb_wait_executable.Checked)
|
|
{
|
|
return txt_process_name.Text;
|
|
}
|
|
}
|
|
return string.Empty;
|
|
}
|
|
set
|
|
{
|
|
// We we're setting this entry, then we want to set it to a particular entry
|
|
txt_process_name.Text = value;
|
|
rb_wait_executable.Checked = true;
|
|
}
|
|
}
|
|
|
|
public Profile Profile
|
|
{
|
|
get => dv_profile.Profile;
|
|
set
|
|
{
|
|
// Check the profile is valid
|
|
// Create an array of display profiles we have
|
|
var profiles = Profile.GetAllProfiles().ToArray();
|
|
// Check if the user supplied a --profile option using the profiles' ID
|
|
var profileIndex = profiles.Length > 0 ? Array.FindIndex(profiles, p => p.Id.Equals(value.Id, StringComparison.InvariantCultureIgnoreCase)) : -1;
|
|
// If the profileID wasn't there, maybe they used the profile name?
|
|
if (profileIndex == -1)
|
|
{
|
|
// Try and lookup the profile in the profiles' Name fields
|
|
profileIndex = profiles.Length > 0 ? Array.FindIndex(profiles, p => p.Name.StartsWith(value.Name, StringComparison.InvariantCultureIgnoreCase)) : -1;
|
|
}
|
|
// If the profileID still isn't there, then raise the alarm
|
|
if (profileIndex == -1)
|
|
{
|
|
MessageBox.Show(
|
|
$"ShortcutForm: Couldn't find Profile Name or ID supplied to Profile propoerty.",
|
|
Language.Executable,
|
|
MessageBoxButtons.OK,
|
|
MessageBoxIcon.Exclamation);
|
|
}
|
|
dv_profile.Profile = value;
|
|
}
|
|
}
|
|
|
|
|
|
public string ExecutableNameAndPath
|
|
{
|
|
get => rb_switch_temp.Checked && rb_launcher.Checked ? txt_executable.Text : string.Empty;
|
|
set
|
|
{
|
|
if (File.Exists(txt_executable.Text))
|
|
{
|
|
rb_switch_temp.Checked = true;
|
|
rb_launcher.Checked = true;
|
|
txt_executable.Text = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public uint ExecutableTimeout
|
|
{
|
|
get
|
|
{
|
|
|
|
if (rb_wait_executable.Checked)
|
|
{
|
|
return (uint)nud_timeout_executable.Value;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
set
|
|
{
|
|
nud_timeout_executable.Value = value;
|
|
}
|
|
}
|
|
|
|
public string ExecutableArguments
|
|
{
|
|
get => cb_args_executable.Checked ? txt_args_executable.Text : string.Empty;
|
|
set
|
|
{
|
|
txt_args_executable.Text = value;
|
|
cb_args_executable.Checked = true;
|
|
}
|
|
}
|
|
|
|
|
|
public uint GameAppId
|
|
{
|
|
get => rb_switch_temp.Checked && rb_launcher.Checked ? (uint) nud_game_appid.Value : 0;
|
|
set
|
|
{
|
|
rb_switch_temp.Checked = true;
|
|
rb_launcher.Checked = true;
|
|
nud_game_appid.Value = value;
|
|
}
|
|
}
|
|
|
|
public string GameName
|
|
{
|
|
get => rb_switch_temp.Checked && rb_launcher.Checked ? txt_game_name.Text : string.Empty;
|
|
set
|
|
{
|
|
rb_switch_temp.Checked = true;
|
|
rb_launcher.Checked = true;
|
|
txt_game_name.Text = value;
|
|
}
|
|
}
|
|
|
|
public SupportedGameLibrary GameLibrary
|
|
{
|
|
get => rb_switch_temp.Checked && rb_launcher.Checked ? (SupportedGameLibrary) nud_game_appid.Value : SupportedGameLibrary.Unknown;
|
|
set
|
|
{
|
|
rb_switch_temp.Checked = true;
|
|
rb_launcher.Checked = true;
|
|
switch (value)
|
|
{
|
|
case SupportedGameLibrary.Steam:
|
|
break;
|
|
|
|
case SupportedGameLibrary.Uplay:
|
|
break;
|
|
|
|
}
|
|
// TODO - If SupportedGameLibrary.Unknown; then we need to show an error message.
|
|
|
|
}
|
|
}
|
|
|
|
|
|
public uint GameTimeout
|
|
{
|
|
get
|
|
{
|
|
if (rb_switch_temp.Checked && rb_launcher.Checked)
|
|
{
|
|
return (uint)nud_timeout_game.Value;
|
|
}
|
|
return 0;
|
|
}
|
|
set
|
|
{
|
|
nud_timeout_game.Value = value;
|
|
}
|
|
}
|
|
|
|
public string GameArguments
|
|
{
|
|
get => cb_args_game.Checked ? txt_args_game.Text : string.Empty;
|
|
set
|
|
{
|
|
txt_args_game.Text = value;
|
|
cb_args_game.Checked = true;
|
|
}
|
|
}
|
|
|
|
|
|
private void btn_app_executable_Click(object sender, EventArgs e)
|
|
{
|
|
if (dialog_open.ShowDialog(this) == DialogResult.OK)
|
|
{
|
|
if (File.Exists(dialog_open.FileName) && Path.GetExtension(dialog_open.FileName) == @".exe")
|
|
{
|
|
txt_executable.Text = dialog_open.FileName;
|
|
dialog_open.FileName = string.Empty;
|
|
}
|
|
else
|
|
{
|
|
MessageBox.Show(
|
|
Language.Selected_file_is_not_a_valid_executable_file,
|
|
Language.Executable,
|
|
MessageBoxButtons.OK,
|
|
MessageBoxIcon.Exclamation);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void btn_save_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.None;
|
|
|
|
try
|
|
{
|
|
// Try to set up some sensible suggestions for the Shortcut name
|
|
if (rb_switch_perm.Checked)
|
|
{
|
|
dialog_save.FileName = Profile.Name;
|
|
}
|
|
else
|
|
{
|
|
if (rb_standalone.Checked)
|
|
{
|
|
dialog_save.FileName = Path.GetFileNameWithoutExtension(ExecutableNameAndPath);
|
|
}
|
|
else
|
|
{
|
|
dialog_save.FileName = GameName;
|
|
}
|
|
}
|
|
|
|
// Show the Save Shortcut window
|
|
if (dialog_save.ShowDialog(this) == DialogResult.OK)
|
|
{
|
|
if (CreateShortcut(dialog_save.FileName))
|
|
{
|
|
MessageBox.Show(
|
|
Language.Shortcut_placed_successfully,
|
|
Language.Shortcut,
|
|
MessageBoxButtons.OK,
|
|
MessageBoxIcon.Information);
|
|
}
|
|
else
|
|
{
|
|
MessageBox.Show(
|
|
Language.Failed_to_create_the_shortcut_Unexpected_exception_occurred,
|
|
Language.Shortcut,
|
|
MessageBoxButtons.OK,
|
|
MessageBoxIcon.Exclamation);
|
|
}
|
|
|
|
dialog_save.FileName = string.Empty;
|
|
DialogResult = DialogResult.OK;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
MessageBox.Show(ex.Message, Language.Shortcut, MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
|
}
|
|
}
|
|
|
|
// ReSharper disable once FunctionComplexityOverflow
|
|
// ReSharper disable once CyclomaticComplexity
|
|
private bool CreateShortcut(string fileName)
|
|
{
|
|
string programName = Path.GetFileNameWithoutExtension(txt_executable.Text);
|
|
string shortcutDescription = string.Empty;
|
|
Icon shortcutIcon = null;
|
|
string shortcutIconFileName = string.Empty;
|
|
|
|
var args = new List<string>
|
|
{
|
|
// Add the SwitchProfile command as the first argument to start to switch to another profile
|
|
$"{HeliosStartupAction.SwitchProfile}",
|
|
// Add the Profile Name as the second argument (use that rather than ID - though ID still will work!)
|
|
$"--profile \"{Profile.Name}\""
|
|
};
|
|
|
|
// Only add the rest of the options if the temporary switch radio button is set
|
|
if (rb_switch_temp.Checked)
|
|
{
|
|
// Only add this set of options if the standalone programme radio button is set
|
|
if (rb_standalone.Checked)
|
|
{
|
|
// Doublecheck the Executable text field is filled in
|
|
if (string.IsNullOrWhiteSpace(ExecutableNameAndPath))
|
|
{
|
|
throw new Exception(Language.Executable_address_can_not_be_empty);
|
|
}
|
|
|
|
// Doublecheck the Executable text field is a path to a real file
|
|
if (!File.Exists(ExecutableNameAndPath))
|
|
{
|
|
throw new Exception(Language.Executable_file_not_found);
|
|
}
|
|
|
|
// Add the executable command and the executable name to the shortcut arguments
|
|
args.Add($"execute \"{ExecutableNameAndPath}\"");
|
|
|
|
// Check that the wait for executable radiobutton is on
|
|
if (rb_wait_executable.Checked)
|
|
{
|
|
// Doublecheck the process name has text in it
|
|
if (!string.IsNullOrWhiteSpace(ProcessNameToMonitor))
|
|
{
|
|
// Add the waitfor argument and the process name to the shortcut arguments
|
|
args.Add($"--waitfor \"{ProcessNameToMonitor}\"");
|
|
}
|
|
}
|
|
|
|
// Add the timeout argument and the timeout duration in seconds to the shortcut arguments
|
|
args.Add($"--timeout {ExecutableTimeout}");
|
|
|
|
if (cb_args_executable.Checked)
|
|
{
|
|
args.Add($"--arguments \"{ExecutableArguments}\"");
|
|
}
|
|
|
|
// Prepare text for the shortcut description field
|
|
shortcutDescription = string.Format(Language.Executing_application_with_profile, programName, Profile.Name);
|
|
|
|
// Work out the name of the shortcut we'll save.
|
|
shortcutIconFileName = Path.Combine(Program.ShortcutIconCachePath, String.Concat(Path.GetFileNameWithoutExtension(ExecutableNameAndPath), @".ico"));
|
|
|
|
// Grab an icon for the selected executable
|
|
try
|
|
{
|
|
// We'll first try to extract the Icon from the executable the user provided
|
|
shortcutIcon = Icon.ExtractAssociatedIcon(ExecutableNameAndPath);
|
|
}
|
|
catch (Exception)
|
|
{
|
|
// but if that doesn't work, then we use our own one.
|
|
shortcutIcon = Icon.ExtractAssociatedIcon(Assembly.GetExecutingAssembly().Location);
|
|
}
|
|
}
|
|
// Only add the rest of the options if the temporary switch radio button is set
|
|
// and if the game launching radio button is set
|
|
else if (rb_launcher.Checked)
|
|
{
|
|
// TODO need to make this work so at least one game library is installed
|
|
// i.e. if (!SteamGame.SteamInstalled && !UplayGame.UplayInstalled )
|
|
if (GameLibrary == SupportedGameLibrary.Steam)
|
|
{
|
|
if (!SteamGame.SteamInstalled)
|
|
{
|
|
throw new Exception(Language.Steam_is_not_installed);
|
|
}
|
|
|
|
List<SteamGame> allSteamGames = SteamGame.GetAllInstalledGames();
|
|
|
|
SteamGame steamGameToRun = null;
|
|
foreach (SteamGame steamGameToCheck in allSteamGames)
|
|
{
|
|
if (steamGameToCheck.GameId == GameAppId)
|
|
{
|
|
steamGameToRun = steamGameToCheck;
|
|
break;
|
|
}
|
|
|
|
}
|
|
|
|
shortcutIcon = steamGameToRun.GameIcon;
|
|
|
|
// Work out the name of the shortcut we'll save.
|
|
shortcutIconFileName = Path.Combine(Program.ShortcutIconCachePath, @"Uplay", String.Concat(GameAppId.ToString(), @".ico"));
|
|
|
|
args.Add($"--steam {GameAppId}");
|
|
|
|
}
|
|
else if (GameLibrary == SupportedGameLibrary.Uplay)
|
|
{
|
|
|
|
if (!UplayGame.UplayInstalled)
|
|
{
|
|
throw new Exception(Language.Steam_is_not_installed);
|
|
}
|
|
|
|
List<UplayGame> allUplayGames = UplayGame.GetAllInstalledGames();
|
|
|
|
UplayGame uplayGameToRun = null;
|
|
foreach (UplayGame uplayGameToCheck in allUplayGames)
|
|
{
|
|
if (uplayGameToCheck.GameId == GameAppId)
|
|
{
|
|
uplayGameToRun = uplayGameToCheck;
|
|
break;
|
|
}
|
|
|
|
}
|
|
|
|
shortcutIcon = uplayGameToRun.GameIcon;
|
|
|
|
// Work out the name of the shortcut we'll save.
|
|
shortcutIconFileName = Path.Combine(Program.ShortcutIconCachePath, @"Uplay", String.Concat(GameAppId.ToString(), @".ico"));
|
|
|
|
args.Add($"--uplay {GameAppId}");
|
|
|
|
}
|
|
|
|
// Add the game timeout argument and the timeout duration in seconds to the shortcut arguments
|
|
args.Add($"--timeout {GameTimeout}");
|
|
|
|
if (cb_args_game.Checked)
|
|
{
|
|
args.Add($"--arguments \"{GameArguments}\"");
|
|
}
|
|
|
|
// Prepare text for the shortcut description field
|
|
shortcutDescription = string.Format(Language.Executing_application_with_profile, GameName, Profile.Name);
|
|
|
|
}
|
|
|
|
}
|
|
// Only add the rest of the options if the permanent switch radio button is set
|
|
else
|
|
{
|
|
// Prepare text for the shortcut description field
|
|
shortcutDescription = string.Format(Language.Switching_display_profile_to_profile, Profile.Name);
|
|
|
|
// Work out the name of the shortcut we'll save.
|
|
shortcutIconFileName = Path.Combine(Program.ShortcutIconCachePath, String.Concat(Profile.Name, @".ico"));
|
|
|
|
// Grab an icon for the selected profile
|
|
try
|
|
{
|
|
MultiIcon profileMultiIcon = new ProfileIcon(Profile).ToIcon();
|
|
shortcutIcon = profileMultiIcon[0].Icon;
|
|
}
|
|
catch
|
|
{
|
|
// but if that doesn't work, then we use our own one.
|
|
shortcutIcon = Icon.ExtractAssociatedIcon(Assembly.GetExecutingAssembly().Location);
|
|
}
|
|
}
|
|
|
|
// Save the Icon to the Shortcut Icon cache as the Shortcut will need to refer to it.
|
|
if (!File.Exists(shortcutIconFileName))
|
|
{
|
|
using (StreamWriter fs = File.AppendText(shortcutIconFileName))
|
|
shortcutIcon.Save(fs.BaseStream);
|
|
}
|
|
|
|
// Now we are ready to create a shortcut based on the filename the user gave us
|
|
fileName = Path.ChangeExtension(fileName, @"lnk");
|
|
|
|
// If the user supplied a file
|
|
if (fileName != null)
|
|
{
|
|
try
|
|
{
|
|
// Remove the old file to replace it
|
|
if (File.Exists(fileName))
|
|
{
|
|
File.Delete(fileName);
|
|
}
|
|
|
|
// Actually create the shortcut!
|
|
var wshShellType = Type.GetTypeFromCLSID(new Guid("72C24DD5-D70A-438B-8A42-98424B88AFB8"));
|
|
dynamic wshShell = Activator.CreateInstance(wshShellType);
|
|
|
|
try
|
|
{
|
|
var shortcut = wshShell.CreateShortcut(fileName);
|
|
|
|
try
|
|
{
|
|
shortcut.TargetPath = Application.ExecutablePath;
|
|
shortcut.Arguments = string.Join(" ", args);
|
|
shortcut.Description = shortcutDescription;
|
|
shortcut.WorkingDirectory = Path.GetDirectoryName(Application.ExecutablePath) ??
|
|
string.Empty;
|
|
|
|
shortcut.IconLocation = shortcutIconFileName;
|
|
|
|
shortcut.Save();
|
|
}
|
|
finally
|
|
{
|
|
Marshal.FinalReleaseComObject(shortcut);
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
Marshal.FinalReleaseComObject(wshShell);
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
// Clean up a failed attempt
|
|
if (File.Exists(fileName))
|
|
{
|
|
File.Delete(fileName);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Return a status on how it went
|
|
// true if it was a success or false if it was not
|
|
return fileName != null && File.Exists(fileName);
|
|
}
|
|
|
|
private void nud_game_appid_ValueChanged(object sender, EventArgs e)
|
|
{
|
|
//lbl_steamname.Text = new SteamGame((uint) nud_game_appid.Value).ToString();
|
|
}
|
|
|
|
/*private void nud_steamapps_Click(object sender, EventArgs e)
|
|
{
|
|
var steamGamesForm = new SteamGamesForm();
|
|
|
|
if (steamGamesForm.ShowDialog(this) == DialogResult.OK && steamGamesForm.SteamGame != null)
|
|
{
|
|
nud_game_appid.Value = steamGamesForm.SteamGame.AppId;
|
|
}
|
|
}*/
|
|
|
|
/* private void rb_wait_process_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
if (rb_wait_process.Checked)
|
|
{
|
|
// Enable the Process Name Text field
|
|
txt_process_name.Enabled = true;
|
|
}
|
|
}
|
|
*/
|
|
|
|
private void txt_executable_TextChanged(object sender, EventArgs e)
|
|
{
|
|
try
|
|
{
|
|
txt_process_name.Text = Path.GetFileNameWithoutExtension(txt_executable.Text)?.ToLower() ?? txt_process_name.Text;
|
|
|
|
}
|
|
catch
|
|
{
|
|
// ignored
|
|
}
|
|
}
|
|
|
|
private void rb_switch_perm_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
if (rb_switch_perm.Checked)
|
|
{
|
|
// Disable the Temporary Group
|
|
g_temporary.Enabled = false;
|
|
}
|
|
|
|
}
|
|
private void rb_switch_temp_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
if (rb_switch_temp.Checked)
|
|
{
|
|
// Enable the Temporary Group
|
|
g_temporary.Enabled = true;
|
|
}
|
|
|
|
}
|
|
|
|
private void label1_Click(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void label7_Click(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void rb_standalone_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
if (rb_standalone.Checked)
|
|
{
|
|
// Enable the Standalone Panel
|
|
p_standalone.Enabled = true;
|
|
// Disable the Game Panel
|
|
p_game.Enabled = false;
|
|
}
|
|
}
|
|
|
|
private void rb_launcher_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
if (rb_launcher.Checked)
|
|
{
|
|
// Enable the Game Panel
|
|
p_game.Enabled = true;
|
|
// Disable the Standalone Panel
|
|
p_standalone.Enabled = false;
|
|
}
|
|
}
|
|
|
|
|
|
private void cb_args_executable_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
// Disable the Process Name Text field
|
|
if (cb_args_executable.Checked)
|
|
{
|
|
// Enable the Executable Arguments Text field
|
|
txt_args_executable.Enabled = true;
|
|
}
|
|
else
|
|
{
|
|
// Disable the Executable Arguments Text field
|
|
txt_args_executable.Enabled = false;
|
|
}
|
|
|
|
}
|
|
|
|
private async void ShortcutForm_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
// Make the game launcher selector read only.
|
|
cmb_game_launcher.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
// Fill the list of supported game libraries
|
|
foreach (var gameLibrary in Enum.GetNames(typeof(SupportedGameLibrary))) {
|
|
if (gameLibrary != "Unknown")
|
|
{
|
|
cmb_game_launcher.Items.Add(gameLibrary);
|
|
}
|
|
}
|
|
|
|
|
|
// Set the Profile name
|
|
lbl_profile.Text = $"Selected Profile: {dv_profile.Profile?.Name ?? Language.None}";
|
|
|
|
// Start finding the games and loading the Games ListView
|
|
List<SteamGame> allSteamGames = SteamGame.GetAllInstalledGames();
|
|
foreach (var game in allSteamGames.OrderBy(game => game.GameName))
|
|
{
|
|
//var iconAddress = await game.GetIcon();
|
|
il_games.Images.Add(game.GameIcon);
|
|
|
|
if (!Visible)
|
|
{
|
|
return;
|
|
}
|
|
|
|
lv_games.Items.Add(new ListViewItem
|
|
{
|
|
Text = game.GameName,
|
|
Tag = game,
|
|
ImageIndex = il_games.Images.Count - 1
|
|
});
|
|
}
|
|
}
|
|
|
|
private void rb_wait_process_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
if (rb_wait_process.Checked)
|
|
{
|
|
// Enable the Process Name Text field
|
|
txt_process_name.Enabled = true;
|
|
} else
|
|
{
|
|
txt_process_name.Enabled = false;
|
|
}
|
|
}
|
|
|
|
private void rb_wait_executable_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
if (rb_wait_executable.Checked)
|
|
{
|
|
// Disable the Process Name Text field
|
|
txt_process_name.Enabled = false;
|
|
} else
|
|
{
|
|
txt_process_name.Enabled = true;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
private void btn_app_process_Click(object sender, EventArgs e)
|
|
{
|
|
if (dialog_open.ShowDialog(this) == DialogResult.OK)
|
|
{
|
|
if (File.Exists(dialog_open.FileName) && Path.GetExtension(dialog_open.FileName) == @".exe")
|
|
{
|
|
txt_process_name.Text = dialog_open.FileName;
|
|
dialog_open.FileName = string.Empty;
|
|
}
|
|
else
|
|
{
|
|
MessageBox.Show(
|
|
Language.Selected_file_is_not_a_valid_executable_file,
|
|
Language.Executable,
|
|
MessageBoxButtons.OK,
|
|
MessageBoxIcon.Exclamation);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void cb_args_game_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
if (cb_args_game.Checked)
|
|
{
|
|
txt_args_game.Enabled = true;
|
|
} else
|
|
{
|
|
txt_args_game.Enabled = false;
|
|
}
|
|
}
|
|
}
|
|
} |