Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ページの 1 つにマップ コントロールがあり、その写真を撮って別の画面に表示したいと考えています。どうすればこれを達成できるか知っている人はいますか?マップは 内にあり<Grid>ます。
<Grid>
クラスのRenderメソッドを使用する必要があります。WriteableBitmap
Render
WriteableBitmap
var writeableBitmap = new WriteableBitmap(desiredWidth, desiredHeight); writeableBitmap.Render(mapControl, null); writeableBitmap.Invalidate(); image.Source = writeableBitmap;
MSDN リンク