SignalTowerView.xaml.cs 850 B

1234567891011121314151617181920212223242526272829303132333435
  1. using Aitex.Core.UI.View.Common;
  2. using Aitex.Sorter.UI.Config;
  3. using Aitex.Sorter.UI.ViewModel;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Collections.ObjectModel;
  7. using System.Globalization;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Windows;
  11. using System.Windows.Controls;
  12. using System.Windows.Data;
  13. using System.Windows.Documents;
  14. using System.Windows.Input;
  15. using System.Windows.Media;
  16. using System.Windows.Media.Imaging;
  17. using System.Windows.Navigation;
  18. using System.Windows.Shapes;
  19. namespace Aitex.Sorter.UI.Views
  20. {
  21. /// <summary>
  22. /// SignalTower.xaml 的交互逻辑
  23. /// </summary>
  24. public partial class SignalTowerView : UserControl, IBaseView
  25. {
  26. public SignalTowerView()
  27. {
  28. InitializeComponent();
  29. DataContext = new SignalTowerViewModel();
  30. }
  31. }
  32. }