* Remove redundant messages * Replaced old markdown with preview. Added nuget config to add preview feed * Fix old extensions usage * Scrollbar margin for the markdown. --------- Co-authored-by: Burak Kaan Köse <bkaankose@outlook.com>
25 lines
988 B
XML
25 lines
988 B
XML
<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:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:toolkitmd="using:CommunityToolkit.Labs.WinUI.MarkdownTextBlock"
|
|
mc:Ignorable="d">
|
|
|
|
<Border Style="{StaticResource PageRootBorderStyle}">
|
|
<Grid Padding="15">
|
|
<ScrollViewer>
|
|
<toolkitmd: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>
|