Little Kid
Little Kid

Reputation: 55

How to test a UWP App running on a windows computer for zoom functionality

I am sorry but I might have to ask a really silly question as I have been googling for quite some time and can't seem to find the answer for my issue. I am currently developing a Xamarin cross platform application and my application has a zoom functionality implemented. However, unlike real tablets and phones which we can use our fingers to do the zooming, I am unsure as to how to test zooming on a windows computer for a UWP application installed using my mouse and keyboard.

Any kind soul willing to give me some advice on how to zoom using mouse and keyboard on a windows computer for a UWP app?

Upvotes: 0

Views: 298

Answers (1)

SushiHangover
SushiHangover

Reputation: 74194

  • Holding the Ctrl key down while scrolling the mouse scroll wheel

  • Holding the Ctrl key down (with the Shift key, if no numeric keypad is available) and pressing the plus (+) or minus (-)

Both optical zoom and resizing interactions are performed through the pinch and stretch gestures (moving fingers farther apart zooms in and moving them closer together zooms out), or by holding the Ctrl key down while scrolling the mouse scroll wheel, or by holding the Ctrl key down (with the Shift key, if no numeric keypad is available) and pressing the plus (+) or minus (-) key.

Ref: UWP Optical zoom and resizing

Upvotes: 1

Related Questions