DispatcherTimer.Tick Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the timer interval has elapsed.
// Register
event_token Tick(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void Tick(event_token const* cookie) const;
// Revoke with event_revoker
DispatcherTimer::Tick_revoker Tick(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> Tick;
function onTick(eventArgs) { /* Your code */ }
dispatcherTimer.addEventListener("tick", onTick);
dispatcherTimer.removeEventListener("tick", onTick);
- or -
dispatcherTimer.ontick = onTick;
Public Custom Event Tick As EventHandler(Of Object)