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"
|
|
|
|
x:Class="ModernKeePass.Pages.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-20 20:02:52 +02:00
|
|
|
<TextBlock Style="{StaticResource HeaderTextBlockStyle}" Margin="0,-20,0,20">
|
|
|
|
<Run Text="About"/>
|
|
|
|
</TextBlock>
|
2017-10-25 18:29:50 +02:00
|
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}">
|
|
|
|
<Run Text="{Binding Name}"/>
|
|
|
|
<Run Text="version"/>
|
|
|
|
<Run Text="{Binding Version}" />
|
|
|
|
</TextBlock>
|
2017-10-20 20:02:52 +02:00
|
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="20,0,0,0">
|
|
|
|
<Run Text="A modern password manager for the Windows Store"/>
|
|
|
|
</TextBlock>
|
|
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="20,0,0,0">
|
|
|
|
<Run Text="Homepage: "/>
|
|
|
|
<Hyperlink NavigateUri="https://github.com/wismna/ModernKeePass">
|
|
|
|
<Run Text="https://github.com/wismna/ModernKeePass"/>
|
|
|
|
</Hyperlink></TextBlock>
|
|
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}">
|
|
|
|
<Run Text="Credits:"/>
|
|
|
|
</TextBlock>
|
|
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="20,0,0,0">
|
|
|
|
<Run Text="Dominik Reichl for the KeePass application and file format"/>
|
|
|
|
</TextBlock>
|
|
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="20,0,0,0">
|
|
|
|
<Run Text="ArtjomP for his PCL adapatation of the KeePass Library"/>
|
|
|
|
</TextBlock>
|
2017-10-16 10:57:39 +02:00
|
|
|
</StackPanel>
|
|
|
|
</Page>
|