How I can get the duration in milliseconds that is valid for a DoubleClick in WPF. The same as in Windows Forms the SystemInformation.DoubleClickTime
-property was.
You can use P/Invoke to call GetDoubleClickTime directly:
[DllImport("user32.dll")]
static extern uint GetDoubleClickTime();
This will return the number of milliseconds for a double click.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With