需要将显示的XAML代码写入代码后面

时间:2015-07-28 13:29:16

标签: c# wpf xaml

我需要在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属性也存在问题。

任何指向正确的方向或帮助都会一如既往地受到赞赏。

0 个答案:

没有答案