我开发了一个应用程序,但是当我在客户端系统上部署它时,组合框没有打开
<ComboBox Margin="5,0,0,0" Name="cbCOCountry" ItemsSource="{Binding Path=CountryCOCollection,Mode=TwoWay}" SelectedItem="{Binding Path=SelectedCOCountry,Mode=TwoWay}" VerticalAlignment="Center" Height="23" Grid.Row="1" Grid.Column="1">
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=CountryName}" VerticalAlignment="Center" Grid.Column="1" Margin="5,0,0,0"/>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
我在我的应用程序中使用了 Whistler Blue 主题