MouseMonitorSuppressMouseButtonUpEventWhenDoubleClick Property

** ONLY FOR TESTING PURPOSES **

Gets or sets a value indicating whether to suppress the last MouseUp event of when a double-click occurs.

If this value is set to , the application will send the events in this order for a Double-Click:

MouseDown, MouseUp, MouseDown, MouseDoubleClick

If this value is set to , the application will send the events in this order for a Double-Click: MouseDown, MouseUp, MouseDown, MouseUp, MouseDoubleClick

Definition

Namespace: DevCase.Core.IO.Devices.Input
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public bool SuppressMouseButtonUpEventWhenDoubleClick { get; set; }

Property Value

Boolean
if MouseUp event is suppressed; otherwise.

See Also