2017-11-07 18:45:35 +01:00
|
|
|
<Page
|
2017-12-08 19:38:33 +01:00
|
|
|
x:Class="ModernKeePass.Views.SettingsSecurityPage"
|
2017-11-07 18:45:35 +01:00
|
|
|
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-12-08 19:38:33 +01:00
|
|
|
xmlns:userControls="using:ModernKeePass.Views.UserControls"
|
2020-04-22 17:06:16 +02:00
|
|
|
xmlns:listItems="using:ModernKeePass.ViewModels.ListItems"
|
2017-11-07 18:45:35 +01:00
|
|
|
mc:Ignorable="d">
|
2020-04-22 17:06:16 +02:00
|
|
|
<Page.Resources>
|
|
|
|
<listItems:SettingsSecurityVm x:Key="ViewModel"/>
|
|
|
|
</Page.Resources>
|
2017-11-07 18:45:35 +01:00
|
|
|
|
2020-04-22 17:06:16 +02:00
|
|
|
<StackPanel Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" DataContext="{StaticResource ViewModel}">
|
2017-11-29 19:13:38 +01:00
|
|
|
<TextBlock x:Uid="SettingsSecurityTitle" Style="{StaticResource TextBlockSettingsHeaderStyle}" Margin="5,0,0,0" />
|
2017-11-27 15:26:36 +01:00
|
|
|
<TextBlock TextWrapping="WrapWholeWords" Margin="5,0,0,0">
|
2017-11-28 18:53:10 +01:00
|
|
|
<Run x:Uid="SettingsSecurityDesc1" />
|
|
|
|
<Run x:Uid="SettingsSecurityDesc2" FontWeight="SemiBold" />
|
|
|
|
<Run x:Uid="SettingsSecurityDesc3" />
|
2017-11-27 15:26:36 +01:00
|
|
|
</TextBlock>
|
2020-04-22 17:06:16 +02:00
|
|
|
<userControls:SetCredentialsUserControl Margin="0,20,0,0" x:Uid="SettingsSecurityUpdateButton"/>
|
2017-11-07 18:45:35 +01:00
|
|
|
</StackPanel>
|
|
|
|
</Page>
|