ComponentOne Scheduler for WPF and Silverlight
ReminderFire Event (C1Scheduler)

C1.WPF.Schedule Namespace > C1Scheduler Class : ReminderFire Event
Occurs when a reminder set on an appointment fires, before the Reminders dialog will be shown on a screen or activated.
Syntax
'Declaration
 
Public Event ReminderFire As System.EventHandler(Of ReminderActionEventArgs)
public event System.EventHandler<ReminderActionEventArgs> ReminderFire
Event Data

The event handler receives an argument of type ReminderActionEventArgs containing data related to this event. The following ReminderActionEventArgs properties provide information specific to this event.

PropertyDescription
(Inherited from System.Windows.RoutedEventArgs)
(Inherited from System.Windows.RoutedEventArgs)
Gets a Reminder object.  
(Inherited from System.Windows.RoutedEventArgs)
(Inherited from System.Windows.RoutedEventArgs)
Remarks
Use this event to implement your own reaction on this event, instead of activating a standard Reminders window.

To prevent activating a standard window, set the e.Handled event argument to True.

See Also