From 290580863fba6b7d5e3eb987577c32036a4e282c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 29 Sep 2025 17:24:57 +0000 Subject: [PATCH 1/3] Initial plan From f27be8cf6aa6d87bf3a369c1b61fa6c1d07be9ba Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 29 Sep 2025 17:29:28 +0000 Subject: [PATCH 2/3] Update ToolTip.AutoPopDelay documentation for platform-specific behavior Co-authored-by: gewarren <24882762+gewarren@users.noreply.github.com> --- xml/System.Windows.Forms/ToolTip.xml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/xml/System.Windows.Forms/ToolTip.xml b/xml/System.Windows.Forms/ToolTip.xml index 5d37c957578..d19f1baccb3 100644 --- a/xml/System.Windows.Forms/ToolTip.xml +++ b/xml/System.Windows.Forms/ToolTip.xml @@ -329,7 +329,12 @@ If you want to have a consistent delay pattern for your ToolTip windows, you can set the 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. From 26f4dec23b07544bd3673cdd63477751dc06d2ff Mon Sep 17 00:00:00 2001 From: Genevieve Warren <24882762+gewarren@users.noreply.github.com> Date: Mon, 29 Sep 2025 10:49:51 -0700 Subject: [PATCH 3/3] Update default value --- xml/System.Windows.Forms/ToolTip.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xml/System.Windows.Forms/ToolTip.xml b/xml/System.Windows.Forms/ToolTip.xml index d19f1baccb3..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.