TaskWindow.xaml.cs 706 B

1234567891011121314151617181920212223242526272829303132
  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 WpfApp4.ViewModel;
  15. namespace WpfApp4
  16. {
  17. public partial class TaskWindow : Window
  18. {
  19. public TaskWindow()
  20. {
  21. InitializeComponent();
  22. DataContext = new TaskViewModel();
  23. }
  24. private void tasks_table_SelectionChanged(object sender, SelectionChangedEventArgs e)
  25. {
  26. }
  27. }
  28. }