bloxstrap/Bloxstrap/UI/Elements/About/Pages/AboutPage.xaml.cs
2024-08-31 15:11:30 +01:00

17 lines
348 B
C#

using Bloxstrap.UI.ViewModels.About;
namespace Bloxstrap.UI.Elements.About.Pages
{
/// <summary>
/// Interaction logic for AboutPage.xaml
/// </summary>
public partial class AboutPage
{
public AboutPage()
{
DataContext = new AboutViewModel();
InitializeComponent();
}
}
}