2017-10-16 10:57:39 +02:00
|
|
|
<Page
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2017-10-20 20:02:52 +02:00
|
|
|
xmlns:viewModels="using:ModernKeePass.ViewModels"
|
2017-12-08 19:38:33 +01:00
|
|
|
x:Class="ModernKeePass.Views.AboutPage"
|
2017-10-16 10:57:39 +02:00
|
|
|
mc:Ignorable="d">
|
|
|
|
|
2017-10-20 20:02:52 +02:00
|
|
|
<Page.DataContext>
|
|
|
|
<viewModels:AboutVm/>
|
|
|
|
</Page.DataContext>
|
|
|
|
|
2017-10-16 10:57:39 +02:00
|
|
|
<StackPanel Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
2017-10-28 11:24:34 -04:00
|
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="10,0,0,0">
|
2017-10-25 18:29:50 +02:00
|
|
|
<Run Text="{Binding Name}"/>
|
|
|
|
<Run Text="version"/>
|
|
|
|
<Run Text="{Binding Version}" />
|
|
|
|
</TextBlock>
|
2017-10-28 11:24:34 -04:00
|
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="30,0,0,0">
|
2017-11-28 18:53:10 +01:00
|
|
|
<Run x:Uid="AboutDesc" />
|
2017-10-20 20:02:52 +02:00
|
|
|
</TextBlock>
|
2017-10-28 11:24:34 -04:00
|
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="30,0,0,0">
|
2017-11-28 18:53:10 +01:00
|
|
|
<Run x:Uid="AboutHomepage" />
|
2020-04-29 16:39:20 +02:00
|
|
|
<Hyperlink NavigateUri="https://wismna.github.io/ModernKeePass/">
|
2018-07-20 16:33:13 +02:00
|
|
|
<Run Text="https://wismna.github.io/ModernKeePass/"/>
|
2018-06-12 18:40:54 +02:00
|
|
|
</Hyperlink>
|
|
|
|
</TextBlock>
|
2017-10-28 11:24:34 -04:00
|
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="10,0,0,0">
|
2017-11-28 18:53:10 +01:00
|
|
|
<Run x:Uid="AboutCreditsLabel" />
|
2017-10-20 20:02:52 +02:00
|
|
|
</TextBlock>
|
2017-10-28 11:24:34 -04:00
|
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="30,0,0,0">
|
2017-11-28 18:53:10 +01:00
|
|
|
<Run x:Uid="AboutCredits1" />
|
2017-10-20 20:02:52 +02:00
|
|
|
</TextBlock>
|
2017-10-28 11:24:34 -04:00
|
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="30,0,0,0">
|
2017-11-28 18:53:10 +01:00
|
|
|
<Run x:Uid="AboutCredits2" />
|
2017-10-20 20:02:52 +02:00
|
|
|
</TextBlock>
|
2017-10-16 10:57:39 +02:00
|
|
|
</StackPanel>
|
|
|
|
</Page>
|