mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 08:00:16 -04:00
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:
@@ -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();
|
||||
|
Reference in New Issue
Block a user