Bug correction when canceling open file dialog

New About page
Main menu pages now have titles
This commit is contained in:
2017-10-16 10:57:39 +02:00
committed by BONNEVILLE Geoffroy
parent 86064af3a2
commit 5497e6fc00
9 changed files with 89 additions and 24 deletions

View File

@@ -66,6 +66,10 @@ namespace ModernKeePass.ViewModels
new MainMenuItemVm {
Title = "Recent" , PageType = typeof(RecentDatabasesPage), Destination = destinationFrame, Parameter = referenceFrame, SymbolIcon = Symbol.Copy,
IsSelected = (app.Database == null || app.Database.Status == DatabaseHelper.DatabaseStatus.Closed) && mru.Entries.Count > 0, IsEnabled = mru.Entries.Count > 0
},
new MainMenuItemVm
{
Title = "About" , PageType = typeof(AboutPage), Destination = destinationFrame, SymbolIcon = Symbol.Help
}
};
// Auto-select the Recent Items menu item if the conditions are met