我正在尝试打印一个流程文档,其中每一页上都有相应的页码。
最好的办法是什么?直接在flowdocument上还是在PrintDialog上?
我一直在寻找这个,但没有成功。
先谢谢你了。
private void Btn_print_Click(object sender, RoutedEventArgs e)
{
PrintDialog pd = new PrintDialog();
if (pd.ShowDialog() == true)
{
IDocumentPaginatorSource idp = FlowDoc;
pd.PrintDocument(idp.DocumentPaginator, "Flow Document");
}
}
1条答案
按热度按时间brc7rcf01#
该代码包含注解,用于解释该过程的每个步骤