mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00

New tooltip in Textbox with button control New welcome page in Settings (shown when noting is selected) Settings are now grouped
24 lines
694 B
C#
24 lines
694 B
C#
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
|
|
|
|
using ModernKeePass.Common;
|
|
using ModernKeePass.Events;
|
|
|
|
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();
|
|
}
|
|
|
|
private void CompositeKeyUserControl_OnValidationChecked(object sender, PasswordEventArgs e)
|
|
{
|
|
ToastNotificationHelper.ShowGenericToast("Composite key", "Database successfully updated.");
|
|
}
|
|
}
|
|
}
|