Add chapter 4 completed solution

This commit is contained in:
Alvin Ashcraft
2023-06-03 13:59:12 -04:00
parent e512a9926c
commit edbc96830c
30 changed files with 1077 additions and 0 deletions
@@ -0,0 +1,15 @@
using Microsoft.UI.Xaml;
namespace MyMediaCollection
{
/// <summary>
/// An empty window that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class MainWindow : Window
{
public MainWindow()
{
this.InitializeComponent();
}
}
}