CardCheckSetWindow.xaml.cs 660 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows;
  6. using System.Windows.Controls;
  7. using System.Windows.Data;
  8. using System.Windows.Documents;
  9. using System.Windows.Input;
  10. using System.Windows.Media;
  11. using System.Windows.Media.Imaging;
  12. using System.Windows.Shapes;
  13. namespace AGV_WPF.ExtraUI
  14. {
  15. /// <summary>
  16. /// CardCheckSetWindow.xaml 的交互逻辑
  17. /// </summary>
  18. public partial class CardCheckSetWindow : Window
  19. {
  20. public CardCheckSetWindow()
  21. {
  22. InitializeComponent();
  23. this.DataContext = new CardCheckSetWindowModel(this);
  24. }
  25. }
  26. }