使用内容演示者的异常
类型“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>