Auto Smooth Image zooming in Windows phone8 - c#

Hi I am new to windows phone 8.How to make an image to zoom in and zoom out smoothly in an automatic manner windows phone 8.
Thanks for your help in advance.

So to start with, you could use the Silverlight for Windows Phone Toolkit in order to use the Gesture provided by CodePlex. A workaround has been already done here.
Or else another option would be to go with the ManipulationStarted events for an image.
Reference: Smooth pinch-zooming and panning on Windows Phone 8
Another option could be, to use the Viewport control for Windows Phonewhich could handle flick and pinch gestures. Better if you could have a glance at the sample given by msdn. There could be more options out there, it would be better if you could give a search on them.

Related

How implement a (swipeable) card in windows phone?

I want to implement a swipeable card (left and right swipe) in a Windows Phone app. Is there any built in control for making a card and moving it?
If there is no built in control for it then what is the best approach to build a card like below and animate the movement of it?
Note: I am not asking help about detecting and processing of the swipe gesture.
figure showing the card
How about trying Carousel control though its available for Windows 10 for windows phone 8.1 you can refrence these two tutorials
Tutorial 1
Tutorial 2
Carousel control is one good example of what you want to achieve.
Also , I think you can do such a thing by changing some Pivot & PivotItem styles.It could be more customized than Carousel control but you need to take more effort on that.

Inking for Windows Phone 8.1 (Not Silverlight)

Is there any way to use Inking for Windows phone 8.1 application. I am able to use it in Silverlight application for freehand drawing.
But is there anything available to use for this purpose in WinRT?
There is no special purpose inking control. You can handle pointer events to track the touch point and draw your own strikes from those positions.

How to implement pinch zoom

I am working on windows phone8 xaml c# application, I need to implement pinch zoom in my reader page. Any help?
you could follow this msdn tutorial
http://www.windowsphone.com/en-in/how-to/wp7/start/gestures-flick-pan-and-stretch
And
The Windows Phone emulator only supports multitouch gestures with a multitouch device. You would have to have a screen, or touchpad to work with it. Also, there has been comments about using two mice and there is a project on codeplex http://multitouchvista.codeplex.com for it.

How to create flipping tile effect inside an app for Windows Phone

I am developing an app which shows image and I want to provide important relevant information on the same image. Essentially, I want to create a flipping tile inside an app and later pin it to the start. Is it possible to have one?
Radcontrols Hubtile or Coding4Fun toolkit Hubtile is what you are looking for.
About creating secondary tiles on windows phone check this article.

Zoom on a PictureBox (Windows Mobile)

I'm developing an app for Windows Mobile. I would like to make zoom on a PictureBox's image.
How can I do this?
I think this is more complicated because I'm doing for Windows Mobile.
Thank you!
Almost all questions that have to do with Windows Mobile are answered with OpenNetCF.
While I haven't tried this, OpenNetCF has a picture box control with a Scale() method. Perhaps this is what you're looking for.
If you use the ImageViewer control, you will get Zoom in/out.

Categories