的內容我在資源數據模板的TextBlock:綁定的TextBlock中的DataTemplate(資源),以檢查單選按鈕
<DataTemplate x:Key="MyDataTemplate" ItemsSource="{Binding MySource}">
<TextBlock x:Name="MyText" Text="{Binding ???}" />
</DataTemplate>
,我想與檢查單選按鈕的Content
綁定:
<RadioButton GroupName="MyGroup" Content="Code" />
<RadioButton GroupName="MyGroup" Content="Description" />
如果選擇代碼單選按鈕,那麼我希望文本變成Text={Binding Code}
。
請幫忙,謝謝。
它沒有工作,周杰倫。 MyText已被更改並通知,但我的TreeView沒有顯示綁定文本(空白)。 – 2010-07-22 03:23:32
什麼'TreeView'? – Jay 2010-07-22 04:04:54
我的RadTreeView使用MyDataTemplate作爲它的ItemTemplate。 – 2010-07-29 09:08:24