2012-01-06 39 views
0

如何在WPF中綁定DocumentPageView?
我的代碼:如何在WPF中設置對DocumentPageView.DocumentPaginator的綁定

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

來源是DocumentPaginator的類型。 錯誤是:

錯誤1無法在'DocumentPageView'類型的'DocumentPaginator'屬性上設置'綁定'。 '綁定'只能在DependencyObject的DependencyProperty上設置。

請幫幫我。 Tnx ...

回答

3

您的錯誤消息說明了這一切。您只能將綁定應用於DependencyProperty。 DocumentPaginator不是DocumentPageView的DependencyProperty,所​​以你不能綁定它。

相關問題