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));
        }