1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Data;
- using System.Windows.Documents;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Imaging;
- using System.Windows.Shapes;
- using Task1.ViewModel;
- namespace Task1
- {
- /// <summary>
- /// Логика взаимодействия для Window3.xaml
- /// </summary>
- public partial class TaskWindow : Window
- {
- public TaskWindow()
- {
- InitializeComponent();
- DataContext = new TaskWIndowVM();
- }
- private void Button_Click(object sender, RoutedEventArgs e)
- {
- }
- private void Tasks_grid_SelectionChanged(object sender, SelectionChangedEventArgs e)
- {
- }
- private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
- {
- }
- }
- }
|