Initial WinUI switch.
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
<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"
|
||||
xmlns:abstract="using:Wino.Views.Abstract"
|
||||
xmlns:controls="using:CommunityToolkit.WinUI.Controls"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d">
|
||||
|
||||
<Border Style="{StaticResource PageRootBorderStyle}">
|
||||
<Grid Padding="15">
|
||||
<ScrollViewer>
|
||||
<controls:MarkdownTextBlock
|
||||
Margin="0,0,16,0"
|
||||
CharacterSpacing="12"
|
||||
Config="{x:Bind _config, Mode=OneTime}"
|
||||
FontSize="16"
|
||||
Text="{x:Bind ViewModel.CurrentVersionNotes, Mode=OneWay}" />
|
||||
</ScrollViewer>
|
||||
</Grid>
|
||||
</Border>
|
||||
|
||||
</abstract:WelcomePageAbstract>
|
||||
Reference in New Issue
Block a user