1

我开发了一个应用程序,但是当我在客户端系统上部署它时,组合框没有打开

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

4

1 回答 1

1

我以前见过这个。您使用的是什么操作系统?Windows XP 机器上存在一个已知问题:http: //social.msdn.microsoft.com/Forums/en-US/wpf/thread/333d3d93-8837-42b3-a0ea-1a577485daed/

于 2012-04-20T10:50:27.310 回答