Questions tagged [microsoft.ink]

Microsoft WPF library for using digital ink on Windows platform.

Incorporating digital ink into your applications is easier than ever. Ink has evolved from being a corollary to the COM and Windows Forms method of programming to achieving full integration into the WPF. You do not need to install separate SDKs or runtime libraries.

Getting Started with Ink

Digital Ink Overviews

Microsoft.Ink library

34 questions
5
votes
1 answer

Suppress the virtual touch screen Windows keyboard in a WPF full screen application

We have a full screen application developed in WPF that will be used on a touch interface. As part of this project I developed a styled virtual keyboard that will be used to input when the application is run on a touch device. Everything works…
user969447
  • 51
  • 3
5
votes
1 answer

How to restrict microsoft inkoverlay draw in input controls like (textbox, checkbox)?

I want to restrict InkOverlay drawing in textbox and checkbox, but I need to draw in label. How to achieve this. If I set theInkOverlay.AttachMode =InkOverlayAttachMode.Behind; It is applying for all the controls. I need to draw above on the…
Franklin
  • 81
  • 1
4
votes
2 answers

Is there a way to detect if a pen is in proximity to the screen in WinRT

I want to be able to detect if I have a pen close to the screen or not. I would like for example to show a different appbar if I open it with a pen. Also I would like to show other things on the screen when I hold a pen close to it (not necessarily…
Jimmy Engtröm
  • 1,998
  • 4
  • 23
  • 34
2
votes
1 answer

How to use useLegacyV2RuntimeActivationPolicy with multiple projects?

i'm trying to include handwriting recognition capabilities as a library into a WPF .NET 4 Solution containing multiple projects. Therefore i wanted to use the IAWinFX.dll (tablet PC SDK 1.7) on Win7 x64 - but when running BackgroundAnalyze i get the…
2
votes
1 answer

Separating lines in Microsoft Ink

Using Mircosoft.Ink, when I have a RecognizerContext rec, how can I separate the different lines? I need to get the text that was written per line and not everything together when I call rec.Recognize.
Sandra
  • 3,560
  • 5
  • 24
  • 31
2
votes
1 answer

modifying a print preview

I'm building a c# app that displays a print preview (of a document) and then asks the user(s) to 'sign' the document via a InkPicture control. I've got no problems extracting the Bitmap from the inkpicture control and applying it to the…
Steven Evers
  • 16,649
  • 19
  • 79
  • 126
2
votes
1 answer

Windows Phone - WriteableBitmap.Render does not work with InkPresenter

I'm using WriteableBitmap.Render to convert an InkPresenter control to a byte array and Image. This is my code: var bitmap = new WriteableBitmap(element, null); bitmap.Render(element, null); bitmap.Invalidate(); …
2
votes
1 answer

Windows Inking For Windows 8 - How to Set Pen Texture

Any one knows if it is possible to set custom textures to Windows.UI.Input.Inking drawing strokes? If it is possible, how to do it?
Carlos_rpg
  • 71
  • 1
  • 12
2
votes
1 answer

Tests failing in CruiseControl but succeed when I run them

I have CruiseControl.NET (v 1.6.7981.1) set up on a Windows 7 Pro dedicated build machine. I have a VS2012 project setup to build and then run MBUnit tests using Gallio.Echo.exe. My problem is that when CC.NET runs these tests it fails on a few of…
2
votes
1 answer

Convert an image to base64 without using HTML5 Canvas

First, a little background: I apologize ahead of time for the long-winded nature of this preface; however, it may assist in providing an alternate solution that is not specific to the nature of the question. I have an ASP.NET MVC application that…
Chris K.
  • 21
  • 2
1
vote
2 answers

Parsing Windows Journal (JNT) files

According to .NET docs here, it should be possible to convert JNT files into XML using the Microsoft.Ink.JournalReader.ReadFromStream component. However, all the code samples on MSDN are old and don't work with Windows 7 x64 and the current version…
Leo Alekseyev
  • 12,893
  • 5
  • 44
  • 44
1
vote
1 answer

Handling ink In Microsoft.ink sdk

I am working on microsoft ink sdk. or the tablet pc using C# I have some strokes which i want to modify mathematically. in GIF format or ISF format I don't know how to retrieve the pressure information of the modified stroke. The other way if …
gauri2180
  • 41
  • 1
  • 2
1
vote
1 answer

animating strokes in an inkpresenter

I am trying to animate the colors of strokes in an inkpresenter. Is there a way to make an animation for each stroke in an inkpresenter? It seems like storyboards only allow you to modify properties for controls made a design time.
tbischel
  • 6,337
  • 11
  • 51
  • 73
1
vote
1 answer

Microsoft Ink InkAnalyzer "... is not a valid Win32 application. (Exception from HRESULT: 0x800700C1)"

i am getting a "... is not a valid Win32 application. (Exception from HRESULT: 0x800700C1)" Exception with the following code, any suggestions how to fix it ? InkAnalyzer analyzer = new InkAnalyzer(this.overlay.Ink,…
dknaack
  • 60,192
  • 27
  • 155
  • 202
1
vote
1 answer

Ink to memorystream problem

I was trying to convert an ink from Microsoft.Ink namespace to memorystream, so to convert it to image, but I don't understand why it's getting an error in the memorystream. I kind of felt that it was an error from Convert.FromBase64String() But I…
Corbee
  • 979
  • 2
  • 13
  • 26
1
2 3