private void Schedule_OnMonthInlineLoadedEvent(object sender, MonthInlineLoadedEventArgs args)
        {
            MonthInlineViewStyle monthInlineViewStyle = new MonthInlineViewStyle();

            monthInlineViewStyle.FontFamily = Device.OnPlatform("Lobster-Regular", "Lobster-Regular.ttf", "Assets/Lobster-Regular.ttf#Lobster");
            args.monthInlineViewStyle       = monthInlineViewStyle;
        }
Пример #2
0
 private void Schedule_MonthInlineLoaded(object sender, MonthInlineLoadedEventArgs e)
 {
     e.MonthInlineViewStyle.BackgroundColor = UIColor.FromRGB(246, 246, 246);
     e.MonthInlineViewStyle.TextColor       = UIColor.Black;
 }