Xamarin.Forms 字体已过时

Mik*_*ish 4 c# portable-class-library xamarin.forms

当我尝试在Xamarin.Forms上创建新标签时,我收到以下警告:

about = new Label { Text = "" ,      
                TextColor=Color.Black,
                Font = Font.SystemFontOfSize(16),//Warning occurred here 
                XAlign = TextAlignment.End,
                HorizontalOptions = LayoutOptions.EndAndExpand};
Run Code Online (Sandbox Code Playgroud)

'Xamarin.Forms.Label.Font' 已过时:'请使用类本身的字体属性。在 v1.3.0 中已废弃'

这个警告意味着什么,我应该怎么做?

Kei*_*ome 5

请改用类的FontSizeFontFamilyFontAttributes属性Label

https://developer.xamarin.com/guides/xamarin-forms/user-interface/text/fonts/