Модифицированный список выдает исключение
Я изменил список, упомянутый в моем вопросе " Изменить выбранный цвет", и когда я выбираю элемент, возникает исключение.
'{DependencyProperty.UnsetValue}' is not a valid value for property 'Background'.
Что я делаю неправильно
Использование XMAL
<ListBox ItemContainerStyle="{StaticResource ListBoxItemStyle1}" Width="300" Height="519" Name="listFriends" HorizontalAlignment="Left" VerticalAlignment="Center" >
<ListBox.Items>
<StackPanel Width="289" Orientation="Horizontal" >
<Image Margin="0,0,4,0" Height="50" Width="50" Source="{Binding Picture}" />
<my:RibbonCheckBox Label="test" IsChecked="{Binding IsChecked}"/>
</StackPanel>
<StackPanel Width="289" Orientation="Horizontal" >
<Image Margin="0,0,4,0" Height="50" Width="50" Source="{Binding Picture}" />
<my:RibbonCheckBox Height="20" Label="test" IsChecked="{Binding IsChecked}" Foreground="White" />
</StackPanel>
<StackPanel Width="289" Orientation="Horizontal" >
<Image Margin="0,0,4,0" Height="50" Width="50" Source="{Binding Picture}" />
<my:RibbonCheckBox Height="20" Label="test" IsChecked="{Binding IsChecked}" Foreground="White" />
</StackPanel>
</ListBox.Items>
</ListBox>
Стиль, который я изменил
<Style x:Key="ListBoxItemStyle1" TargetType="{x:Type ListBoxItem}">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="HorizontalContentAlignment" Value="{Binding HorizontalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
<Setter Property="VerticalContentAlignment" Value="{Binding VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
<Setter Property="Padding" Value="2,0,0,0"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ListBoxItem}">
<Border x:Name="Bd" BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
Background="{TemplateBinding Background}"
Padding="{TemplateBinding Padding}" SnapsToDevicePixels="true" CornerRadius="10"
>
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsSelected" Value="true">
<Setter Property="Background" TargetName="Bd" Value="{StaticResource GrBrush}"/>
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.HighlightTextBrushKey}}"/>
</Trigger>
<MultiTrigger>
<MultiTrigger.Conditions>
<Condition Property="IsSelected" Value="true"/>
<Condition Property="Selector.IsSelectionActive" Value="false"/>
</MultiTrigger.Conditions>
<Setter Property="Background" TargetName="Bd" Value="{StaticResource GradientBrush}"/>
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"/>
</MultiTrigger>
<Trigger Property="IsEnabled" Value="false">
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
1 ответ
Проблема заключалась в том, что я объявил
<LinearGradientBrush x:Key="GrBrush" EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#FF6BB9E8" Offset="0" />
<GradientStop Color="#541882CE" Offset="1" />
</LinearGradientBrush>
используется как
<Setter Property="Background" TargetName="Bd" Value="{StaticResource GradientBrush}"/>
с GrBrush и использованием было по-другому, поэтому произошла ошибка