MonoTouch.Dialog.MonthGridView.TouchesEnded C# (CSharp) Метод

TouchesEnded() публичный Метод

public TouchesEnded ( NSSet touches, UIEvent evt ) : void
touches NSSet
evt UIEvent
Результат void
        public override void TouchesEnded(NSSet touches, UIEvent evt)
        {
            base.TouchesEnded (touches, evt);
            if (_calendarMonthView.OnFinishedDateSelection == null)
                return;
            SelectedDate = new DateTime (_currentMonth.Year, _currentMonth.Month, SelectedDayView.Tag);
            _calendarMonthView.OnFinishedDateSelection (new DateTime (_currentMonth.Year, _currentMonth.Month, SelectedDayView.Tag));
        }