1
在WP7項目中,我需要將DataTemplates(例如Pivot TitleTemplate)中的控件數據綁定到MainViewModel上的頂級項目。如何才能做到這一點?WP7:從DataTemplate中綁定到MainViewModel
謝謝。
在WP7項目中,我需要將DataTemplates(例如Pivot TitleTemplate)中的控件數據綁定到MainViewModel上的頂級項目。如何才能做到這一點?WP7:從DataTemplate中綁定到MainViewModel
謝謝。
這應該適用於WP7版本以及Silverlight 4.使用綁定到視圖本身的元素(或視覺樹上的任意命名節點)並引用DataContext。 elementName中的綁定。
例如
<TextBox Text="{Binding ElementName=myViewName, Path=DataContext.SomeTitleProperty}"/>