Silverlight组合框选择值隐藏

时间:2012-01-20 07:56:40

标签: silverlight

鉴于两个简单的组合框,我可以下拉并选择项目,但第二个ddl拒绝显示其值而不下降!任何帮助将不胜感激。此时没有绑定事件或数据,只是静态,如此处所示。

<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>

2 个答案:

答案 0 :(得分:0)

尝试

 <ComboBoxItem Content="RaC1" IsSelected="True" />

与其他下拉列表类似。

答案 1 :(得分:0)

感谢所有人的帮助。

解决: 我注意到其他事情没有按照他们的意愿行事。然后记得自上一轮更新以来我没有重新启动过。重启后,代码按预期工作。我没有时间或倾向于试图找出问题究竟是什么。但再次感谢您的支持。