Files
NotificationFlyout/samples/NotificationFlyoutSample.Host/Program.cs
T
2021-02-12 23:23:41 +00:00

22 lines
491 B
C#

using NotificationFlyout.Wpf.UI.Controls;
using System;
namespace NotificationFlyoutSample.Host
{
public class Program
{
[STAThread()]
public static void Main()
{
using (new NotificationFlyoutSample.App())
{
var app = new App();
new NotificationFlyoutApplication
{
Flyout = new Shell()
};
app.Run();
}
}
}
}