Xamarin来自阵容

时间:2016-10-07 06:31:57

标签: xaml xamarin xamarin.forms

第一个标签的文字被切断到第二行,我们希望第一个标签完全在一行上。我们尝试设置LineBreakMode,但似乎对第一个标签没有任何影响。我们正在使用Xamarin Forms最新版本。

<StackLayout Orientation="Horizontal">
      <Label
        Text="Projectnummer : "
        FontAttributes="Bold"/>
      <Label
       Text="WAY2CONNECT Holding B.V. WAY2CONNECT Holding B.V."/>
</StackLayout>

1 个答案:

答案 0 :(得分:0)

你可以做而不是

<StackLayout Orientation="Horizontal">
      <Label
        Text="Projectnummer :\rWAY2CONNECT Holding B.V. WAY2CONNECT Holding B.V. "
        FontAttributes="Bold"/>
</StackLayout>

<StackLayout Orientation="Vertical" VerticalLayoutOptions="FillAndExpand">
      <Label
        Text="Projectnummer :\rWAY2CONNECT Holding B.V. WAY2CONNECT Holding B.V. "
        FontAttributes="Bold"/>
      <Label
        Text="WAY2CONNECT Holding B.V. WAY2CONNECT Holding B.V. "
        FontAttributes="Bold"/>
</StackLayout>