如何在WPF中设置与DocumentPageView.DocumentPaginator的绑定

时间:2012-01-06 10:07:58

标签: c# wpf xps xpsdocument

如何在WPF中绑定DocumentPageView?
我的代码:

<DocumentPageView DocumentPaginator="{Binding Source}"></DocumentPageView>

Source是DocumentPaginator的类型。 错误是:

  

错误1无法在“DocumentPageView”类型的“DocumentPaginator”属性上设置“绑定”。 '绑定'只能在DependencyObject的DependencyProperty上设置。

请帮帮我。 TNX ...

1 个答案:

答案 0 :(得分:3)

您的错误消息说明了一切。您只能将绑定应用于DependencyProperty。 DocumentPaginator不是DocumentPageView的DependencyProperty,因此您无法绑定它。