mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
Increase version number
WIP new breadcrumb (with hyperlinks)
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user