2021-08-23 19:48:52 +02:00
|
|
|
<UserControl
|
|
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.Controls.OOBEPageControl"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:local="using:Microsoft.PowerToys.Settings.UI.Controls"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
|
|
|
|
|
d:DesignHeight="300"
|
|
|
|
|
d:DesignWidth="400">
|
|
|
|
|
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="280" />
|
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
|
|
<Image x:Name="HeaderImage"
|
|
|
|
|
Source="{x:Bind ModuleImageSource}"
|
|
|
|
|
Stretch="UniformToFill" />
|
|
|
|
|
|
|
|
|
|
<ScrollViewer Grid.Row="1"
|
|
|
|
|
VerticalScrollBarVisibility="Auto"
|
|
|
|
|
Padding="32,24,32,24">
|
|
|
|
|
<StackPanel Orientation="Vertical"
|
|
|
|
|
VerticalAlignment="Top">
|
|
|
|
|
|
|
|
|
|
<TextBlock x:Name="TitleTxt"
|
|
|
|
|
Text="{x:Bind ModuleTitle}"
|
2021-10-01 15:11:09 +02:00
|
|
|
AutomationProperties.HeadingLevel="Level1"
|
2021-08-23 19:48:52 +02:00
|
|
|
Style="{StaticResource TitleTextBlockStyle}" />
|
|
|
|
|
|
|
|
|
|
<TextBlock x:Name="DescriptionTxt"
|
|
|
|
|
Margin="0,8,0,0"
|
|
|
|
|
Text="{x:Bind ModuleDescription}"
|
|
|
|
|
Foreground="{ThemeResource TextFillColorSecondaryBrush}"
|
|
|
|
|
TextWrapping="Wrap" />
|
|
|
|
|
|
|
|
|
|
<ContentPresenter x:Name="ModuleContentPresenter"
|
|
|
|
|
Content="{x:Bind ModuleContent}"
|
|
|
|
|
HorizontalAlignment="Stretch"
|
|
|
|
|
HorizontalContentAlignment="Stretch"
|
|
|
|
|
Margin="0,12,0,0"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</ScrollViewer>
|
|
|
|
|
</Grid>
|
|
|
|
|
</UserControl>
|