Пример #1
0
 /// <summary>
 ///     Selects the month.
 /// </summary>
 /// <param name="monthIndex">Index of the month.</param>
 /// <param name="animated">if set to <c>true</c> [animated].</param>
 private void SelectMonth(int monthIndex, bool animated)
 {
     if (monthIndex >= 0 && monthIndex < _picker.MonthCount)
     {
         //_picker.ScrollToSelectedMonth(monthIndex, animated);
         _picker.SetCurrentItem(monthIndex, animated);
     }
 }