mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
Groups can now also be manually reordered
Design improvements
This commit is contained in:
@@ -110,6 +110,18 @@ namespace ModernKeePass.Views.UserControls
|
||||
typeof(bool),
|
||||
typeof(HamburgerMenuUserControl),
|
||||
new PropertyMetadata(false, (o, args) => { }));
|
||||
|
||||
public bool CanDragItems
|
||||
{
|
||||
get { return (bool)GetValue(CanDragItemsProperty); }
|
||||
set { SetValue(CanDragItemsProperty, value); }
|
||||
}
|
||||
public static readonly DependencyProperty CanDragItemsProperty =
|
||||
DependencyProperty.Register(
|
||||
nameof(CanDragItems),
|
||||
typeof(bool),
|
||||
typeof(HamburgerMenuUserControl),
|
||||
new PropertyMetadata(false, (o, args) => { }));
|
||||
|
||||
public ICommand ActionButtonCommand
|
||||
{
|
||||
|
Reference in New Issue
Block a user