ToolTipSetBetweenShowDelay Method

Sets the number of milliseconds since the last tooltip closed during which the tooltip of element will open immediately.

Definition

Namespace: Avalonia.Controls
Assembly: Avalonia.Controls (in Avalonia.Controls.dll) Version: 11.3.999
public static void SetBetweenShowDelay(
	Control element,
	int value
)

Parameters

element  Control
The control to get the property from.
value  Int32
The number of milliseconds to set, or a negative value to disable the behaviour.

Remarks

Setting a negative value disables the immediate opening behaviour. The tooltip of element will then always wait until ShowDelayProperty elapses before showing.

See Also