For the Eyeshot WPF control, when the ImmediateMode is not activated but the property model1.MultiTouch.UseWindowsMessages is set to true and you need to add the Eyeshot control programmatically, you need the below code in the main window constructor to make it work.
public MainWindow()
{
InitializeComponent();
WorkspaceBase.DisableWpfTabletSupport();
}
You can test it with the attached source code sample.
If you need to restore the multitouch functionality on the other WPF controls, please have a look at this article.
Comments
Please sign in to leave a comment.