Skip to content

MapClickDoubleClickMode

Namespace: ThinkGeo.UI.Wpf

Specifies how map click and map double-click events are dispatched for a double-click gesture.

public enum MapClickDoubleClickMode

Inheritance ObjectValueTypeEnumMapClickDoubleClickMode
Implements IComparable, IFormattable, IConvertible

Fields

Name Value Description
MutuallyExclusive 0 Keeps single-click and double-click mutually exclusive.
For a double-click gesture, only MapDoubleClick is raised.
MapClick is deferred until the system double-click interval has elapsed.
Use this when single-click logic must not run before double-click actions.
RaiseClickThenDoubleClick 1 Raises both click and double-click for a double-click gesture.
Event order is: MapClick (first click), MapClick (second click), then MapDoubleClick.
Use this when every click should be observable and single-click feedback should be immediate.