我想在DocumentViewer中显示一个固定的页面并进行打印。我的固定页面包含一个高度为1080的边框,可在页面底部获得页脚。打印此页时看起来不错。但是DocumentViewer会显示页面,好像页面在底部被剪切一样。我该如何解决?
如果这很重要,这就是我添加页面的方式:
public ReportViewerPrinter()
{
InitializeComponent();
PageContent pc = new PageContent();
FirstPage p = new FirstPage();
//following the FixedPage containing a border with Height=1080
FixedPage fp = p.PageContent;
p.Content = null;
pc.Child = fp;
displayedDocument.Pages.Add(pc);
}