18 lines
738 B
XML
18 lines
738 B
XML
<controls:NotificationFlyout
|
|
x:Class="NotificationFlyoutSample.SampleFlyout"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:controls="using:TheXamlGuy.NotificationFlyout.Uwp.UI.Controls"
|
|
CornerRadius="6">
|
|
<controls:NotificationFlyout.ContextFlyout>
|
|
<MenuFlyout>
|
|
<MenuFlyoutItem Text="Close" Click="OnCloseMenuFlyoutItemClick" />
|
|
</MenuFlyout>
|
|
</controls:NotificationFlyout.ContextFlyout>
|
|
<Grid Width="500" Height="500">
|
|
<Button
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Center"
|
|
Content="Hello World!" />
|
|
</Grid>
|
|
</controls:NotificationFlyout> |