Paint on an InkCanvas with finger (touch screen) not mouse - mouseMove instead of MouseClick

StackOverflow https://stackoverflow.com/questions/9036718

  •  20-04-2021
  •  | 
  •  

I am using an InkCanvas on a Wpf Window (c#). This Canvas is working when I am draging the mouse to the canvas, and then CLICK the mouse to draw what ever I want.

I intend to put this on a touch screen. As I unsderstand, the touch on the screen (finger or pen) will act as Mouse-Move, and not Mouse-Click, therefore nothing will be painted.

How can I achieve this?

有帮助吗?

解决方案

That assumption is wrong, all touch behaviors are interpreted as mouse interaction by default if you do not override it, a touch turns into MouseDown, so it will work (i have a touch-screen myself).

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top