DeviceMangerView.axaml.cs 465 B

12345678910111213141516171819202122
  1. using Avalonia.Controls;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using System.Windows.Input;
  9. namespace ShakerApp.Views
  10. {
  11. /// <summary>
  12. /// DeviceMangerView.xaml 的交互逻辑
  13. /// </summary>
  14. public partial class DeviceMangerView : UserControl
  15. {
  16. public DeviceMangerView()
  17. {
  18. InitializeComponent();
  19. }
  20. }
  21. }