mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
History list fully functional in Entry page
Viewing a historic entry disables controls on the page Enhancements in the hamburger menu
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using Windows.UI.Xaml;
|
||||
using Windows.UI.Xaml.Controls;
|
||||
using Windows.UI.Xaml.Controls.Primitives;
|
||||
|
||||
namespace ModernKeePass.Controls
|
||||
{
|
||||
@@ -43,6 +44,17 @@ namespace ModernKeePass.Controls
|
||||
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()
|
||||
{
|
||||
|
Reference in New Issue
Block a user