Files
NotificationFlyout/NotificationFlyout.Sample.Wpf/Progam.cs
T
2021-02-09 12:36:55 +00:00

19 lines
354 B
C#

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