我正在尝试将图像添加到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);
答案 0 :(得分:0)
只要我将它添加到背景中,我就能看到“myImage.png”呈现在我的图钉上。
pp.Background = imageBrush