FModel/FModel/Views/About.xaml.cs
Marlon 14e05da2e0
Some checks failed
FModel QA Builder / build (push) Has been cancelled
fixed line endings to lf to match editorconfig
2026-01-27 14:17:43 +01:00

21 lines
390 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();
}
}