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.
私の Windows Phone 7 アプリケーションでは、大きな画像があり、大きな画像の上に特定の位置 (x、y) に (画像フォルダーから) 別の小さな画像を描画したいと考えています。どうやってやるの?
画像をキャンバスに入れて配置できます
<Canvas> <Image Source="BigImage.jpg"/> <Image Source="SmallImage.jpg" Canvas.Left="100" Canvas.Top="50" /> </Canvas>
要件/設定によっては、それらをグリッドにネストして、画像の Margin プロパティを使用することもできます。