WIP Top Menu - sort buttons present but not working

Removed flyout from textbox with button
Generating a new password creates a new history entry
Top Menu edit mode now works as intended
This commit is contained in:
BONNEVILLE Geoffroy
2018-07-11 12:15:56 +02:00
parent 931f79ac16
commit 81ca11a955
9 changed files with 136 additions and 37 deletions

View File

@@ -43,19 +43,7 @@ namespace ModernKeePass.Controls
typeof(bool),
typeof(TextBoxWithButton),
new PropertyMetadata(true, (o, args) => { }));
public FlyoutBase ButtonFlyout
{
get { return (FlyoutBase)GetValue(ButtonFlyoutProperty); }
set { SetValue(ButtonFlyoutProperty, value); }
}
public static readonly DependencyProperty ButtonFlyoutProperty =
DependencyProperty.Register(
"ButtonFlyout",
typeof(FlyoutBase),
typeof(TextBoxWithButton),
new PropertyMetadata(null, (o, args) => { }));
protected override void OnApplyTemplate()
{
base.OnApplyTemplate();