DetailWindow.xaml.cs 844 B

1234567891011121314151617181920212223242526272829303132333435
  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.Windows
  16. {
  17. public partial class DetailWindow : Window
  18. {
  19. public Worker currentWorker { get; set; }
  20. public DetailWindow(Worker currentWorker)
  21. {
  22. this.currentWorker = currentWorker;
  23. InitializeComponent();
  24. DataContext = this.currentWorker;
  25. }
  26. private void ExitButton_Click(object sender, RoutedEventArgs e)
  27. {
  28. this.DialogResult = true;
  29. }
  30. }
  31. }