mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 08:00:16 -04:00
39 lines
1.8 KiB
XML
39 lines
1.8 KiB
XML
<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"
|
|
xmlns:viewModels="using:ModernKeePass.ViewModels"
|
|
x:Class="ModernKeePass.Pages.AboutPage"
|
|
mc:Ignorable="d">
|
|
|
|
<Page.DataContext>
|
|
<viewModels:AboutVm/>
|
|
</Page.DataContext>
|
|
|
|
<StackPanel Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="10,0,0,0">
|
|
<Run Text="{Binding Name}"/>
|
|
<Run Text="version"/>
|
|
<Run Text="{Binding Version}" />
|
|
</TextBlock>
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="30,0,0,0">
|
|
<Run Text="A modern password manager for the Windows Store"/>
|
|
</TextBlock>
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="30,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}" Margin="10,0,0,0">
|
|
<Run Text="Credits:"/>
|
|
</TextBlock>
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="30,0,0,0">
|
|
<Run Text="Dominik Reichl for the KeePass application and file format"/>
|
|
</TextBlock>
|
|
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="30,0,0,0">
|
|
<Run Text="David Lechner for his PCL adapatation of the KeePass Library and his correlated tests"/>
|
|
</TextBlock>
|
|
</StackPanel>
|
|
</Page>
|