Files
NotificationFlyout/NotificationFlyout.Sample/NotificationFlyoutPresenter.xaml.cs
T

24 lines
576 B
C#

namespace NotificationFlyout.Sample
{
public sealed partial class NotificationFlyoutPresenter
{
public NotificationFlyoutPresenter()
{
InitializeComponent();
}
private void ToggleSwitch_Toggled(object sender, Windows.UI.Xaml.RoutedEventArgs e)
{
if (test.IsOn)
{
this.RequestedTheme = Windows.UI.Xaml.ElementTheme.Dark;
}
else
{
this.RequestedTheme = Windows.UI.Xaml.ElementTheme.Light;
}
}
}
}