如何让这个ListBox在XPS视图中显示?

时间:2012-10-10 09:21:08

标签: c# wpf

我尝试按照此answer:

中提到的内容获取ListBox的XPS视图
FixedDocument fixedDoc = new FixedDocument();
PageContent pageContent = new PageContent();
FixedPage fixedPage = new FixedPage();

ListBox lbx = new ListBox();
lbx.DataContext = lb.DataContext;

fixedPage.Children.Add(lbx);
pageContent.Child = fixedPage;
fixedDoc.Pages.Add(pageContent);
//Create any other required pages here

docv.Document = fixedDoc;

lb是图像上半部分中显示的ListBox,而XPS视图位于下方。但是,除了开头的小方块外,它是空的。我做错了什么以及如何让列表框显示在XPS视图中。

The Result looks like this

0 个答案:

没有答案