Marius Bughiu
Marius Bughiu

Reputation: 1017

Does the MouseLeftButtonDown work on WP7 devices?

I've recently started work on an application for Windows Phone 7 devices and I haven't yet acquired a WP7 device so I do all the debugging and testing in the emulator.

So. In my application I use the MouseLeftButtonDown event handler to catch a click and navigate from one page to the other. It works perfectly on the emulator but I would like to know for sure if it will work on the real devices as well.

The reason I got doubts is because of the name of the event MouseLeftButtonDown... a phone doesn't have mouse.

So anyone knows? Anyone can try this and tell me?

Upvotes: 1

Views: 489

Answers (3)

Sander
Sander

Reputation: 26374

Yes, MouseLeftButtonDown works on the device.

Upvotes: 1

Claus Jørgensen
Claus Jørgensen

Reputation: 26341

For Windows Phone 7.1 (Mango) all FrameworkElements now support Tap and DoubleTap, and you're recommended to use those instead of the Mouse Events.

Upvotes: 4

AnthonyWJones
AnthonyWJones

Reputation: 189457

If it works in the emulator then it works on the device. It would be a poor emulator that behaved differently from the device in such a fundemental area.

Upvotes: 1

Related Questions