Inking for Windows Phone 8.1 (Not Silverlight) - c#

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.

Related

Expression Animation in WPF

Is there any kind of animation available for WPF app like expression animation in UWP?
Suppose I want to move a rectangle vertically with my mouse and another rectangle should move horizontally accordingly to the first one.
You can try with WindowsXAMLHost: it's a new feature, still in development, incorporated in the Windows Community Toolkit.
By using the WindowsXamlHost control, you can add built-in or custom UWP controls to the User Interface (UI) of your WPF or Windows Forms desktop application, even with custom functionalities.
Check the related MSFT Docs here: UWP controls in Desktop applications
Then get the companion app from the Win Store: Windows Community Toolkit Sample app
It will be a little bit tricky... but I'm sure that it is possible to do what you requested.
Best regards

Is it possible to integrate Ink toolbar (UWP) to window form c#

I am new on to develop window base application, I just wondering is it possible to integrate Ink toolbar (That use in Universal Windows Platform) use in traditional window form (The Surface pen able to write and saved as image)
Thank you
it possible to integrate Ink toolbar (That use in Universal Windows Platform) use in traditional window form (The Surface pen able to write and saved as image)
It's not possible in traditional Win32/Winform application, why not consider of migrating to UWP?:)
BTW, you may be interest in Convert your desktop application to a Universal Windows Platform (UWP) app

InkCanvas in Windows Phone 8

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.

Auto Smooth Image zooming in Windows phone8

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.

textbox under commandbar of windows phone 8.1

Is it possible to add/include a textbox under commandbar of windows phone 8.1 app as present in Internet Explorer 10..
This is not possible, you can only use AppBarButton and AppBarToggleButton.
Apps like IE and the app store where you can see rectangular buttons in the command bar, are special apps in which Microsoft can do whathever they want.
But you could try to implement your own custom CommandBar that immitates the system command bar, but this seems like too much work and error prone.
Yolo
This project aims to create useful controls for WinRT (Windows Phone, Windows 8.1, and later XBOX One). The first one is a customizable AppBar control, which is in a early stage of development.
You can use this app bar to suit your requirements.

Categories