MyScript iink SDK makes it easy to get started. This page helps you set up a development environment, get a certificate and play with provided example applications.
To develop with iink SDK for Windows, you will need:
MyScript iink SDK comes with example applications illustrating how to use key APIs:
GetStarted example is a good starting point to discover MyScript iink SDK.Demo example is a more advanced integration that you can refer too, once familiar with MyScript iink SDK.The code is available on GitHub for both UWP and WPF.
A reference implementation for the platform-specific integration layer can be found alongside the examples. It covers aspects such as rendering that the low-level iink SDK does not provide out-of-the-box for flexibility and portability reasons.
The source code of both the examples and the reference implementation is released under the Apache 2.0 license. You can reuse it into your own projects without any particular restriction.
A certificate is a binary “key” provided by MyScript that is required to enable iink SDK in an application:
More details on certificates and license management can be found in the dedicated support section.
The certificate comes embedded in a source file that you should include in your project:
To run them, just follow the following instructions:
Step 1: Clone the MyScript Git repository containing the examples for Windows and navigate to the root of the folder.
For the Universal Windows Platform (UWP), type:
git clone https://github.com/MyScript/interactive-ink-examples-uwp.git
cd interactive-ink-examples-uwp
For “traditional” Windows desktop .NET development using WPF, type:
git clone https://github.com/MyScript/interactive-ink-examples-wpf.git
cd interactive-ink-examples-wpf
Step 2: Replace MyCertificate.cs file in GetStarted directory with your certificate.
Step 3: Open the appropriate solution file:
iink-examples.uwp.sln for UWPiink-examples.wpf.sln for WPFSet GetStarted or Demo project as your startup project by right-clicking the project in the solution browser and selecting “Set as startup project”.
Step 4: Build and run.
This will automatically fetch the latest iink SDK libraries, via the NuGet Package Manager.