2017-11-07 18:45:35 +01:00
|
|
|
|
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
|
|
|
|
|
|
2017-11-27 15:26:36 +01:00
|
|
|
|
using ModernKeePass.Common;
|
|
|
|
|
using ModernKeePass.Events;
|
|
|
|
|
|
2017-11-07 18:45:35 +01:00
|
|
|
|
namespace ModernKeePass.Pages
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An empty page that can be used on its own or navigated to within a Frame.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public sealed partial class SettingsSecurityPage
|
|
|
|
|
{
|
|
|
|
|
public SettingsSecurityPage()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
2017-11-27 15:26:36 +01:00
|
|
|
|
|
|
|
|
|
private void CompositeKeyUserControl_OnValidationChecked(object sender, PasswordEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
ToastNotificationHelper.ShowGenericToast("Composite key", "Database successfully updated.");
|
|
|
|
|
}
|
2017-11-07 18:45:35 +01:00
|
|
|
|
}
|
|
|
|
|
}
|