我有一个组合框,它下拉列表并显示图像集合。选择图像后,组合框会增加组合框的高度,以便用所选图像填充组合框。我如何防止这种行为?我需要获取的只是选定图像的索引,一旦选定它,并且不希望组合框显示选定的图像。
<ComboBox Grid.Row="1" SelectedIndex="{Binding SelectedImageIndex}" ItemsSource="{Binding SymbolImageCollection}">
<ComboBox.ItemTemplate>
<DataTemplate>
<Image Source="{Binding Img}" Width="50" Height="50"/>
</DataTemplate>
</ComboBox.ItemTemplate>
<ComboBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel Width="300" HorizontalAlignment="Left"/>
</ItemsPanelTemplate>
</ComboBox.ItemsPanel>
</ComboBox>