如何将 Grid 填充到 TextBlock 中?

发布于 2024-09-13 02:25:07 字数 357 浏览 4 评论 0原文

有一天,我遇到了以下 xaml,我吓坏了:

<Grid x:Name="LayoutRoot">
    <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center">
        <Grid>
            <Rectangle Fill="AliceBlue" Width="25" Height="25"/>
        </Grid>
    </TextBlock>
</Grid>

换句话说……怎么可能将 Grid 放入 TextBlock 中?

The other day I ran into the following xaml and I freaked out:

<Grid x:Name="LayoutRoot">
    <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center">
        <Grid>
            <Rectangle Fill="AliceBlue" Width="25" Height="25"/>
        </Grid>
    </TextBlock>
</Grid>

In other words ... how is it possible to put a Grid inside a TextBlock?

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

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

发布评论

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

评论(1

半城柳色半声笛 2024-09-20 02:25:07

简单的答案是,您可以通过两种方式驱动 TextBlock:通过 Text 属性和通过 Inlines 集合。

在本例中,您使用的是 Inlines 集合。

TextBlock(通过 TextElement 上的 IAddChild.AddChild 方法)足够智能,可以将该 Grid 包装到 InlineUIContainer 中……当然,这是一个 Inline。

换句话说,上面的 xaml ... 与以下内容相同:

<Grid x:Name="LayoutRoot">
    <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center">
        <InlineUIContainer>
            <Grid>
                <Rectangle Fill="AliceBlue" Width="25" Height="25"/>
            </Grid>
        </InlineUIContainer>
    </TextBlock>
</Grid>

希望这可以帮助某人避免我遇到的问题。呵呵。好吧,至少,我希望它能让他们平静下来,了解它是如何运作的。

The simple answer is that you can drive TextBlock in two ways ... through the Text property and through the Inlines collection.

In this case, you are using the Inlines collection.

TextBlock (via the IAddChild.AddChild method on TextElement) is smart enough to wrap that Grid into an InlineUIContainer ... which is, of course, an Inline.

In other words, the above xaml ... is the same as:

<Grid x:Name="LayoutRoot">
    <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center">
        <InlineUIContainer>
            <Grid>
                <Rectangle Fill="AliceBlue" Width="25" Height="25"/>
            </Grid>
        </InlineUIContainer>
    </TextBlock>
</Grid>

Hope this helps someone to avoid the freakout I had. Heh, heh. Well, at least, I hope it calms them down with an understanding of how it works.

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