绑定到 DataTemplate 内的模板属性

发布于 2024-11-27 01:00:19 字数 1715 浏览 3 评论 0原文

我有一个自定义控件,如下所示:

<CustomControl>
    <CustomControl.ContentTemplate>
        <DataTemplate>
            <StackPanel Orientation="Vertical">
                <TextBlock Text="{Binding Name}"/>
            </StackPanel>                    
        </DataTemplate>
    </CustomControl.ContentTemplate>
</CustomControl>

在 CustomControl 的控件模板中,我尝试从 DataTemplate 内绑定到 CustomControl.ContentTemplate,但它不起作用:

<ListBox
ItemsSource="{Binding SearchResultsList}">
<ListBox.ItemTemplate>
    <DataTemplate>
        <StackPanel Orientation="Vertical">
            <ContentControl
                Content="{Binding}"
                ContentTemplate="{TemplateBinding ContentTemplate}">
            </ContentControl>
            <ItemsControl
                ItemsSource="{Binding HierarchyPath}">
                <ItemsControl.ItemTemplate>
                    <DataTemplate>
                        <StackPanel Orientation="Horizontal">
                            <TextBlock Text="->"/>
                            <TextBlock Text="{Binding Name}"/>
                        </StackPanel>
                    </DataTemplate>
                </ItemsControl.ItemTemplate>
            </ItemsControl>
        </StackPanel>
    </DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

注意:ContentTemplate="{TemplateBinding ContentTemplate}"< /strong>

我知道您不能在 Datatemplate 内使用 TemplateBinding,即使 DataTemplate 位于控件模板内。但有谁知道如何在不使用 TemplateBinding 的情况下实现我想要实现的目标?

I have a custom control as follows:

<CustomControl>
    <CustomControl.ContentTemplate>
        <DataTemplate>
            <StackPanel Orientation="Vertical">
                <TextBlock Text="{Binding Name}"/>
            </StackPanel>                    
        </DataTemplate>
    </CustomControl.ContentTemplate>
</CustomControl>

In the control template of the CustomControl, I try to bind to the CustomControl.ContentTemplate from within a DataTemplate, but it does not work:

<ListBox
ItemsSource="{Binding SearchResultsList}">
<ListBox.ItemTemplate>
    <DataTemplate>
        <StackPanel Orientation="Vertical">
            <ContentControl
                Content="{Binding}"
                ContentTemplate="{TemplateBinding ContentTemplate}">
            </ContentControl>
            <ItemsControl
                ItemsSource="{Binding HierarchyPath}">
                <ItemsControl.ItemTemplate>
                    <DataTemplate>
                        <StackPanel Orientation="Horizontal">
                            <TextBlock Text="->"/>
                            <TextBlock Text="{Binding Name}"/>
                        </StackPanel>
                    </DataTemplate>
                </ItemsControl.ItemTemplate>
            </ItemsControl>
        </StackPanel>
    </DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

Note: ContentTemplate="{TemplateBinding ContentTemplate}"

I know that you cannot use TemplateBinding inside a Datatemplate, even though the DataTemplate is inside a control template. But does anyone know how to achieve what I want to achieve without using TemplateBinding?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

櫻之舞 2024-12-04 01:00:19

最好的选择是使用 ListBox.ItemContainerStyle,并用它来制作 ControlTemplate。

像这样的东西:

<ListBox>
<ListBox.ItemContainerStyle>
    <Style  TargetType="ListBoxItem">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="ListBoxItem">
                    <StackPanel Orientation="Vertical">
                        <ContentControl
                            Content="{Binding}"
                            ContentTemplate="{TemplateBinding ContentTemplate}">
                        </ContentControl>
                        <ItemsControl
                            ItemsSource="{Binding HierarchyPath}">
                            <ItemsControl.ItemTemplate>
                                <DataTemplate>
                                    <StackPanel Orientation="Horizontal">
                                        <TextBlock Text="->"/>
                                        <TextBlock Text="{Binding Name}"/>
                                    </StackPanel>
                                </DataTemplate>
                            </ItemsControl.ItemTemplate>
                        </ItemsControl>
                    </StackPanel>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</ListBox.ItemContainerStyle>
</ListBox>

Your best bet is to use the ListBox.ItemContainerStyle, and use it to make a ControlTemplate.

Something like this:

<ListBox>
<ListBox.ItemContainerStyle>
    <Style  TargetType="ListBoxItem">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="ListBoxItem">
                    <StackPanel Orientation="Vertical">
                        <ContentControl
                            Content="{Binding}"
                            ContentTemplate="{TemplateBinding ContentTemplate}">
                        </ContentControl>
                        <ItemsControl
                            ItemsSource="{Binding HierarchyPath}">
                            <ItemsControl.ItemTemplate>
                                <DataTemplate>
                                    <StackPanel Orientation="Horizontal">
                                        <TextBlock Text="->"/>
                                        <TextBlock Text="{Binding Name}"/>
                                    </StackPanel>
                                </DataTemplate>
                            </ItemsControl.ItemTemplate>
                        </ItemsControl>
                    </StackPanel>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</ListBox.ItemContainerStyle>
</ListBox>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文