如何在 Windows Phone 7 中使用 silverlight 显示文本

发布于 2024-12-05 19:28:00 字数 198 浏览 1 评论 0原文

我需要在画布的右下角显示红色文本“欢迎”,

这是我的 xaml 代码,

  <Canvas x:Name="imageOne" Background="White"  Width="480" Height="800" >
            </Canvas>

请帮助我

I need to display a text "welcome" on the right-bottom corner of a canvas with red colour

this is my xaml code

  <Canvas x:Name="imageOne" Background="White"  Width="480" Height="800" >
            </Canvas>

please help me

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

停顿的约定 2024-12-12 19:28:00

Canvas 定义了一个区域,您必须在其中通过相对于 Canvas 区域的坐标显式定位 TextBlock 元素。意味着您必须在画布内进行绝对定位。

如果您确实想使用 Canvas,则最好在其中放置一个透明的 Grid,然后在该 Grid 中放置一个 TextBlock。

示例:

<Canvas x:Name="imageOne" Background="White" Width="480" Height="800">
    <Grid Width="480" Height="800">
        <TextBlock Text="Visifire" VerticalAlignment="Bottom" HorizontalAlignment="Right"/>
    </Grid>
</Canvas>

请确保网格大小与画布大小相同。

Canvas defines an area within which you have to explicitly position TextBlock element by coordinates relative to the Canvas area. Means you have to do absolute positioning inside a Canvas.

If you really want to use a Canvas, you can better take a transparent Grid inside it and put a TextBlock inside that Grid.

Example:

<Canvas x:Name="imageOne" Background="White" Width="480" Height="800">
    <Grid Width="480" Height="800">
        <TextBlock Text="Visifire" VerticalAlignment="Bottom" HorizontalAlignment="Right"/>
    </Grid>
</Canvas>

Please make sure that the Grid size is same as Canvas size.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文