示例#1
0
        // -------------------------------------------

        /*
         * DayUpdated
         */
        public void DayUpdated(FlatCalendar.TimeObj _time)
        {
            DateTime newDate = new DateTime(_time.year, _time.month, _time.day, 0, 0, 0, 0, System.DateTimeKind.Utc);

            UIEventController.Instance.DispatchUIEvent(EVENT_SCREENCALENDAR_SELECT_DAY, (long)DateConverter.DateTimeToTimeStamp(newDate));
            Destroy();
        }