如何将 Grid 填充到 TextBlock 中?
有一天,我遇到了以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单的答案是,您可以通过两种方式驱动 TextBlock:通过 Text 属性和通过 Inlines 集合。
在本例中,您使用的是 Inlines 集合。
TextBlock(通过 TextElement 上的 IAddChild.AddChild 方法)足够智能,可以将该 Grid 包装到 InlineUIContainer 中……当然,这是一个 Inline。
换句话说,上面的 xaml ... 与以下内容相同:
希望这可以帮助某人避免我遇到的问题。呵呵。好吧,至少,我希望它能让他们平静下来,了解它是如何运作的。
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:
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.