I have a c# codebehind to a web app I'm trying to add "using Microsoft.Ink" to, but it is not a valid namespace. Is there something I need to install before I do this? The documentation from Microsoft seems all over the place and there are no instructions on how to include this in the file. I checked in the modify menu for Visual Studio to see if I could add anything for tablet support and there is nothing.
How do I add "using Microsoft.Ink"?
Microsoft.Ink comes with the Table PC SDK. The dll would be found in
C:\Program Files\Reference Assemblies\Microsoft\Tablet PC\versionNo\
though it is quite an old library, and I think it it intended for WinForms, not Web.If you wanted to move away from ASP.NET, alternatives you might want to look into are System.Windows.Ink for WPF or the InkCanvas control on UWP.