views:

94

answers:

1

Trying to implement Wpf Listbox dragging, and I need the Wpf equivalent of the SystemInformation.DragSize property.

thanks

+2  A: 

What you want is SystemParameters namespace.
Specifically, SystemParameters.MinimumHorizontalDragDistance and SystemParameters.MinimumVerticalDragDistance

Muad'Dib