我是Windows Phone 8应用程序的新手。
如何在Windows Phone 8中的图像上书写文字?我想,当用户点击文本顶部时,显示图像的顶部以及用户右键单击时,文本显示在图像的右侧。有没有API?
答案 0 :(得分:0)
您正在寻找的是一个简单的Gird
结构。将Image
和TextBlock
放在Grid
上,然后将TextBlock
移至用户点击控件的位置。您甚至可以使用Image
作为Grid.BackgroundImage
并在网格中放置TextBlock
来简化这一过程。
<Grid>
<Grid.Background>
<ImageBrush ImageSource="...."/>
</Grid.Background>
<!--
place control inside Grid
-->
</Grid>