SfSchedule schedule;
protected override void OnAttachedTo(ContentPage bindable)
{
base.OnAttachedTo(bindable);
schedule = bindable.FindByName<SfSchedule>("schedule");
//System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.CreateSpecificCulture(Settings.SelectedLocale);
//this.monthCalendarAdv1.Culture = System.Globalization.CultureInfo.CurrentCulture;
schedule.locale = new System.Globalization.CultureInfo(Settings.SelectedLocale.ToString()).ToString();
}
locale just accepts string and not CultureInfo