How to use WriteAsync with XPSDocument?

1.6k Views Asked by At

I have an issue with that code,

XpsDocument doc = new XpsDocument(_filePath, FileAccess.Read);
XpsDocument = doc.GetFixedDocumentSequence();
...
var writer = PrintQueue.CreateXpsDocumentWriter(pq);
var paginator = XpsDocument.DocumentPaginator;
writer.WritingCancelled += WriterOnWritingCancelled;
writer.WritingCompleted += WriterOnWritingCompleted;
writer.WritingPrintTicketRequired += WriterOnWritingPrintTicketRequired;
writer.WriteAsync(paginator);

If I replace the last Ligne with Write(paginator) everything is ok, but if I use the write async I get a,

FixedPage cannot contain another FixedPage.

error in WriterOnWritingCompleted;

I found that article. But I don't really know how to deal with that overload.

1

There are 1 best solutions below

0
On

You could try this code:

private void WriteUsingAsync (
            string XPSDocFileName, object FixedDocFromApplication) 
    {
        // create a new XPS Document for output
        //  note that AsyncXpsDoc is a property defined in the
        //   class containing this method.
        AsyncXpsDoc = new XpsDocument(XPSDocFileName,
            FileAccess.ReadWrite);

    // create a doc writer object based on the open XPS Document
    XpsDocumentWriter XpsDocWrtr =
        XpsDocument.CreateXpsDocumentWriter(AsyncXpsDoc);

    // register the writing completed event handler
    XpsDocWrtr.WritingCompleted +=
        new WritingCompletedEventHandler(AsyncPrintCompleted);
    XpsDocWrtr.WriteAsync((FixedDocument)FixedDocFromApplication);

    return;
}

// Completion Event Handler
private void AsyncPrintCompleted(
    object sender, WritingCompletedEventArgs e)
{
    if ((e.Cancelled) || (e.Error != null))
        //document not written
    else
        // Asynchronous operation Completed

    AsyncXpsDoc.Close();
    AsyncXpsDoc = null;
}

And check that you create fixedDocument in the right way, like:

var fd = new FixedDocument(); 
fd.DocumentPaginator.PageSize = new Size(pd.PrintableAreaWidth,fd.PrintableAreaHeight);
FixedPage page1 = new FixedPage();
page1.Width = fd.DocumentPaginator.PageSize.Width;
page1.Height = fd.DocumentPaginator.PageSize.Height;
UIElement page1Text = pages();
page1.Children.Add(page1Text);
PageContent page1Content = new PageContent();
((IAddChild)page1Content).AddChild(page1);
fd.Pages.Add(page1Content);

private UIElement pages()
    {
        Canvas pcan = new Canvas();

        TextBlock page1Text = new TextBlock();
        page1Text.Text = "This is a test";
        page1Text.FontSize = 40;
        page1Text.Margin = new Thickness(96);

        pcan.Children.Add(page1Text);


        return pcan;
    }