Given two simple comboboxes I am able to drop down and select items but the second ddl refuses to show its value while not dropped down! Any help would be greatly appreciated. At this point there are no bound events or data its just static as seen here.
<ComboBox Height="23" Name="ddlRCC" Width="120" Margin="3,3,474,134">
<ComboBoxItem Content="RaC1" />
<ComboBoxItem Content="RaC2" />
<ComboBoxItem Content="RaC3" />
<ComboBoxItem Content="RaC4" />
<ComboBoxItem Content="RaC5" />
<ComboBoxItem Content="RaC6" />
</ComboBox>
<ComboBox Height="23" Margin="130,5,314,135" Name="ddlNOSC" Width="156" Padding="140,3,25,2">
<ComboBoxItem Content="NiSC1" />
<ComboBoxItem Content="NiSC2" />
<ComboBoxItem Content="NiSC3" />
<ComboBoxItem Content="NiSC4" />
</ComboBox>
Thanks all for all of your help.
Solved:
I noticed other things not working as they should. And then remembered that I had not rebooted since the last round of updates. After a reboot the code worked as expected. I didnt have the time or inclination to try to figure out exactly what the issue was. But thanks again for the support.