19 lines
365 B
C#
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();
|
|
}
|
|
}
|
|
}
|
|
} |