| TaskDialogTimer Event |
Event raised periodically while the dialog is displayed.
Namespace:
Ookii.Dialogs.Wpf
Assembly:
Ookii.Dialogs.Wpf (in Ookii.Dialogs.Wpf.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public event EventHandler<TimerEventArgs> Timer
Public Event Timer As EventHandler(Of TimerEventArgs)
public:
event EventHandler<TimerEventArgs^>^ Timer {
void add (EventHandler<TimerEventArgs^>^ value);
void remove (EventHandler<TimerEventArgs^>^ value);
}
member Timer : IEvent<EventHandler<TimerEventArgs>,
TimerEventArgs>
Value
Type:
SystemEventHandlerTimerEventArgsRemarks
This event is raised only when the RaiseTimerEvent property is set to . The event is
raised approximately every 200 milliseconds.
To reset the tick count, set the ResetTickCount
property to .
See Also