Files
ShrlAlgoToolkit/WPFluent.Gallery/Views/Pages/OpSystemPage.xaml.cs

19 lines
361 B
C#
Raw Normal View History

2025-04-24 20:56:44 +08:00

using OpSystemViewModel = WPFluent.Gallery.ViewModels.Pages.OpSystemViewModel;
namespace WPFluent.Gallery.Views.Pages;
2025-05-05 17:04:06 +08:00
public partial class OpSystemPage
2025-04-24 20:56:44 +08:00
{
public OpSystemViewModel ViewModel { get; }
2025-05-05 17:04:06 +08:00
public OpSystemPage()
2025-04-24 20:56:44 +08:00
{
2025-05-05 17:04:06 +08:00
ViewModel = new OpSystemViewModel();
DataContext = ViewModel;
2025-04-24 20:56:44 +08:00
InitializeComponent();
}
}