implemented FullRight placement mode
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
using Windows.UI.Xaml;
|
||||
using TheXamlGuy.NotificationFlyout.Uwp.UI.Controls;
|
||||
using Windows.UI.Xaml;
|
||||
using Windows.UI.Xaml.Controls;
|
||||
|
||||
namespace NotificationFlyoutSample
|
||||
{
|
||||
@@ -14,5 +16,32 @@ namespace NotificationFlyoutSample
|
||||
var app = GetApplication();
|
||||
app.Exit();
|
||||
}
|
||||
|
||||
private void ToggleSwitch_Toggled(object sender, RoutedEventArgs e)
|
||||
{
|
||||
var toggleSwitch = sender as ToggleSwitch;
|
||||
if (toggleSwitch.IsOn)
|
||||
{
|
||||
this.IsLightDismissEnabled = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.IsLightDismissEnabled = false;
|
||||
}
|
||||
}
|
||||
|
||||
private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
|
||||
{
|
||||
var comboBox = sender as ComboBox;
|
||||
|
||||
if (comboBox.SelectedIndex == 0)
|
||||
{
|
||||
this.Placement = NotificationFlyoutPlacement.Auto;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.Placement = NotificationFlyoutPlacement.FullRight;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user