如何在UWP的文本块中添加按钮?

时间:2018-08-07 06:57:44

标签: xaml uwp controls uwp-xaml

我想在Button中添加一个Textblock。我的意思是,文本中的Buttons(Objects)。

下面的代码不起作用。

<TextBlock>
  <Button />
</TextBlock>

TextBlock似乎仅支持文本,因此我应该使用哪个控件?

1 个答案:

答案 0 :(得分:2)

您只能显示TextBlock中的文字。如果要在运行文本中显示Button,则可以使用StackPanel

<StackPanel Orientation="Horizontal">
    <TextBlock Text="Some text with a " /><Button Content="Button" VerticalAlignment="Center" /><TextBlock Text="in it." />
</StackPanel>