コンテンツ プレゼンターを使用した例外
タイプ 'System.Windows.Controls.ContentPresenter' にはコンテンツ プロパティがありません。設定するプロパティの名前を指定するか、型に ContentPropertyAttribute または TypeConverterAttribute を追加します。
以下はXAMLです
<ComboBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<CheckBox IsChecked="{Binding IsSelected}" Content="{Binding Series}" Width="50" VerticalAlignment="Center" Checked="CheckSeries_Checked" Unchecked="CheckSeries_UnChecked" />
</StackPanel>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>