void Start()
        {
            var b = GetComponent <Button>();

            if (!b)
            {
                b = gameObject.AddComponent <Button>();
            }
            b.onClick.AddListener(() => DateTimePicker8.Show(null));
        }
Ejemplo n.º 2
0
 public void Show()
 {
     DateTimePicker8.Show(null);
 }