DatePickerDropDownTextMeshPro.cs 441 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Bitsplash.DatePicker
  7. {
  8. class DatePickerDropDownTextMeshPro : DatePickerDropDownBase
  9. {
  10. public TMPro.TextMeshProUGUI Label= null;
  11. protected override void SetText(string text)
  12. {
  13. if (Label != null)
  14. Label.text = text;
  15. }
  16. }
  17. }