.NET MAUI Scheduler Events
The Telerik UI for .NET MAUI Scheduler component exposes a set of events that users trigger through interaction. You can handle these events and execute custom logic based on user action.
Here is a list of the available events:
-
AppointmentTapped
—occurs when the user taps on an appointment. TheAppointmentTapped
event handler receives two parameters:- The sender argument, which is of type
object
, but can be cast to theRadScheduler
type. - A
TappedEventArgs<Occurrence>
object which provides the appointment occurrence through itsData
property.
- The sender argument, which is of type
-
AppointmentDoubleTapped
—occurs when the user double taps on an appointment. TheAppointmentDoubleTapped
event handler receives two parameters:- The sender argument, which is of type
object
, but can be cast to theRadScheduler
type. - A
TappedEventArgs<Occurrence>
object which provides the appointment occurrence through itsData
property.
- The sender argument, which is of type
-
SlotTapped
—occurs when the user taps on a slot. TheSlotTapped
event handler receives two parameters:- The sender argument, which is of type
object
, but can be cast to theRadScheduler
type. - A
TappedEventArgs<Slot>
object which provides the slot through itsData
property.
- The sender argument, which is of type
-
SlotDoubleTapped
—occurs when the user double taps on a slot. TheSlotDoubleTapped
event handler receives two parameters:- The sender argument, which is of type
object
, but can be cast to theRadScheduler
type. - A
TappedEventArgs<Slot>
object which provides the slot through itsData
property.
- The sender argument, which is of type
-
MonthDayTapped
—occurs when the user taps on a month day. TheMonthDayTapped
event handler receives two parameters:- The sender argument, which is of type
object
, but can be cast to theRadScheduler
type. - A
TappedEventArgs<DateTime>
object which provides the month day through itsData
property.
- The sender argument, which is of type
-
MonthDayDoubleTapped
—occurs when the user double taps on a month day. TheMonthDayDoubleTapped
event handler receives two parameters:- The sender argument, which is of type
object
, but can be cast to theRadScheduler
type. - A
TappedEventArgs<DateTime>
object which provides the month day through itsData
property.
- The sender argument, which is of type