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>
根据您的要求/设置,您还可以将它们嵌套在 Grid 中并使用图像的 Margin 属性。