我正在尝试将图像添加到 Silverlight Bing 地图控件中的图钉实例,但我似乎无法让它渲染(图钉渲染得很好)。这可能是一个通用的 WPF 问题,而不是任何特定于 Pushpin 对象的问题。
Pushpin pp = new Pushpin();
...
Uri imageUri = new Uri(@"myImage.png", UriKind.Relative);
BitmapImage image = new BitmapImage(imageUri);
ImageBrush imageBrush = new ImageBrush();
imageBrush.ImageSource = image;
pp.Foreground = imageBrush;
myMap.Children.Add(pp);