我在更多迭代(每次迭代一页)中创建 FixedDocument,如下所示:
PrintDialog pr = new PrintDialog();
FixedDocument doc = new FixedDocument();
foreach(var i in a)
{
// some changes of MaingGrid here
...
//
VisualBrush vb = new VisualBrush(this.MainGrid);
FixedPage page = new FixedPage();
page.Width = doc.DocumentPaginator.PageSize.Width;
page.Height = doc.DocumentPaginator.PageSize.Height;
Rectangle rec = new Rectangle();
rec.Width = this.MainGrid.ActualWidth;
rec.Height = this.MainGrid.ActualHeight;
rec.Fill = vb;
page.Children.Add(rec);
PageContent content = new PageContent();
((IAddChild)content).AddChild(page);
doc.Pages.Add(content);
}
pr.PrintDocument(doc.DocumentPaginator, "test");
在每次迭代中,我都会稍微更改 MainGrid。所以每个页面都应该包含 MainGrid 的实际状态。但是打印的文档包含与上次迭代内容相同的页面(换句话说 - 最后一个状态在文档的所有页面上)。VisualBrush有什么“懒惰的评价”之类的吗?