0

I would like to know, if it's possible to activate and control the cursor in windows 8.1 rt, from a metro-app? My approach is:

system.windows.forms.cursor.handle
//or
system.windows.forms.control.mouseposition

Would this work, and if yes, do I need to initialize the mouse somehow in the first place?

Filburt
  • 17,626
  • 12
  • 64
  • 115

1 Answers1

0

This is not possible. The Windows Runtime doesn't provide an API to control the cursor.

You can't use the Windows Forms API, as it can't be imported in projects for Windows Store apps.

christianliebel
  • 506
  • 4
  • 13