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"
|
2024-04-18 01:44:37 +02:00
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2024-09-27 00:46:51 +02:00
|
|
|
xmlns:toolkitmd="using:CommunityToolkit.Labs.WinUI.MarkdownTextBlock"
|
2024-04-18 01:44:37 +02:00
|
|
|
mc:Ignorable="d">
|
|
|
|
|
|
2024-09-27 00:46:51 +02:00
|
|
|
<Border Style="{StaticResource PageRootBorderStyle}">
|
|
|
|
|
<Grid Padding="15">
|
2024-06-25 00:37:09 +02:00
|
|
|
<ScrollViewer>
|
2024-09-27 00:46:51 +02:00
|
|
|
<toolkitmd:MarkdownTextBlock
|
|
|
|
|
Margin="0,0,16,0"
|
2024-06-25 00:37:09 +02:00
|
|
|
CharacterSpacing="12"
|
2024-09-27 00:46:51 +02:00
|
|
|
Config="{x:Bind _config, Mode=OneTime}"
|
2024-06-25 00:37:09 +02:00
|
|
|
FontSize="16"
|
|
|
|
|
Text="{x:Bind ViewModel.CurrentVersionNotes, Mode=OneWay}" />
|
|
|
|
|
</ScrollViewer>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Border>
|
2024-04-18 01:44:37 +02:00
|
|
|
|
|
|
|
|
</abstract:WelcomePageAbstract>
|