Just a quick question: What exactly is the SystemParameters class? Is it just a collection of "default values" or is it actually kind of hooked into windows?
Background: For Drag&Drop operations we are using the SystemParameters.MinimumHorizontalDragDistance and SystemParameters.MinimumVerticalDragDistance properties to detect D&D. For Touch screens the default values are to small and I'm wondering if I have to implement some configuration mechanism to change this values or if I can change some system settings somewhere (lets say registry or control panel or whatever).
Thanks!
Update: With the detailed answer below I finally did find what I ws looking for. Just for reference if anybody else is looking for it in the future: The Minimum Drag Distance can be changed in the registry
HKEY_CURRENT_USER\Control Panel\Desktop\DragHeight
HKEY_CURRENT_USER\Control Panel\Desktop\DragWidth
By default both values are set to 4 (px). Be aware that the changes only take effect after reboot.