如何以编程方式在WPF中添加位图图像作为组合框项目?
我动态创建ComboBox
:
private ComboBox CreateSymbolComboBox(List<BitmapImage> images, int selectedIndex, bool isEnabled)
{
ComboBox cb = new ComboBox();
foreach (BitmapImage img in images)
{
cb.Items.Add();
}
return cb;
}
答案 0 :(得分:0)
BitmapImage
实际上来自ImageSource
。因此,您可以将其用作Source
的{{1}}。观察:
Image