2025-06-23 13:42:02 +08:00
|
|
|
using System.Windows.Controls;
|
2025-07-18 19:56:00 +08:00
|
|
|
using DMS.ViewModels;
|
2025-07-07 21:24:45 +08:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2025-06-23 13:42:02 +08:00
|
|
|
|
2025-07-18 19:56:00 +08:00
|
|
|
namespace DMS.Views;
|
2025-06-23 13:42:02 +08:00
|
|
|
|
|
|
|
|
public partial class SettingView : UserControl
|
|
|
|
|
{
|
|
|
|
|
public SettingView()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2025-07-07 21:24:45 +08:00
|
|
|
DataContext = App.Current.Services.GetRequiredService<SettingViewModel>();
|
2025-06-23 13:42:02 +08:00
|
|
|
}
|
|
|
|
|
}
|