mirror of
https://github.com/4sval/FModel.git
synced 2026-03-25 19:25:01 -05:00
21 lines
393 B
C#
21 lines
393 B
C#
using System.Windows;
|
|
using FModel.ViewModels;
|
|
|
|
namespace FModel.Views;
|
|
|
|
public partial class About
|
|
{
|
|
private readonly AboutViewModel _viewModel;
|
|
|
|
public About()
|
|
{
|
|
DataContext = _viewModel = new AboutViewModel();
|
|
InitializeComponent();
|
|
}
|
|
|
|
private async void OnLoaded(object sender, RoutedEventArgs e)
|
|
{
|
|
await _viewModel.Initialize();
|
|
}
|
|
}
|