2

有没有办法在 WPF 中打印内存集合或可变大小?

我正在使用以下代码打印 ListView 控件。但是当内容大于垂直滚动条时会接管并剪切内容。

 PrintDialog printDialog = new PrintDialog();
                printDialog.ShowDialog();

                printDialog.PrintVisual(lvDocumentSummary, "testing printing!");
4

6 回答 6

6

要打印多个页面,您只需要使用一个实现 DocumentPaginator 的类 FixedDocument 是更复杂的实现之一,FlowDocument 是一个更简单的实现。

FlowDocument fd = new FlowDocument();

foreach(object item in items)
{
    fd.Blocks.Add(new Paragraph(new Run(item.ToString())));
}

fd.Print();

或者

PrintDialog pd = new PrintDialog();
pd.PrintDocument(fd);
于 2008-12-19T09:41:51.603 回答
2

FixedDocument 像任何其他 xaml 文档一样支持 DataBinding(FlowDocument 除外)。只需在固定文档中托管列表视图并将其显示在 DocumentViewer(具有内置打印支持)中。

但是,如果您的列表对于一页来说太长,FixedDocument 不会自动生成新页面(就像 flowdocument 那样)。因此,您必须使用代码创建一个新页面,因为这不能在纯 xaml 中完成。

于 2008-10-16T10:05:27.480 回答
0

如果您想从 WPF 进行良好的打印,您需要构建一个 FixedDocument 并打印它,不幸的是它可能非常复杂,具体取决于您要打印的内容。

这里有一些创建 FixedDocument 的示例代码:http ://www.ericsink.com/wpf3d/B_Printing.html

于 2008-10-16T09:59:55.680 回答
0

这是2019年的答案。一些旧的答案不再起作用,例如。FlowDocumentReader 没有Print方法。

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            FlowDocument fd = new FlowDocument();
            foreach (var item in COLLECTION) //<- put your collection here
            {
                fd.Blocks.Add(new Paragraph(new Run(item.ToString())));
            }

            PrintDialog pd = new PrintDialog();
            if (pd.ShowDialog() != true) return;

            fd.PageHeight = pd.PrintableAreaHeight;
            fd.PageWidth = pd.PrintableAreaWidth;

            IDocumentPaginatorSource idocument = fd as IDocumentPaginatorSource;

            pd.PrintDocument(idocument.DocumentPaginator, "Printing Flow Document...");
        }
    }
于 2019-06-15T10:20:48.857 回答
-1

有趣的是,ListView 是虚拟化的吗?如果是,则未绘制对象,这是一种可能性。看看 Petzold 的印刷示例

于 2008-10-15T15:23:15.420 回答
-4

这是我对这个问题的解决方案。这有点不稳定,但适用于我的场景。

我阅读了我的收藏并将其转换为字符串。整个集合现在驻留在 StringBuilder 对象中。接下来,我在客户端机器上看到文本/字符串到一个文件中,然后使用 /p 运行记事本进程以打印文件的内容。

它工作并成功打印内容。

最后,有一个计时器在 5 秒后调用并删除文件。基本上在 5 秒内,请求已经发送到打印机队列。但更好的解决方案是确保以这种方式处理打印作业,您将 100% 确定作业已执行。

于 2008-10-15T20:51:07.347 回答