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.
可能重复: 在 WP7 中的图像上写入文本
我想以编程方式从 Windows phone 8 中的相机或媒体库中拍照,并在这张照片上写一些文字,文字可以调整大小,旋转等,然后将这张照片和文字合并为单层,请帮助我谢谢提前。
只需将 TextBlock 控件放在 Image 控件上即可。
<Grid> <Image source="source"/> <TextBlock Text="text"/> </Grid>
到 TextBlock 您可以设置边距,它将位于图像控件上。您可以在 TextBlock 上调整大小、更改字体、更改旋转和制作动画。