This Package | All Packages

UpDownChangedEventHandler Delegate

Identifies the method that will handle the upDownChanged event of the UpDown control.

package com.ms.wfc.ui

public multicast delegate
void UpDownChangedEventHandler( Object
sender, UpDownChangedEvent e );

Remarks

The syntax of the UpDownChangedEventHandler delegate specifies the signature for the event handler, where sender is the source of the event and e is an UpDownChangedEvent object that provides the event data.

When you create a UpDownChangedEventHandler delegate, you specify the method that will handle the event. Once the delegate is assigned to the event, the handler method is automatically invoked whenever the event is triggered. For more information about delegates, see Handling Events in WFC.