Files
Shrlalgo.RvKits/WPFluent.Gallery/Views/Pages/DateAndTimePage.xaml.cs
2025-05-05 17:04:06 +08:00

17 lines
297 B
C#

using DateAndTimeViewModel = WPFluent.Gallery.ViewModels.Pages.DateAndTimeViewModel;
namespace WPFluent.Gallery.Views.Pages;
public partial class DateAndTimePage
{
public DateAndTimePage()
{
DataContext = new DateAndTimeViewModel();
InitializeComponent();
}
}