1

How to read the pdf files in windows 8 app .In my windows 8 application how to open the pdf files .

In manifest file i wrote the below code.

<Extensions>
        <Extension Category="windows.fileTypeAssociation">
          <FileTypeAssociation Name="pdf">
            <SupportedFileTypes>
              <FileType>.pdf</FileType>
            </SupportedFileTypes>
          </FileTypeAssociation>
        </Extension>
      </Extensions>

and code behind.

string imageFile = @"Images\DX730_EN.pdf";

           var file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(imageFile);

            if (file != null)
            {
                // Set the option to show the picker
                var options = new Windows.System.LauncherOptions();
                options.DisplayApplicationPicker = true;

                // Launch the retrieved file
                bool success = await Windows.System.Launcher.LaunchFileAsync(file, options);
                if (success)
                {
                    // File launched
                }
                else
                {
                    // File launch failed
                }
            }
            else
            {
                // Could not find file
            }

i could not able to open the pdf file.please tell me where is error?

4

3 に答える 3

4

Windows.System.Launcher クラスの LaunchFileAsync メソッドを使用できます。

これを見てください: http://msdn.microsoft.com/en-us/library/windows/apps/hh701465.aspx

于 2012-10-29T15:22:54.637 に答える
0

Windows 8 には、pdf ファイルを読み取るための Windows Reader が付属しています。

このリンクはあなたを助けるかもしれません

http://www.howto-connect.com/how-to-view-pdf-file-in-windows-8-what-is-windows-reader/

それが役に立たない場合、これは可能性があります

http://social.technet.microsoft.com/Forums/en-US/W8ITProPreRel/thread/b19fc6d8-531f-4cf2-8d6d-f1dc9e93a93d/

于 2012-10-29T08:57:45.703 に答える
0

解決策は、Windows.ApplicationModel.Package.Current.InstalledLocation... で pdf ファイルを開くことができることです。

そのため、pdfをローカルフォルダーに置き、そこから開きます。

    StorageFolder localFolder = Windows.Storage.ApplicationData.Current.LocalFolder;
     StorageFile file= await localFolder.GetFileAsync("myFile.pdf");
     if (file != null)
                {
                    // Set the option to show the picker
                    var options = new Windows.System.LauncherOptions();
                    options.DisplayApplicationPicker = true;

                    // Launch the retrieved file
                    bool success = await Windows.System.Launcher.LaunchFileAsync(file, options);
                }
于 2013-04-13T10:56:51.887 に答える