WP8 拍摄地图照片

本文关键字:照片 地图 WP8 | 更新日期: 2023-09-27 18:32:00

我的一个页面上有一个地图控件,我希望拍摄它的照片并将其显示在不同的屏幕上。有谁知道我如何实现这一目标?地图在<Grid>内。

WP8 拍摄地图照片

你应该使用 WriteableBitmap 类的Render方法:

var writeableBitmap = new WriteableBitmap(desiredWidth, desiredHeight);
writeableBitmap.Render(mapControl, null);
writeableBitmap.Invalidate();
image.Source = writeableBitmap;

MSDN 链接