Update sample and version number

This commit is contained in:
Daniel Clark
2021-02-15 21:35:42 +00:00
parent 9fa476e57d
commit c995e45606
30 changed files with 40 additions and 763 deletions
@@ -0,0 +1,22 @@
using System;
using TheXamlGuy.NotificationFlyout.Wpf.UI.Controls;
namespace NotificationFlyoutSample.Host
{
public class Program
{
[STAThread()]
public static void Main()
{
using (new NotificationFlyoutSample.App())
{
var app = new App();
new NotificationFlyoutApplication
{
Flyout = new SampleFlyout()
};
app.Run();
}
}
}
}