2024-04-18 01:44:37 +02:00
|
|
|
<abstract:WelcomePageAbstract
|
|
|
|
|
x:Class="Wino.Views.WelcomePage"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2024-06-25 00:37:09 +02:00
|
|
|
xmlns:abstract="using:Wino.Views.Abstract"
|
|
|
|
|
xmlns:controls="using:Microsoft.Toolkit.Uwp.UI.Controls"
|
2024-04-18 01:44:37 +02:00
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
2024-06-25 00:37:09 +02:00
|
|
|
xmlns:local="using:Wino.Views"
|
2024-04-18 01:44:37 +02:00
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
mc:Ignorable="d">
|
|
|
|
|
|
2024-06-25 00:37:09 +02:00
|
|
|
<Border
|
|
|
|
|
Margin="0,0,7,7"
|
|
|
|
|
Background="{ThemeResource WinoContentZoneBackgroud}"
|
|
|
|
|
BorderBrush="{StaticResource CardStrokeColorDefaultBrush}"
|
|
|
|
|
BorderThickness="1"
|
|
|
|
|
CornerRadius="7">
|
|
|
|
|
<Grid Padding="24">
|
|
|
|
|
<ScrollViewer>
|
|
|
|
|
<controls:MarkdownTextBlock
|
|
|
|
|
x:Name="MarkdownControl"
|
|
|
|
|
Background="Transparent"
|
|
|
|
|
CharacterSpacing="12"
|
|
|
|
|
FontSize="16"
|
|
|
|
|
Header1FontSize="30"
|
|
|
|
|
Header2FontSize="22"
|
|
|
|
|
ImageStretch="UniformToFill"
|
|
|
|
|
LinkClicked="HyperlinkClicked"
|
|
|
|
|
ListBulletSpacing="10"
|
|
|
|
|
Text="{x:Bind ViewModel.CurrentVersionNotes, Mode=OneWay}" />
|
|
|
|
|
</ScrollViewer>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Border>
|
2024-04-18 01:44:37 +02:00
|
|
|
|
|
|
|
|
</abstract:WelcomePageAbstract>
|