0

我正在尝试将图像添加到 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);
4

1 回答 1

0

只要我将它添加到背景中,我就能看到在我的图钉顶部呈现的“myImage.png”。

pp.Background = imageBrush
于 2009-11-14T03:49:19.180 回答