dotnet-api-docs
dotnet-api-docs copied to clipboard
winform: ToolTip.AutoPopDelay max value mismatch with actual behavior
Describe the issue or suggestion
The official documentation states that "the maximum delay for popups is 5000 milliseconds." This does not match actual behavior.
Current Behavior:
-
On Windows 11, when ToolTip.AutoPopDelay is set to its default value of 5000 milliseconds, the tooltip remains visible indefinitely (infinite tooltip). This is due to WCAG 2.2 accessibility compliance requirements, as keyboard-accessible tooltips must be persistent and dismissible by default. Users can dismiss the tooltip by pressing the Escape key.
-
When ToolTip.AutoPopDelay is set to a non-default value, the tooltip remains visible for the set duration.