Files
T
2021-02-15 21:35:42 +00:00

18 lines
377 B
C#

using Windows.UI.Xaml;
namespace NotificationFlyoutSample
{
public sealed partial class SampleFlyout
{
public SampleFlyout()
{
InitializeComponent();
}
private void OnCloseMenuFlyoutItemClick(object sender, RoutedEventArgs args)
{
var app = GetApplication();
app.Exit();
}
}
}