Fontattribute是过时的xamarin形式-1.3

时间:2015-01-05 07:31:07

标签: xamarin xamarin.forms

我使用的是Xamarin Forms 1.3稳定版。

我收到一条警告,指出fontattributes已经过时了。所以我将代码更改为

label.FontSize = Font.SystemFontOfSize(16, FontAttributes.Bold).FontSize 

但是FontAttributes.Bold不起作用。它没有使标签变粗。有人可以帮助我吗?

2 个答案:

答案 0 :(得分:2)

我能够解决这个问题。在Xamarin表单中1.3 Formsize和FormAttributes是标签的2个不同属性。

答案 1 :(得分:0)

您要设置标签的FontSize,而不是Font属性。作为per the documentation,您应该能够执行以下操作:

label.Font = Font.SystemFontOfSize(16, FontAttributes.Bold);