This question is locked. New answers and comments are not allowed.
Can someone please tell me why the following code doesn't work? I expect that when the value is set to "False" the 2nd item would be selected when the silverlight page initially loads but it doesn't work. It's always null...ie. No item selected.
<my:RadComboBox x:Name="BooleanValue" DisplayMemberPath="Content" SelectedValue="False">
<my:RadComboBoxItem Content="True" />
<my:RadComboBoxItem Content="False" />
</my:RadComboBox>
<my:RadComboBox x:Name="BooleanValue" DisplayMemberPath="Content" SelectedValue="False">
<my:RadComboBoxItem Content="True" />
<my:RadComboBoxItem Content="False" />
</my:RadComboBox>