如何在WPF中绑定DocumentPageView?
我的代码:
<DocumentPageView DocumentPaginator="{Binding Source}"></DocumentPageView>
Source是DocumentPaginator的类型。 错误是:
错误1无法在“DocumentPageView”类型的“DocumentPaginator”属性上设置“绑定”。 '绑定'只能在DependencyObject的DependencyProperty上设置。
请帮帮我。 TNX ...
答案 0 :(得分:3)
您的错误消息说明了一切。您只能将绑定应用于DependencyProperty。 DocumentPaginator不是DocumentPageView的DependencyProperty,因此您无法绑定它。