2025-07-06 11:09:57 +08:00
|
|
|
using PMSWPF.ViewModels;
|
2025-06-23 13:42:02 +08:00
|
|
|
using System.Windows.Controls;
|
|
|
|
|
|
|
|
|
|
namespace PMSWPF.Views;
|
|
|
|
|
|
|
|
|
|
public partial class SettingView : UserControl
|
|
|
|
|
{
|
|
|
|
|
public SettingView()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2025-07-06 11:09:57 +08:00
|
|
|
DataContext = new SettingViewModel();
|
2025-06-23 13:42:02 +08:00
|
|
|
}
|
|
|
|
|
}
|