namespace Xamarin.Forms.PlatformConfiguration.TizenSpecific { using FormsElement = Forms.Entry; public static class Entry { public static readonly BindableProperty FontWeightProperty = BindableProperty.Create("FontWeight", typeof(FontWeight), typeof(FormsElement), FontWeight.None); public static FontWeight GetFontWeight(BindableObject element) { return (FontWeight)element.GetValue(FontWeightProperty); } public static void SetFontWeight(BindableObject element, FontWeight weight) { element.SetValue(FontWeightProperty, weight); } public static FontWeight GetFontWeight(this IPlatformElementConfiguration config) { return GetFontWeight(config.Element); } public static IPlatformElementConfiguration SetFontWeight(this IPlatformElementConfiguration config, FontWeight weight) { SetFontWeight(config.Element, weight); return config; } } }