Is there a way to determine the time slot that a user right clicked on when you are handling an event raised from the right click menu.
THe ActiveDay property of CalendarInfo tells you th day, but is there a way to get the timeslot also.
private void dayView_MouseDown(object sender, MouseEventArgs e){ UltraDayView dayView = sender as UltraDayView; TimeSlot timeSlot = e.Button == MouseButtons.Right ? dayView.GetTimeSlotFromPoint( e.Location ) : null; if ( timeSlot != null ) { }}