gpt4 book ai didi

wpf - DataTemplate 中的样式仅应用于 ItemsControl 中的最后一项?

转载 作者:行者123 更新时间:2023-12-04 01:57:48 29 4
gpt4 key购买 nike

在下面的 XAML 中,我有一个包含三个 DataObject 的 ItemsControl。
我使用 DataTemplate 将 DataObject 显示为带有“X”的按钮。
按钮使用样式来设置其内容。

如果 Setter.Value 为“X”,则一切正常!
但是,如果我将 Setter.Value 更改为 TextProperty 为“X”的 TextBlock, X 只出现在最后一个按钮 (第三个 DataObject)和前两个 Button 是空的。

这是一个错误,或者任何人都可以解释为什么会发生这种情况?

注 1) 这是一个人为的示例,用于隔离遇到的问题。
注 2)我已经在代码中加入了两个 Setter.Value 选项,因此您可以通过注释掉其中一个来重现成功和不成功的案例。
注 3)看来,此问题特定于“内容”属性的 Setter。如果我将 Setter 用于 Background 属性,它会正确应用于所有 DataObject。

<Grid>
<Grid.Resources>
<Style x:Key="myButtonStyle" TargetType="{x:Type Button}">
<Setter Property="Content">
<!--<Setter.Value>X</Setter.Value>-->
<Setter.Value><TextBlock Text="X" /></Setter.Value>
</Setter>
<Setter Property="Background">
<Setter.Value>
<SolidColorBrush Color="Red" />
</Setter.Value>
</Setter>
</Style>
</Grid.Resources>
<ItemsControl>
<ItemsControl.ItemTemplate>
<DataTemplate DataType="{x:Type DataObject}">
<Button Height="24" Width="24" Style="{StaticResource myButtonStyle}" />
</DataTemplate>
</ItemsControl.ItemTemplate>
<ItemsControl.Items>
<DataObject />
<DataObject />
<DataObject />
</ItemsControl.Items>
</ItemsControl>
</Grid>

解决方案:
不幸的是,当 Content 设置为 TextBlock 等控件而不是直接文本时,我仍然无法解释为什么“Content”Setter 无法在除最后一个 DataObject 之外的所有对象上工作。

但是,Dmitry 建议使用设置 'ContentTemplate' 而不是 'Content' 是一个非常可接受的解决方法,它仍然允许可重用​​的样式。
<Grid>
<Grid.Resources>
<DataTemplate x:Key="textBlockWithX">
<TextBlock Text="X" />
</DataTemplate>
<Style x:Key="myButtonStyle" TargetType="{x:Type Button}">
<Setter Property="ContentTemplate" Value="{StaticResource textBlockWithX}" />
</Style>
</Grid.Resources>
<ItemsControl>
<ItemsControl.ItemTemplate>
<DataTemplate DataType="{x:Type DataObject}">
<Button Height="24" Width="24" Style="{StaticResource myButtonStyle}" />
</DataTemplate>
</ItemsControl.ItemTemplate>
<ItemsControl.Items>
<DataObject />
<DataObject />
<DataObject />
</ItemsControl.Items>
</ItemsControl>
</Grid>

最佳答案

这是一个工作示例:

<Window x:Class="Styles.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Styles"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Grid.Resources>
<Style x:Key="A" TargetType="{x:Type Button}">
<Style.Setters>
<Setter Property="Content" Value="X"></Setter>
</Style.Setters>
</Style>
</Grid.Resources>
<ItemsControl>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Height="24" Width="24" Style="{StaticResource A}">

</Button>
</DataTemplate>
</ItemsControl.ItemTemplate>
<ItemsControl.Items>
<DataObject></DataObject>
<DataObject></DataObject>
<DataObject></DataObject>
</ItemsControl.Items>
</ItemsControl>
</Grid>

</Window>

Edit1 Doh .. 成功了,诀窍是使用 ContentTemplate。
<Window x:Class="Styles.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Styles"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Grid.Resources>
<DataTemplate x:Key="A">
<TextBlock>X</TextBlock>
</DataTemplate>
</Grid.Resources>
<ItemsControl>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Height="24" Width="24" ContentTemplate="{StaticResource A}">

</Button>
</DataTemplate>
</ItemsControl.ItemTemplate>
<ItemsControl.Items>
<DataObject></DataObject>
<DataObject></DataObject>
<DataObject></DataObject>
</ItemsControl.Items>
</ItemsControl>
</Grid>

</Window>

Edit2:更复杂的 ContentTemplate 示例:
<Window x:Class="Styles.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Styles"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Grid.Resources>
<DataTemplate x:Key="A">
<StackPanel Width="30" Orientation="Horizontal">
<Grid Background="White" Width="10" Height="10"></Grid>
<Grid Background="Blue" Width="10" Height="10"></Grid>
<Grid Background="Red" Width="10" Height="10"></Grid>
</StackPanel>
</DataTemplate>
</Grid.Resources>
<ItemsControl>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Height="24" Width="34" ContentTemplate="{StaticResource A}">

</Button>
</DataTemplate>
</ItemsControl.ItemTemplate>
<ItemsControl.Items>
<DataObject></DataObject>
<DataObject></DataObject>
<DataObject></DataObject>
</ItemsControl.Items>
</ItemsControl>
</Grid>

</Window>

关于wpf - DataTemplate 中的样式仅应用于 ItemsControl 中的最后一项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5170367/

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