我有一个树视图,我在树视图项中使用文本块。当我为树视图项使用“数据上下文”时,我无法为文本块绑定文本。任何人都可以帮助我解决此问题。
here is my xaml code..
<TreeViewItem ItemsSource="{Binding}" DataContext="{Binding XYZ}">
<TreeViewItem.Header>
<StackPanel>
<Image Source="abc.png" />
<TextBlock Text="{Binding BindContent}"></TextBlock>
</StackPanel>
</TreeViewItem.Header>
</TreeViewItem>
in My View Model, I am using
private string _content;
public string BindContent
{
get{ return _content;}
set{_content= value;}
}
In my constructor I am setting value for Content...
当我使用静态内容(或)当我不使用 Treeview 项目的数据上下文时,它工作正常。但由于其他一些原因,我需要使用数据上下文。当我将数据上下文用于树视图项时,如何为文本块绑定内容...
提前致谢。