HOTSPOT
You have the following code:
event1 += new PointerEventHandler(Target_PointerPressed);
event2 += new PointerEventHandler(Target_PointerWheelChange);
event3 += new PointerEventHandler(Target_PointerReleased);
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
Hot Area:
Explanation:
*PointerPressed occurs when a single finger touches the screen.
*PointerWheelChanged occurs when the delta value of a mouse wheel changes.
*PointerReleased occurs when that same touch contact is lifted.
ThePointerReleased eventoccurs when the pointer device that previously initiated a Press action is released, while within this element. Note that the end of a Press
action is not guaranteed to fire a PointerReleased event; other events may fire instead.