Increase version number

WIP new breadcrumb (with hyperlinks)
This commit is contained in:
BONNEVILLE Geoffroy
2018-06-08 18:46:07 +02:00
parent a7f2ae91a7
commit f158191e52
2 changed files with 18 additions and 1 deletions

View File

@@ -92,6 +92,23 @@ namespace ModernKeePass.ViewModels
get { return _isMenuClosed; }
set { SetProperty(ref _isMenuClosed, value); }
}
public ObservableCollection<GroupVm> BreadCrumb
{
get
{
var groups = new List<GroupVm>();
var group = this;
while (group.ParentGroup != null)
{
group = group.ParentGroup;
groups.Add(group);
}
groups.Reverse();
return new ObservableCollection<GroupVm>(groups);
}
}
public string Path
{