Files
ShrlAlgoToolkit/WPFluent.Gallery/Views/Pages/OpSystemPage.xaml.cs
2025-05-05 17:04:06 +08:00

19 lines
361 B
C#

using OpSystemViewModel = WPFluent.Gallery.ViewModels.Pages.OpSystemViewModel;
namespace WPFluent.Gallery.Views.Pages;
public partial class OpSystemPage
{
public OpSystemViewModel ViewModel { get; }
public OpSystemPage()
{
ViewModel = new OpSystemViewModel();
DataContext = ViewModel;
InitializeComponent();
}
}