[c#]
private void Schedule_OnMonthCellLoadedEvent(object sender, MonthCellLoadedEventArgs e)
{
if (e.isNextMonthDate || e.isPreviousMonthDate)
{
Button button = new Button();
button.BackgroundColor = Color.Transparent;
e.view = button;
}
} |