次の 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>