PDF for WPF and Silverlight
ドキュメントの読み込み
PDF for WPF/Silverlight の概要 > 機能:PDF for WPF/Silverlight > ドキュメントの読み込み

既存の PDF ファイルを開くには、ファイルにストリームを渡して LoadDocument メソッドまたは LoadDocumentAsync メソッドを使用します。ユーザーが選択したファイルを開くには、次のコードを実行します。

C#
コードのコピー
FileOpenPicker openPicker = new FileOpenPicker();
 
openPicker.FileTypeFilter.Add(".pdf");
StorageFile file = await openPicker.PickSingleFileAsync();
  if (file != null)
    {
       Stream stream = await file.OpenStreamForReadAsync();
       pdfViewer.LoadDocument(stream);
    }