FileInfo overhaul

Opening DB works again
This commit is contained in:
Geoffroy BONNEVILLE
2020-04-07 12:48:18 +02:00
parent 56d93a5187
commit 1fa799bdf8
15 changed files with 73 additions and 31 deletions

View File

@@ -239,8 +239,9 @@ namespace ModernKeePass
var token = StorageApplicationPermissions.FutureAccessList.Add(file);
var fileInfo = new FileInfo
{
Path = token,
Name = file.DisplayName
Id = token,
Name = file.DisplayName,
Path = file.Path
};
rootFrame.Navigate(typeof(MainPage), fileInfo);
}