Main page now allows password input

Group nesting works
This commit is contained in:
2017-09-15 15:58:51 +02:00
parent e97344011d
commit b54fff2502
7 changed files with 103 additions and 29 deletions

View File

@@ -17,6 +17,13 @@ namespace ModernKeePass.ViewModels
return $"{Entries?.Count} entries.";
}
}
public string GroupCount
{
get
{
return $"{Groups?.Count} groups.";
}
}
public GroupVm()
{
@@ -39,6 +46,5 @@ namespace ModernKeePass.ViewModels
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
}