using System.Windows; namespace GameOfLife.View { /// /// Interaction logic for SettingsWindow.xaml /// public partial class SettingsWindow { public SettingsWindow() { InitializeComponent(); } private void OnOk(object sender, RoutedEventArgs e) { DialogResult = true; } private void OnCancel(object sender, RoutedEventArgs e) { DialogResult = false; } } }