2018-03-09 18:06:06 +01:00
|
|
|
<Page
|
2020-05-13 13:50:33 +02:00
|
|
|
x:Class="ModernKeePass.Views.SettingsGeneralPage"
|
2018-03-09 18:06:06 +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"
|
2020-04-23 19:00:38 +02:00
|
|
|
mc:Ignorable="d"
|
2020-05-13 13:50:33 +02:00
|
|
|
DataContext="{Binding Source={StaticResource Locator}, Path=General}">
|
2018-03-09 18:06:06 +01:00
|
|
|
|
2020-04-23 19:00:38 +02:00
|
|
|
<StackPanel Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
2018-03-09 18:06:06 +01:00
|
|
|
<TextBlock x:Uid="SettingsSaveDatabaseSuspendTitle" Style="{StaticResource TextBlockSettingsHeaderStyle}" Margin="5,0,0,10"/>
|
|
|
|
<TextBlock x:Uid="SettingsSaveDatabaseSuspendDesc" TextWrapping="WrapWholeWords" Margin="5,0,0,10"/>
|
2020-04-29 16:39:20 +02:00
|
|
|
<ToggleSwitch x:Uid="SettingsSaveDatabaseSuspend" IsOn="{Binding IsSaveSuspend, Mode=TwoWay}" />
|
2020-05-13 13:50:33 +02:00
|
|
|
<TextBlock x:Uid="SettingsCopyExpiration" Style="{StaticResource TextBlockSettingsHeaderStyle}" Margin="5,20,0,10" />
|
|
|
|
<TextBox Text="{Binding CopyExpiration, Mode=TwoWay}" InputScope="Number" KeyDown="UIElement_OnKeyDown" />
|
2018-03-09 18:06:06 +01:00
|
|
|
</StackPanel>
|
|
|
|
</Page>
|