Files
NotificationFlyout/NotificationFlyout.Tray/Program.cs
T
Daniel Clark 45a9eb9cd2 init
2021-02-05 01:39:51 +00:00

19 lines
365 B
C#

using NotificationFlyout.Tray.Views;
using System;
namespace NotificationFlyout.Tray
{
public class Program
{
[STAThread()]
public static void Main()
{
using (new XamlHost.App())
{
var app = new App();
new Shell();
app.Run();
}
}
}
}