I have a ComboBox with static Items
<ComboBox SelectedItem="{Binding SelectedOperator}" >
<ComboBoxItem Content="=" IsSelected="True" />
<ComboBoxItem Content=">" />
<ComboBoxItem Content="<" />
</ComboBox>
but the first item is not selected although IsSelected="True"
is set.
Can I select it in WPF somehow? I only want to do it in code-behind if really necessary.