diff --git a/xml/System.Windows.Forms/ToolTip.xml b/xml/System.Windows.Forms/ToolTip.xml index 5d37c957578..15363bef93c 100644 --- a/xml/System.Windows.Forms/ToolTip.xml +++ b/xml/System.Windows.Forms/ToolTip.xml @@ -320,7 +320,7 @@ Gets or sets the period of time the ToolTip remains visible if the pointer is stationary on a control with specified ToolTip text. - The period of time, in milliseconds, that the remains visible when the pointer is stationary on a control. The default value is 5000. + The period of time, in milliseconds, that the remains visible when the pointer is stationary on a control. On Windows 11, the default value causes the ToolTip to remain visible indefinitely. property. The property sets the , , and properties to initial values based on a single value. Every time the property is set, the property is set to 10 times the property value. Once the property is set, you can independently set the property, overriding the default value. - The maximum time you can delay a popup is 5000 milliseconds. For longer durations, use the method to control the exact moment when the ToolTip is displayed. + The behavior of this property varies by Windows version: + +- On Windows 10, the maximum time you can delay a popup is 5000 milliseconds. Values greater than 5000 ms are clamped to 5000 ms. +- On Windows 11, the default value causes tooltips to remain visible indefinitely. When set to a custom value, there's no 5000 ms limit, and the tooltip displays for the specified duration. + +For longer durations or precise control over when the ToolTip is displayed, use the method.