我想在Button
中添加一个Textblock
。我的意思是,文本中的Buttons(Objects)。
下面的代码不起作用。
<TextBlock>
<Button />
</TextBlock>
TextBlock
似乎仅支持文本,因此我应该使用哪个控件?
答案 0 :(得分:2)
您只能显示TextBlock
中的文字。如果要在运行文本中显示Button
,则可以使用StackPanel
:
<StackPanel Orientation="Horizontal">
<TextBlock Text="Some text with a " /><Button Content="Button" VerticalAlignment="Center" /><TextBlock Text="in it." />
</StackPanel>