can now debug project directly

This commit is contained in:
Daniel Clark
2021-02-09 12:15:57 +00:00
parent e1b3b1e6c9
commit e10baed2d7
27 changed files with 137 additions and 423 deletions
@@ -0,0 +1,31 @@
namespace NotificationFlyout.Sample.Uwp
{
public sealed partial class NotificationFlyoutPresenter
{
public NotificationFlyoutPresenter()
{
InitializeComponent();
}
private void test_SelectionChanged(object sender, Windows.UI.Xaml.Controls.SelectionChangedEventArgs e)
{
if (test.SelectedIndex == 0)
{
this.RequestedTheme = Windows.UI.Xaml.ElementTheme.Default;
}
if (test.SelectedIndex == 1)
{
this.RequestedTheme = Windows.UI.Xaml.ElementTheme.Dark;
}
if (test.SelectedIndex == 2)
{
this.RequestedTheme = Windows.UI.Xaml.ElementTheme.Light;
}
}
}
}