Restructed project

This commit is contained in:
Daniel Clark
2021-02-09 12:36:55 +00:00
parent e10baed2d7
commit 085e632eb9
28 changed files with 47 additions and 535 deletions
+18
View File
@@ -0,0 +1,18 @@
using System;
namespace NotificationFlyout.Sample.Wpf
{
public class Program
{
[STAThread()]
public static void Main()
{
using (new XamlHost.App())
{
var app = new App();
new SampleNotificationFlyout();
app.Run();
}
}
}
}