我正在尝试将用户控件打印为页面。除了第一页,它工作得很好
这里是我的打印代码:
#region Print
/// <summary>
/// Used the XpsDocumentWriter to write a FixedDocumentSequence which contains the UIElements as single pages
/// </summary>
/// <param name="xpsWriter"></param>
/// <param name="uiElements"></param>
private void PrintUIElements(XpsDocumentWriter xpsWriter, List<UIElement> uiElements)
{
FixedDocumentSequence fixedDocSeq = new FixedDocumentSequence();
foreach (UIElement element in uiElements)
(fixedDocSeq as IAddChild).AddChild(toDocumentReference(element));
// write the FixedDocumentSequence as an XPS Document
xpsWriter.Write(fixedDocSeq);
}
/// <summary>
/// encapsulater for a UIElement in an DocumentReference
/// DocumentReference(FixedDocument(PageContent(FixedPage(UIElement))))
/// to simplify the print of multiple pages
/// </summary>
/// <param name="uiElement">the UIElement which</param>
/// <returns>creates a DocumentReference</returns>
private DocumentReference toDocumentReference(UIElement uiElement)
{
if (uiElement == null)
throw new NullReferenceException("the UIElement has to be not null");
FixedPage fixedPage = new FixedPage();
PageContent pageContent = new PageContent();
FixedDocument fixedDoc = new FixedDocument();
DocumentReference docRef = new DocumentReference();
#region Step1
// add the UIElement object the FixedPage
fixedPage.Children.Add(uiElement);
#endregion
#region Step2
// add the FixedPage to the PageContent collection
pageContent.BeginInit();
((IAddChild)pageContent).AddChild(fixedPage);
pageContent.EndInit();
#endregion
#region Step 3
// add the PageContent to the FixedDocument collection
((IAddChild)fixedDoc).AddChild(pageContent);
#endregion
#region Step 4
// add the FixedDocument to the document reference collection
docRef.BeginInit();
docRef.SetDocument(fixedDoc);
docRef.EndInit();
#endregion
return docRef;
}
#endregion
我像这样使用它
var pDialog = new PrintDialog();
if (pDialog.ShowDialog() == true)
{
List<UIElement> list = new List<UIElement>();
foreach (CostumerVM item in Itemlist.Where(item => item.isChecked == true))
{
var vm = new CostumerpageVM(item.VName, item.NName, item.DebNr, item.Original.Id, plan, User.Einrichtungen.refSpeiseplantypId, selectedKW.Key);
var window = new PageV{ DataContext = vm };
list.Add(window);
}
var xpsDocWriter = PrintQueue.CreateXpsDocumentWriter(pDialog.PrintQueue);
PrintUIElements(xpsDocWriter, list);
}
比我创建了一个小的测试版本来检查我的打印方法,结果它工作正常所以我想好吧,也许我的 LazyLoad 是问题所以我创建了一个 init 方法
// in my CostumerpageVM
public void Init()
{
var properties = this.GetType().GetProperties();
foreach (var p in properties)
{
if (p.Name != "Item") // is part of the IDataError and it must not be called
{ var a = p.GetValue(this, null); }
}
}
但我仍然面临同样的问题,因此将不胜感激进一步的建议
我也已经检查过的是
- 这个绑定错误的解决方案(在我的情况下不知道如何实现)
- 在我的 PageV 中添加了一个未调用的 Loaded 事件