20 lines
984 B
XML
20 lines
984 B
XML
<ResourceDictionary
|
|
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">
|
|
<Style TargetType="controls:NotificationFlyoutPresenter">
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="controls:NotificationFlyoutPresenter">
|
|
<Grid x:Name="Root">
|
|
<FlyoutBase.AttachedFlyout>
|
|
<Flyout ShouldConstrainToRootBounds="False" ShowMode="Standard">
|
|
<ContentControl Content="{TemplateBinding Content}" ContentTemplate="{TemplateBinding ContentTemplate}" />
|
|
</Flyout>
|
|
</FlyoutBase.AttachedFlyout>
|
|
</Grid>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
</ResourceDictionary> |