using System, System.Collections.Generic, System.Linq, System.Text, System.Threading.Tasks, System.Windows, System.Windows.Controls, System.Windows.Data, System.Windows.Documents, System.Windows.Input, System.Windows.Media, System.Windows.Media.Imaging, System.Windows.Navigation, System.Windows.Shapes;
namespace MeksMathGameGUI
{
public partial class MainWindow : Window
{
public MainWindow() { InitializeComponent(); }
private void ExitApplication_CLick(object sender, RoutedEventArgs e) { Environment.Exit(0); }
private void StartGame_Click(object sender, RoutedEventArgs e)
{
Console.WriteLine("Start Game Button Clicked!");
}
}
}
using System, System.Collections.Generic, System.Linq, System.Text, System.Threading.Tasks, System.Windows, System.Windows.Controls, System.Windows.Data, System.Windows.Documents, System.Windows.Input, System.Windows.Media, System.Windows.Media.Imaging, System.Windows.Navigation, System.Windows.Shapes;
namespace MeksMathGameGUI
{
public partial class MainWindow : Window
{
public MainWindow() { InitializeComponent(); }
private void ExitApplication_CLick(object sender, RoutedEventArgs e) { Environment.Exit(0); }
private void StartGame_Click(object sender, RoutedEventArgs e)
{
Console.WriteLine("Start Game Button Clicked!");
}
}
}