2025-07-01 21:34:20 +08:00
|
|
|
|
using System.Windows.Controls;
|
2025-07-19 11:11:01 +08:00
|
|
|
|
using DMS.WPF.ViewModels;
|
2025-06-13 18:54:17 +08:00
|
|
|
|
using iNKORE.UI.WPF.Modern.Controls;
|
2025-06-30 22:03:49 +08:00
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2025-06-10 20:55:39 +08:00
|
|
|
|
|
2025-07-19 11:11:01 +08:00
|
|
|
|
namespace DMS.WPF.Views;
|
2025-06-10 20:55:39 +08:00
|
|
|
|
|
|
|
|
|
|
public partial class DevicesView : UserControl
|
|
|
|
|
|
{
|
|
|
|
|
|
public DevicesView()
|
|
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
2025-06-30 22:03:49 +08:00
|
|
|
|
DataContext=App.Current.Services.GetRequiredService<DevicesViewModel>();
|
2025-06-10 20:55:39 +08:00
|
|
|
|
}
|
2025-07-01 21:34:20 +08:00
|
|
|
|
|
2025-06-13 18:54:17 +08:00
|
|
|
|
|
2025-06-10 20:55:39 +08:00
|
|
|
|
}
|