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:
BONNEVILLE Geoffroy
2018-06-15 18:07:44 +02:00
parent 62c9719a77
commit 7e337c4a40
14 changed files with 101 additions and 63 deletions

View File

@@ -97,5 +97,21 @@ namespace ModernKeePass.Views
{
VisualStateManager.GoToState(this, e.NewSize.Width < 700 ? "Small" : "Large", true);
}
private void HamburgerMenuUserControl_OnSelectionChanged(object sender, SelectionChangedEventArgs e)
{
var listView = sender as ListView;
EntryVm entry;
switch (listView?.SelectedIndex)
{
case -1:
return;
default:
entry = listView?.SelectedItem as EntryVm;
break;
}
StackPanel.DataContext = entry;
}
}
}