public static string getGameExeName() { GetInput g = new GetInput(@"Launch the UWP game and open the task manager. Locate the .exe from the Details tab. Type the name here (example: Game.exe)"); g.Text = @"Enter Game.exe"; g.ShowDialog(); while (string.IsNullOrEmpty(g.gameName)) { MessageBox.Show("Entry can't be blank, try again."); g.ShowDialog(); } return(g.gameName); }
public static string getGameName() { GetInput g = new GetInput(@"Please enter Game Name for folder creation."); g.Text = @"Enter Game Name"; g.ShowDialog(); while (string.IsNullOrEmpty(g.gameName)) { MessageBox.Show("Game Name can't be blank, try again."); g.ShowDialog(); } return(g.gameName); }