0

Can the new InkCanvas and InkToolbar (see this link) be used in Windows 10 UWP HTML5/JS apps? I see only C#, C++, and VB tabs in the documentation.

This is in the documentation under XAML controls, which to my understanding is not part of the HTML support. Is there an alternative/complementary HTML5/JS tool set for these components?

Thanks!

Diode Dan
  • 4,801
  • 6
  • 25
  • 34

1 Answers1

2

The types InkCanvas and InkToolbar are currently not supported in UWP HTML5/JS. For HTML5/JS, you can use this official sample as reference. There you'll see the sample uses a regular <canvas> and a WinJS.UI.ToolBar.

Bart
  • 9,925
  • 7
  • 47
  • 64
  • It's too bad there isn't an alternative for HTML/JS yet. Ink support is a valuable addition to the platform. – Diode Dan Oct 31 '16 at 23:09