Window1.xaml.cs 887 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Shapes;
  14. using WpfApp1.model;
  15. namespace WpfApp1
  16. {
  17. /// <summary>
  18. /// Interaction logic for Window1.xaml
  19. /// </summary>
  20. public partial class Window1 : Window
  21. {
  22. public cars currentCar { get; set; }
  23. public Window1(cars currentCar)
  24. {
  25. this.currentCar = currentCar;
  26. InitializeComponent();
  27. DataContext = this.currentCar;
  28. }
  29. private void ExitButton_Click(object sender, RoutedEventArgs e)
  30. {
  31. this.DialogResult = true;
  32. }
  33. }
  34. }