我创建了许多控件(稍微)扩展了许多UIElements的功能,包括IsError和IsCorrect属性,这些属性用于向用户表示错误情况。
例如,扩展的复选框。
public class EBC_CheckBox : CheckBox
{
public static readonly DependencyProperty IsCorrectProperty = DependencyProperty.Register("IsCorrect", typeof(bool), typeof(EBC_CheckBox), new UIPropertyMetadata(false));
public static readonly DependencyProperty IsErrorProperty = DependencyProperty.Register("IsError", typeof(bool), typeof(EBC_CheckBox), new UIPropertyMetadata(false));
public EBC_CheckBox() : base()
{
IsError = false;
IsCorrect = false;
}
public bool IsError
{
get { return (bool)GetValue(IsErrorProperty); }
set { SetValue(IsErrorProperty, value); }
}
public bool IsCorrect
{
get { return (bool)GetValue(IsCorrectProperty); }
set { SetValue(IsCorrectProperty, value); }
}
这在XAML代码中设计为:
<Style TargetType="{x:Type local:EBC_CheckBox}">
<Setter Property="Foreground" Value="{StaticResource SBase02}"/>
<Setter Property="Background" Value="{StaticResource SBase0}"/>
<Setter Property="FontSize" Value="14"/>
<Setter Property="VerticalContentAlignment" Value="Center"/>
<Setter Property="Margin" Value="0,2,8,2"/>
<Setter Property="BorderBrush" Value="{StaticResource SYellow}"/>
<Setter Property="BorderThickness" Value="2"/>
<Style.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Foreground" Value="{StaticResource SBase01}"/>
<Setter Property="BorderThickness" Value="0"/>
</Trigger>
<Trigger Property="IsError" Value="True">
<Setter Property="BorderBrush" Value="{StaticResource SRed}"/>
</Trigger>
<Trigger Property="IsCorrect" Value="True">
<Setter Property="BorderBrush" Value="{StaticResource SGreen}"/>
</Trigger>
</Style.Triggers>
</Style>
我的问题是我想在ListBox中添加一些复选框,而且大多数情况下都可以。但是,忽略了扩展属性,看起来ListBox只是将项目呈现为普通UIElements,而不是扩展版本。
<ListBox ItemsSource="{Binding MyObjects}">
<ListBox.ItemTemplate>
<DataTemplate>
<local:EBC_CheckBox Content="{Binding Path=Name}" IsChecked="{Binding Path=IsPresent}" IsError="{Binding Path=IsError}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
如何在ListBox中显示对象以及扩展属性(设置IsError时为红色等)?
继Damir的回复之后,如果我使用数据触发器,我可以设置整个ListBoxItem的样式(即设置边框设置整个项目的边框,而不仅仅是更改复选框的颜色)。
<Style TargetType="{x:Type ListBoxItem}">
<Style.Triggers>
<DataTrigger Binding="{Binding IsError}" Value="True">
<Setter Property="BorderBrush" Value="Red"/>
</DataTrigger>
</Style.Triggers>
</Style>
是否可以执行此类操作并重复使用控件格式,或者是否需要使用自定义的listboxitems创建自定义列表框?
<Style TargetType="{x:Type ListBoxItem}">
<Style.Triggers>
<DataTrigger Binding="{Binding IsError}" Value="True">
<Setter Property="local:EBC_CheckBox.IsError" Value="True"/>
</DataTrigger>
</Style.Triggers>
</Style>
进一步编辑:
我发现以下代码有效,它使用固定的项目列表:
<ListBox HorizontalAlignment="Left" Height="100" Margin="72,383,0,0" Grid.Row="1" VerticalAlignment="Top" Width="100">
<local:EBC_CheckBox Content="Item1" IsCorrect="True"/>
<local:EBC_CheckBox Content="Item2" IsChecked="True"/>
<local:EBC_CheckBox Content="Item3" IsError="True"/>
<local:EBC_CheckBox Content="Item4" />
</ListBox>
列表显示项目,并根据EBC_CheckBox设置正确处理其视觉状态。
如果我更改为绑定项目列表,虽然事物的可视化方面未正确更新 - 正确处理内容和IsChecked字段(预期这些字段位于基本复选框中,但忽略IsError字段)
<ListBox Grid.Column="3" Grid.Row="8" HorizontalAlignment="Left" VerticalAlignment="Top" BorderThickness="0"
ItemsSource="{Binding Things}">
<ListBox.ItemTemplate>
<DataTemplate>
<local:EBC_CheckBox Content="{Binding Path=ThingName}" IsChecked="{Binding Path=IsPresent}" IsError="{Binding Path=IsError}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
我缺少什么?
答案 0 :(得分:0)
您必须使用DataTrigger而不是简单的Trigger来进行正确的绑定。试试这个:
<DataTrigger Binding="{Binding IsError}" Value="True">
<Setter Property="BorderBrush" Value="Red" />
<Setter Property="FontSize" Value="20"/>
</DataTrigger>
答案 1 :(得分:0)
排除问题,这一切都归结为构造函数中依赖项属性的设置。这些设置不应该存在,在构造函数中设置这些设置会覆盖应用程序中的值。
另见question。