DatePickerDropDown.cs 535 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using UnityEngine.UI;
  7. namespace Bitsplash.DatePicker
  8. {
  9. /// <summary>
  10. /// this is a UI.Text implementation of the drop down
  11. /// </summary>
  12. public class DatePickerDropDown : DatePickerDropDownBase
  13. {
  14. public Text Label;
  15. protected override void SetText(string text)
  16. {
  17. if (Label != null)
  18. Label.text = text;
  19. }
  20. }
  21. }