Hide window from task switcher

This commit is contained in:
Daniel Clark
2021-02-08 17:33:32 +00:00
parent 1dc40961ff
commit 0b33b049b0
4 changed files with 37 additions and 17 deletions
@@ -3,14 +3,22 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="using:NotificationFlyout.Uwp.UI.Controls">
<Grid
<StackPanel
Width="330"
Height="360"
Height="500"
Margin="24">
<ComboBox x:Name="test" Margin="0,0,0,8" SelectionChanged="test_SelectionChanged">
<ComboBox
x:Name="test"
Margin="0,0,0,8"
SelectionChanged="test_SelectionChanged">
<ComboBoxItem>System</ComboBoxItem>
<ComboBoxItem>Dark</ComboBoxItem>
<ComboBoxItem>Light</ComboBoxItem>
</ComboBox>
</Grid>
<Button Margin="0,0,0,8" Content="Button" />
<Slider Margin="0,0,0,8" />
<TextBox Margin="0,0,0,8" />
<ToggleButton Margin="0,0,0,8" />
<CalendarView Margin="0,0,0,8" />
</StackPanel>
</controls:NotificationFlyoutPresenter>