Hot Area:

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:

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:

Answer:

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.



Leave a Reply 3

Your email address will not be published. Required fields are marked *


GP

GP

second box of answer might be wrong. I am not 100% sure(!)

PointerWheelChanged
Occurs when the mouse wheel is rotated.

“https://docs.microsoft.com/en-us/windows/uwp/input-and-devices/handle-pointer-input”

GP

GP

I did a samll application due to test purposes.

I found that the event PointerWheelChanged was called using touchpad (two fingers gesture=> hold one, move second and it is scrolling in textbox)

https://docs.microsoft.com/en-us/windows/uwp/input-and-devices/touchpad-interactions

to sum up: I would answer
1 – Yes
2 – Yes
3 – Yes