Silverlight ImageBrush 未渲染(使用 Bing 地图控件)

发布于 2024-08-11 00:13:00 字数 399 浏览 7 评论 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);

I'm trying to add an image to a Pushpin instance from the Silverlight Bing Map Control, but I can't seem to get it to render (the pushpin renders fine). This is probably a general WPF question rather than anything specific to the Pushpin object.

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);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

镜花水月 2024-08-18 00:13:00

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

pp.Background = imageBrush

I was able to see the "myImage.png" rendered on top of my pushpin as long as I add it to the background.

pp.Background = imageBrush
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文