16 lines
563 B
XML
16 lines
563 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"
|
|
Placement="Right">
|
|
<Grid
|
|
Width="1000"
|
|
Height="1000"
|
|
Background="Red">
|
|
<Button
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Center"
|
|
Content="Hello World!" />
|
|
</Grid>
|
|
</controls:NotificationFlyout> |