Files
DMS/DMS.WPF/Views/DevicesView.xaml.cs

17 lines
369 B
C#
Raw Normal View History

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