我需要在UserControl
的代码隐藏文件中重写以下代码块。
我遇到了这段代码的问题,
<TreeView.Resources>
<HierarchicalDataTemplate x:Name="dtViewModel" DataType="{x:Type local:UserViewModel}" ItemsSource="{Binding Children, Mode=TwoWay}">
<StackPanel Orientation="Horizontal">
<TextBlock Name="txtBlockItem" Text="{Binding Fullname}" MouseRightButtonUp="TextBlock_MouseRightButtonUp">
</TextBlock>
</StackPanel>
</HierarchicalDataTemplate>
</TreeView.Resources>
由于我无法通过我设置的TextBlock
引用HierarchicalDataTemlate或Child x:Name
,因此DataType
属性也存在问题。
任何指向正确的方向或帮助都会一如既往地受到赞赏。