I created a WPF application with hand input function.
It works fine on Windows 7 , but it can't work on Windows XP
System.Windows.Ink.AnalysisStatus status = theInkAnalyer.Analyze();
if(status.Successful)
{
...
}
else
{
//In Windows XP always get in here
}
In Windows XP always return false ?
Could someone know how to fix this problem , thanks.