Silverlight ImageBrush无法渲染(使用Bing Map Control)

时间:2009-11-14 03:38:41

标签: wpf silverlight bing pushpin imagebrush

我正在尝试将图像添加到Silverlight Bing地图控件中的Pushpin实例,但我似乎无法将其渲染(图钉呈现正常)。这可能是一个普遍的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);

1 个答案:

答案 0 :(得分:0)

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

pp.Background = imageBrush