2025-06-13 18:54:17 +08:00
|
|
|
|
using System.Windows;
|
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
|
using iNKORE.UI.WPF.Modern.Controls;
|
2025-06-30 22:03:49 +08:00
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
|
using PMSWPF.Services;
|
|
|
|
|
|
using PMSWPF.ViewModels;
|
2025-06-10 20:55:39 +08:00
|
|
|
|
|
|
|
|
|
|
namespace PMSWPF.Views;
|
|
|
|
|
|
|
|
|
|
|
|
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-06-13 18:54:17 +08:00
|
|
|
|
|
|
|
|
|
|
private void BasicGridView_ItemClick(object sender, ItemClickEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-10 20:55:39 +08:00
|
|
|
|
}
|