我需要一个多于 1 行文本的按钮,在 .Net Maui(使用 .Net7)中。我使用了属性 LineBreakMode =“WordWrap”,但文本(“如果可以的话就把我换行”)不换行。
我按照 https://github.com/dotnet/maui/issues/9102 中的说明进行操作,但没有成功。
我的代码有什么问题?
我上传了一个示例项目到 GitHub:https://github.com/leoderja/ButtonDoesNotWrapTextInMaui
请看下面的代码和图片
<Button
x:Name="CounterBtn"
Text="Wrap me if you can"
LineBreakMode="WordWrap"
HorizontalOptions="Center"
VerticalOptions="FillAndExpand"
MaximumWidthRequest="100"
HeightRequest="200"/>
提前谢谢你!!!