nerdexam
Microsoft

70-484 · Question #37

You need to recommend a solution to implement the Check gesture for the item detail page. Which two components should you include in the recommendation? (Each correct answer presents part of the solut

The correct answer is A. an event handler D. the Microsoft gesture recognizer. private void OnPointerMoved(object sender, Windows.UI.Xaml.Input.PointerRoutedEventArgs args) // Route the events to the gesture recognizer. // All intermediate points are passed to the gesture recognizer in // the coordinate system of the reference element. this._gestureRecogniz

Program the User Interaction

Question

You need to recommend a solution to implement the Check gesture for the item detail page. Which two components should you include in the recommendation? (Each correct answer presents part of the solution. Choose two.)

Options

  • Aan event handler
  • Ban InkCanvas control
  • Cthe Windows Kinect SDK
  • Dthe Microsoft gesture recognizer
  • Ethe SemanticZoom control

How the community answered

(17 responses)
  • A
    82% (14)
  • B
    12% (2)
  • C
    6% (1)

Explanation

private void OnPointerMoved(object sender, Windows.UI.Xaml.Input.PointerRoutedEventArgs args) // Route the events to the gesture recognizer. // All intermediate points are passed to the gesture recognizer in // the coordinate system of the reference element. this._gestureRecognizer.ProcessMoveEvents(args.GetIntermediatePoints(this._reference)); // Mark event handled, to prevent execution of default event handlers args.Handled = true;

Topics

#gestures#GestureRecognizer#Check gesture#event handler

Community Discussion

No community discussion yet for this question.

Full 70-484 Practice