Files
2021-02-28 18:45:12 +00:00

23 lines
510 B
C#

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();
}
}
}
}