gpt4 book ai didi

wpf - 包含多个项目的 HeaderTemplate

转载 作者:行者123 更新时间:2023-12-04 14:34:55 27 4
gpt4 key购买 nike

我正在尝试写一个 HeaderTemplate对于扩展器。到目前为止,我注意到所有示例都使用 {Binding}关键字从标题中获取数据。但是,如果 Header 中有多个控件会怎样?如何指定这些控件应插入特定位置?

<Window.Resources>
<Style x:Key="ExpanderStyle" TargetType="{x:Type Expander}">
<Setter Property="HeaderTemplate">
<Setter.Value>
<DataTemplate>
<!-- what do I put in here? -->
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
</Window.Resources>

<Expander Style="{StaticResource ExpanderStyle}">
<Expander.Header>
<StackPanel Orientation="Horizontal">
<TextBlock>Some Text</TextBlock>
<TextBlock Text="{Binding SomeBinding}" />
<Button />
</StackPanel>
</Expander.Header>
<Image Source="https://www.google.com/logos/2012/steno12-hp.jpg" />
</Expander>

我是否应该将绑定(bind)移动到 HeaderTemplate在样式中,只需覆盖 Header 中的任何内容在 Expander是?

最佳答案

您可以使用 ContentPresenter将通常的内容插入到您的模板中

例如:

<Style x:Key="ExpanderStyle" TargetType="{x:Type Expander}">
<Setter Property="HeaderTemplate">
<Setter.Value>
<DataTemplate>
<Border BorderBrush="Blue" BorderThickness="2">
<ContentPresenter />
</Border>
</DataTemplate>
</Setter.Value>
</Setter>
</Style>

关于wpf - 包含多个项目的 HeaderTemplate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8821861/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com