如何在xaml

时间:2016-11-29 18:23:36

标签: wpf xaml

我正在学习xaml / C#。我正在尝试使用容器编写文本行。 最接近的例子是html中的这段代码

<div>
  <div>Line1</div>
  <div>Line2</div>
  <div>...</div>
 </div>

我怎样才能在xaml中完成。

当然我可以使用TextBlock来完成它。问题是TextBlock不允许我添加一种类似

的标签
<div>
  <span>1</span>
  text text
</div>

1 个答案:

答案 0 :(得分:1)

 <StackPanel Orientation="Vertical">     
        <TextBlock>Line1</TextBlock>
        <TextBlock>Line2</TextBlock>
        <TextBlock>Line3</TextBlock>
  </StackPanel>