19 lines
361 B
C#
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();
|
|
}
|
|
}
|