Displaying an XPS document in Document Viewer

16,276

You've probably already figured this out by now since it's been almost a month.

It doesn't look like your document viewer is part of your xaml file. It looks like you are creating a new DocumentViewer object, but never adding it to the xaml file.

Instead of

dvDoc = new DocumentViewer();

Declare it in your xaml file:

<DocumentViewer Name="dvDoc" />
Share:
16,276
SumGuy
Author by

SumGuy

Updated on June 12, 2022

Comments

  • SumGuy
    SumGuy almost 2 years

    I'm having a go with document viewer and XPS atm as I haven't tried it before. So I have a simple piece of code loading an XPS document and displaying it in the document viewer, however the document doesn't appear. The document viewer loads and a quick step through in debug mode tells me the information is there,it just won't show.

            dvDoc = new DocumentViewer();
    
            string fileName = null;
            string appPath = System.IO.Path.GetDirectoryName(Assembly.GetAssembly(typeof(DocumentWindow)).CodeBase);
    
            if (type == "About")
                fileName = appPath + @"\Documents\About.xps";
    
            fileName = fileName.Remove(0, 6);
            XpsDocument doc = new XpsDocument(fileName, FileAccess.Read);
    
            dvDoc.Document = doc.GetFixedDocumentSequence();
    

    All literature I can find tells me to do it this way yet it doesn't seem to work for me. I'm aware that document viewer doesn't like URI's, hence the filename.remove line.

    Any suggestions as to what I'm missing.

    Cheers, SumGuy

  • SumGuy
    SumGuy over 14 years
    I hadn't actually been working on this particular project recently so no I hadn't noticed. But now that you mention it, it is pretty obvious. Cheers for answering