2025-07-19 09:25:01 +08:00
|
|
|
using System.Windows.Controls;
|
|
|
|
|
using DMS.WPF.ViewModels;
|
2025-06-30 14:19:22 +08:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
|
2025-07-19 09:25:01 +08:00
|
|
|
namespace DMS.WPF.Views;
|
2025-06-30 14:19:22 +08:00
|
|
|
|
|
|
|
|
public partial class DeviceDetailView : UserControl
|
|
|
|
|
{
|
|
|
|
|
public DeviceDetailView()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
DataContext = App.Current.Services.GetRequiredService<DeviceDetailViewModel>();
|
|
|
|
|
}
|
|
|
|
|
}
|