29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
|
|
<abstract:WelcomePageAbstract
|
||
|
|
xmlns:abstract="using:Wino.Views.Abstract"
|
||
|
|
x:Class="Wino.Views.WelcomePage"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:local="using:Wino.Views"
|
||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
xmlns:controls="using:Microsoft.Toolkit.Uwp.UI.Controls"
|
||
|
|
mc:Ignorable="d">
|
||
|
|
|
||
|
|
<Grid Padding="24">
|
||
|
|
<ScrollViewer>
|
||
|
|
<controls:MarkdownTextBlock
|
||
|
|
x:Name="MarkdownControl"
|
||
|
|
LinkClicked="HyperlinkClicked"
|
||
|
|
Background="Transparent"
|
||
|
|
ImageStretch="UniformToFill"
|
||
|
|
Text="{x:Bind ViewModel.CurrentVersionNotes, Mode=OneWay}"
|
||
|
|
ListBulletSpacing="10"
|
||
|
|
Header1FontSize="30"
|
||
|
|
CharacterSpacing="12"
|
||
|
|
FontSize="16"
|
||
|
|
Header2FontSize="22" />
|
||
|
|
</ScrollViewer>
|
||
|
|
</Grid>
|
||
|
|
|
||
|
|
</abstract:WelcomePageAbstract>
|