Files
NotificationFlyout/samples/NotificationFlyoutSample/Shell.xaml.cs
T
2021-02-15 12:21:59 +00:00

21 lines
421 B
C#

using System;
using System.Threading.Tasks;
using Windows.Media.Control;
namespace NotificationFlyoutSample
{
public sealed partial class Shell
{
public Shell()
{
InitializeComponent();
}
private void MenuFlyoutItem_Click(object sender, Windows.UI.Xaml.RoutedEventArgs e)
{
var app = GetApplication();
app.Exit();
}
}
}