我目前正在使用以下代码来构建一个ComboBox
带有标志图像和加拿大省份名称的控件。但是图像没有显示在控件中。我已经测试了绑定并且它正确地生成了位置,但是图像只是没有出现在控件中。
不知道这里出了什么问题,任何帮助将不胜感激
代码:
<ComboBox x:Name="cb_Provinces" Text="Province"SelectionChanged="ComboBox_SelectionChanged" SelectedValuePath="ProvinceCode" ItemsSource="{Binding Provinces, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}">
<ComboBox.ItemTemplate>
<DataTemplate >
<StackPanel>
<StackPanel x:Name="stk_ComboTemplate" Orientation="Horizontal" HorizontalAlignment="Left">
<Image Width="25" Margin="10" Source="{Binding ProvinceCode, StringFormat=/CanadaTreeSvc.Interface;component/Resources/img/flags/\{0\}.gif}" />
<TextBlock Text="{Binding ProvinceName}"/>
</StackPanel>
<TextBlock FontSize="10" Foreground="Gray" Text="{Binding ProvinceCode, StringFormat=/CanadaTreeSvc.Interface;component/Resources/img/flags/\{0\}.gif}"/>
</StackPanel>
</DataTemplate>
</ComboBox.ItemTemplate>
结果输出: