我使用的是Xamarin Forms 1.3稳定版。
我收到一条警告,指出fontattributes已经过时了。所以我将代码更改为
label.FontSize = Font.SystemFontOfSize(16, FontAttributes.Bold).FontSize
但是FontAttributes.Bold
不起作用。它没有使标签变粗。有人可以帮助我吗?
答案 0 :(得分:2)
我能够解决这个问题。在Xamarin表单中1.3 Formsize和FormAttributes是标签的2个不同属性。
答案 1 :(得分:0)
您要设置标签的FontSize
,而不是Font
属性。作为per the documentation,您应该能够执行以下操作:
label.Font = Font.SystemFontOfSize(16, FontAttributes.Bold);