16 lines
281 B
C#
16 lines
281 B
C#
|
|
|
|
using OpSystemViewModel = WPFluent.Gallery.ViewModels.Pages.OpSystemViewModel;
|
|
|
|
namespace WPFluent.Gallery.Views.Pages;
|
|
|
|
public partial class OpSystemPage
|
|
{
|
|
public OpSystemPage()
|
|
{
|
|
DataContext = new OpSystemViewModel();
|
|
|
|
InitializeComponent();
|
|
}
|
|
}
|