19 lines
370 B
C#
19 lines
370 B
C#
using System;
|
|
|
|
namespace NotificationFlyoutSample.Host
|
|
{
|
|
public class Program
|
|
{
|
|
[STAThread()]
|
|
public static void Main()
|
|
{
|
|
using (new NotificationFlyoutSample.App())
|
|
{
|
|
var app = new App();
|
|
new SampleNotificationFlyout();
|
|
app.Run();
|
|
}
|
|
}
|
|
}
|
|
}
|