mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
Hamburger button menu is now a User Control
WIP History in Entry page
This commit is contained in:
@@ -79,13 +79,14 @@ namespace ModernKeePass.Views
|
||||
|
||||
private void groups_SelectionChanged(object sender, SelectionChangedEventArgs e)
|
||||
{
|
||||
var listView = sender as ListView;
|
||||
GroupVm group;
|
||||
switch (LeftListView.SelectedIndex)
|
||||
switch (listView?.SelectedIndex)
|
||||
{
|
||||
case -1:
|
||||
return;
|
||||
default:
|
||||
group = LeftListView.SelectedItem as GroupVm;
|
||||
group = listView?.SelectedItem as GroupVm;
|
||||
break;
|
||||
}
|
||||
Frame.Navigate(typeof(GroupDetailPage), group);
|
||||
|
Reference in New Issue
Block a user