WIP on data binding, nothing is working...

This commit is contained in:
2017-09-12 18:20:32 +02:00
parent 4487f0343f
commit 1cd7c0411c
33 changed files with 1397 additions and 1373 deletions

View File

@@ -252,15 +252,12 @@ namespace ModernKeePassLib.Serialization
{
try
{
var sampleFile = await StorageFile.GetFileFromPathAsync(ioc.Path);
using (IRandomAccessStream stream = await sampleFile.OpenAsync(FileAccessMode.Read))
{
return stream.AsStream();
}
IRandomAccessStream stream = await ioc.StorageFile.OpenAsync(FileAccessMode.Read);
return stream.AsStream();
}
catch
catch (Exception ex)
{
Debug.Assert(false, "Not implemented yet");
Debug.Assert(false, ex.Message);
return null;
}
}