15 lines
545 B
XML
15 lines
545 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"
|
|
CornerRadius="4"
|
|
RequestedTheme="Default">
|
|
<Grid
|
|
Width="330"
|
|
Height="360"
|
|
Margin="23">
|
|
<ToggleSwitch x:Name="test" Toggled="ToggleSwitch_Toggled" />
|
|
</Grid>
|
|
</controls:NotificationFlyoutPresenter>
|