我有以下 rangeobservablecollection:
private readonly RangeObservableCollection<coll> _coll;
其中 coll 是我要添加到此集合中的一堆复选框。我想更改特定添加复选框的前景色,如下所示:
_coll.Add( info );
有没有办法改变它的颜色?
XAML 代码:
<StackPanel Orientation="Horizontal">
<CheckBox Margin="0,0,3,0" Foreground="{Binding Foreground"}">
<CheckBox.IsChecked>
<Binding Path="IsSelected"
Mode="TwoWay">
<Binding.RelativeSource>
<RelativeSource Mode="Parent" />
</Binding.RelativeSource>
</Binding>
</CheckBox.IsChecked>
</CheckBox>
<ContentPresenter />
</StackPanel>