I write handwriting application on Windows Phone 8(there is link https://msdn.microsoft.com/en-us/windows/uwp/input-and-devices/convert-ink-to-text) but there is no InkCanvas in Windows Phone.
You can use Pointer Events to detect the touch and move and in those events construct path and display it.
Related
I need to use the event ScrollChanged of the ScrollViewer control, but it is only available on Windows 8. Windows Phone 8 RT which method I can use that is equivalent?
Windows Phone 8.1 Runtime apps can use the same ScrollViewer events as Windows Store 8.1 apps: ViewChanged and ViewChanging.
Windows Phone Silverlight's ScrollViewer doesn't have a direct analog to this event. If I recall correctly, the ScrollChanged event is specific to WPF's ScrollViewer.
I am migrating my Windows Phone 8 app to Windows Universal Apps. I am currently working on Windows 8.1 project.In my Windows Phone 8 app , I used Pivot Control to show multiple pages and for each App bar was different and in that when I used to slide the other view was visible. I showed different listbox on each page and the values comes from database. I want to do the same for Windows 8.1 but I found that there is not a Pivot Control in Windows 8.1. Can anyone suggest me any control using which I can do that. If possible explain me with some code.
Please help.
See XAML controls comparison between Windows Phone 8 and Windows 8 on MSDN.
Not all controls are available for both Windows and Windows Phone. Specifically, there is no direct analogue to the Pivot on Windows 8.1. You will need to either redesign your UI to use a different control or write your own (or find a 3rd party control) Pivot control.
Two likely options are a FlipView or a Hub Control, but the specifics will really depend on the details of your app.
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.
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.
I want to create an application that user can minimize to taskbar on Windows XP.
Like
iTunes
Windows Media Player
Google search
You are looking to create an Application Desktop Toolbar A simple example on doing so in C# with a Band Object is available here:
http://www.codeproject.com/KB/shell/dotnetbandobjects.aspx
It is known as DESK BAND