17 lines
677 B
XML
17 lines
677 B
XML
<controls:NotificationFlyoutPresenter
|
|
x:Class="NotificationFlyout.Sample.NotificationFlyoutPresenter"
|
|
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
|
|
Width="330"
|
|
Height="360"
|
|
Margin="24">
|
|
<ComboBox x:Name="test" Margin="0,0,0,8" SelectionChanged="test_SelectionChanged">
|
|
<ComboBoxItem>System</ComboBoxItem>
|
|
<ComboBoxItem>Dark</ComboBoxItem>
|
|
<ComboBoxItem>Light</ComboBoxItem>
|
|
</ComboBox>
|
|
</Grid>
|
|
</controls:NotificationFlyoutPresenter>
|