Completed
Last Updated: 13 Oct 2014 11:47 by ADMIN
ADMIN
Georgi I. Georgiev
Created on: 31 Jul 2013 07:12
Category: UI Framework
Type: Feature Request
1
ADD. TouchSupport - expose the SupportsGestures property
Expose the SupportsGesture property in the GestureInfoHelper class to enable users to enable/disable gesture support manually.
Workaround:
set the field with Reflection
private void DisableGestures()
        {
            Type gestureHelperType = typeof(GestureInfoHelper);
            FieldInfo field = gestureHelperType.GetField("supportsGestures", BindingFlags.NonPublic | BindingFlags.Static);
            field.SetValue(null,false);
        }
0 comments