12345678910111213141516171819202122 |
- using Avalonia.Controls;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Input;
- namespace ShakerApp.Views
- {
- /// <summary>
- /// DeviceMangerView.xaml 的交互逻辑
- /// </summary>
- public partial class DeviceMangerView : UserControl
- {
- public DeviceMangerView()
- {
- InitializeComponent();
- }
- }
- }
|