我有一个 WPF 样式,我正在将其应用于列表框项。目前,每个项目都绑定到一个键值对。我在列表框项的文本块中显示键:
<TextBlock Name="Label" Text="{Binding Key}" />
我想做的是使 Style 泛型,这样如果数据不是 KeyValuePair(可能只是一个字符串),我可以将数据正确绑定到 TextBlock。
有没有办法将参数传递给样式或数据模板或使数据绑定泛型?
我的风格:
<Style x:Key="ListBoxItemStyle" TargetType="ListBoxItem">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ListBoxItem">
<Border x:Name="Border" Padding="2" SnapsToDevicePixels="true" CornerRadius="4" BorderThickness="1">
<TextBlock Name="Label" Text="{Binding Key}" />
</Border>
<ControlTemplate.Triggers>
<MultiTrigger>
<MultiTrigger.Conditions>
<Condition Property="IsSelected" Value="True"/>
</MultiTrigger.Conditions>
<Setter TargetName="Border" Property="Background" Value="{StaticResource SelectionGradient}" />
</MultiTrigger>
<ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
让我举个简单的例子。假设您的TextBox
包含一个数字,如果数字为负数,您希望它带有红色背景,如果>= 0,则为绿色背景
这是你要写的风格:
<TextBlock Text="{Binding Key}" >
<TextBlock.Style>
<Style TargetType="TextBox">
<Setter Property="Background" Value="{Binding Key, Converter={StaticResource MyConverterResource}" />
</Style>
</TextBlock.Style>
</TextBlock>
这是您要编写的转换器:
public class MyConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
double source = (double)value;
return source < 0 ? Brushes.Red : Brushes.Green;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
// We don't care about this one here
throw new NotImplementedException();
}
}
而且,若要在 xaml 中访问转换器,只需执行以下操作,假设转换器位于命名空间MyNamespace
中:
<Window xmlns:my="clr-namespace:MyNamespace">
<Window.Resources>
<my:MyConverter x:Key="MyConverterResource">
</Window.Resources?
<!-- Your XAML here -->
</Window>
(当然你可以把它放在任何Resources
,可能是UserControl
什么的)这将允许您通过编写{StaticResource MyConverterResource}
来调用转换器
在这里,您将有一个条件样式,转换器根据一个参数决定将哪种颜色设置为背景,在我的例子中,值本身(但它可以是您想要的任何颜色)