HeadMeld 0.0.0.1

- Working MVVM implementation
- Refactored code
This commit is contained in:
2022-03-27 22:20:56 +01:00
parent ae9fbc6d97
commit 67f440e7e8
7 changed files with 131 additions and 79 deletions
+21
View File
@@ -0,0 +1,21 @@
using System.Windows;
using HeadMeld.ViewModels;
namespace HeadMeld
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
private readonly MainWindowViewModel viewModel;
public MainWindow()
{
InitializeComponent();
viewModel = new MainWindowViewModel();
DataContext = viewModel;
}
}
}