Как просмотреть PrintDocument в DocumentViewer - PullRequest
0 голосов
/ 28 апреля 2020

Работа над моим приложением WPF. Я хочу предварительно просмотреть свой printDocument внутри DocumentViewer перед его печатью. Я хотел бы найти способ предварительного просмотра перед печатью. Код ниже будет идеальным. Однако docviewer.document ожидает paginatorSource.

        PrintDocument p = new PrintDocument();


        p.PrintPage += new PrintPageEventHandler
            (this.p_PrintLabel);

        try
        {
            docViewer.Document = p;


            //p.Print();

        }
        catch (Exception ex)
        {
            throw new Exception("Exception Occured While Printing", ex);
        }
...