17 lines
318 B
C#
17 lines
318 B
C#
|
|
|
|
using WPFluent.Appearance;
|
|
|
|
using BasicInputViewModel = WPFluent.Gallery.ViewModels.Pages.BasicInputViewModel;
|
|
|
|
namespace WPFluent.Gallery.Views.Pages;
|
|
|
|
public partial class BasicInputPage
|
|
{
|
|
public BasicInputPage()
|
|
{
|
|
DataContext = new BasicInputViewModel();
|
|
InitializeComponent();
|
|
}
|
|
}
|