26 lines
918 B
XML
26 lines
918 B
XML
<UserControl
|
|
x:Class="NotificationFlyoutSample.Test"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="using:NotificationFlyoutSample"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
|
|
d:DesignHeight="300"
|
|
d:DesignWidth="400"
|
|
mc:Ignorable="d">
|
|
|
|
|
|
<Grid>
|
|
<Button Click="TestButtonClick1" Content="Show TeachingTip" />
|
|
|
|
<muxc:TeachingTip x:Name="ToggleThemeTeachingTip1" ShouldConstrainToRootBounds="False">
|
|
<muxc:TeachingTip.Content>
|
|
<Border Width="500" Height="500">
|
|
<Slider />
|
|
|
|
</Border>
|
|
</muxc:TeachingTip.Content>
|
|
</muxc:TeachingTip>
|
|
</Grid>
|
|
</UserControl>
|