Risposta alle domande più comuni

Opening PDF document from storage file on Windows
Ultimo aggiornamento 11 mesi fa

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);

Caricamento in corso ...