You can use the SDK to open a PDF using Storage File as follows:
StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(new Uri(uri));
IRandomAccessStream stream = await file.OpenAsync(FileAccessMode.ReadWrite);
if (stream != null)
Frame.Navigate(typeof(PDFReaderPage), stream);
RadaeePDF SDK for Windows 10
Created : 2016-11-30 14:08:00, Last Modified : 2016-11-30 14:37:59