mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
Lots of code refactoring to use XAML behaviors instead of code-behind
New Save button in the AppBar EntryPage now uses the same AppBar as GroupPage (but not shared...) Some new Symbol mappings
This commit is contained in:
@@ -4,6 +4,8 @@ namespace ModernKeePass.ViewModels
|
||||
{
|
||||
public class AboutVm
|
||||
{
|
||||
public string Name { get; } = Package.Current.DisplayName;
|
||||
|
||||
public string Version
|
||||
{
|
||||
get
|
||||
@@ -11,7 +13,7 @@ namespace ModernKeePass.ViewModels
|
||||
var package = Package.Current;
|
||||
var version = package.Id.Version;
|
||||
|
||||
return $"{package.DisplayName} version {version.Major}.{version.Minor}";
|
||||
return $"{version.Major}.{version.Minor}";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user