Microscopic Traffic Simulator
ParametersWindow.xaml.cs
Go to the documentation of this file.
1 using System.Windows;
2 
3 namespace Microscopic_Traffic_Simulator.Views.SettingsView
4 {
8  public partial class ParametersWindow : Window
9  {
14  {
15  InitializeComponent();
16  }
17 
23  private void ButtonCancel_Click(object sender, RoutedEventArgs e)
24  {
25  Close();
26  }
27 
33  private void OK_Click(object sender, RoutedEventArgs e)
34  {
35  DialogResult = true;
36  Close();
37  }
38  }
39 }