第一个标签的文字被切断到第二行,我们希望第一个标签完全在一行上。我们尝试设置LineBreakMode,但似乎对第一个标签没有任何影响。我们正在使用Xamarin Forms最新版本。
<StackLayout Orientation="Horizontal">
<Label
Text="Projectnummer : "
FontAttributes="Bold"/>
<Label
Text="WAY2CONNECT Holding B.V. WAY2CONNECT Holding B.V."/>
</StackLayout>
答案 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>