Added shadow support
This commit is contained in:
@@ -2,18 +2,35 @@
|
||||
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>
|
||||
<ListBox
|
||||
Width="300"
|
||||
Height="400"
|
||||
Background="Transparent">
|
||||
<ListBoxItem Content="Item 1" />
|
||||
<ListBoxItem Content="Item 2" />
|
||||
<ListBoxItem Content="Item 3" />
|
||||
<ListBoxItem Content="Item 4" />
|
||||
<ListBoxItem Content="Item 5" />
|
||||
<ListBoxItem Content="Item 6" />
|
||||
</ListBox>
|
||||
xmlns:controls="using:NotificationFlyout.Uwp.UI.Controls"
|
||||
CornerRadius="8">
|
||||
<Grid
|
||||
Width="330"
|
||||
Height="360"
|
||||
Margin="23">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
</Grid.RowDefinitions>
|
||||
<TextBlock Text="Quick lauch" />
|
||||
<GridView Grid.Row="1" HorizontalAlignment="Center">
|
||||
<GridView.ItemsPanel>
|
||||
<ItemsPanelTemplate>
|
||||
<ItemsWrapGrid Orientation="Horizontal" />
|
||||
</ItemsPanelTemplate>
|
||||
</GridView.ItemsPanel>
|
||||
<Button
|
||||
Width="94"
|
||||
Margin="6,6,3,6"
|
||||
Content="Test" />
|
||||
<Button
|
||||
Width="94"
|
||||
Margin="3,6,3,6"
|
||||
Content="Test" />
|
||||
<Button
|
||||
Width="94"
|
||||
Margin="3,6,6,6"
|
||||
Content="Test" />
|
||||
</GridView>
|
||||
</Grid>
|
||||
</controls:NotificationFlyoutPresenter>
|
||||
|
||||
Reference in New Issue
Block a user