I have made an application which displays Images and i have implemented pinch zooing, translating using Silverlight for Windows Phone Toolkit, GestureService it works perfect. but when am zooming the image or dragging the image it is not the image border/ boundaries. :(
how can i limit the image with in the screen. i want same look and feel like native windows phone photo viewer or web browser ( we can drag contetnt with in the limites only in web browser)
thanks in advance
I have posted the code on my blog.. have a look here
http://invokeit.wordpress.com/2013/01/17/photoviewer-with-pinch-zoom-pan-and-flick-support/
I use the same for my app's photo viewer
Related
I would like to zoomout the image from the flipView available in the GridProject of Win8 Metro App in C# XAML. I already have a scrollviewer but I would like to know if the user can simply double the image with mouse, so that only the image gets opened in a new page.
If so, it would be really great if you could suggest me how to proceed with it.
I followed this article Zooming into image in Windows Store appsSemanticZoom but it doesn't help.
Thanks in Advance!
I am developing a web app, in the page developed i am seeing this weird icon at the bottom of the page after the footer
It is not coming in other android or iOS.
Please help in solving why this image is coming only in windows phone browser.
My issue is solved that image which is not loaded in the page is shown as like that icon in WP browsers, but all the other browsers is neglecting the image tag with no image loaded.
I am New to Windows Phone Dev. I like to Do one App after Using this App in Windows Phone
EspnCrickinfo App. When I use this App,i seen Very cool feather that Image in gallery Swiping Left and Right. I am trying this Functionally But I am Not Succeed.
I have Some JSON Link Contains Images
For Reference
I follow this MSDN But I am Getting Btns on App bar.
Please can any one suggest Me how can make this Easy.
Hear is the Perfect Answer for This Question...Image Slide Show with Swipe Effect in Windows Phone
Well if you want to have swipe effects go for microsoft toolkit and use gesture listener.
register to a flick event and you have your desired effect. This link will help you.
how to get swipe in windows phone 7
I have an application that loads image data from a web service. I want to allow the user to view the images in a similar UI than the phone's Pictures application provides (zoom in/out) etc. Is it possible to open my image data in the Pictures application or do I need to implement my own viewer?
You need to save the image to the phone to view it with the pictures hub. So I would implement my own viewer. It's easy with the Silverlight Toolkit
I have written a windows phone application. When the application starts up it shows the splash screen which is cool and i can change the image. But is there a way to add a loading animation like those dots moving across the screen.
It would be nice if i can add one of those animation in the splash screen. Can it be done. if yes please add in your answers.
As of right now there is no way to replace the loading image that shows up with an animation. Although there are workarounds:
Remove the image all together. Might want to be careful though because Microsoft requires that the application show some kind of feedback to the user within a few seconds of launching the app. Use this only if your app loads really fast.
Display a snap shot of the loading screen as an image so when the app does load you can show an animation with the same background image and it appears that its the same loading screen.
In your case I would recommend using a popup control with a loading animation inside (Option 2). To learn how to create a popup go here. Or if you want a well documented popup I know telerik has there own version as well.
Next place the loading message in a textblock or put your own image and animation inside of the popup. Obviously the easiest animation would be to use the Performance Progress Bar in the silverlight toolkit.
Now what you'll want to do is set the popup opened by default. Whenever your processing is done all you have to do is set the popup visibility to hidden in your C# code.
Some examples of how this is implemented can be found here:
Creating a Splash Screen
Creating an Animated Splash Screen
All About Splash Screens
And here's an example for an XNA game:
Creating a Splash Screen for your XNA game