Keyboard tooltip of toolStripDropDown item keeps displaying when tab to other control
Opened this issue · 0 comments
Olina-Zhang commented
.NET version
.NET 10 with 10.0.100-alpha.1.24573.1 build
Did it work in .NET Framework?
Not tested/verified
Did it work in any of the earlier releases of .NET Core or .NET 5+?
No, still repro in .NET 6.0/7.0/8.0/9.0
Issue description
Keyboard tooltip of toolStripDropDown item keeps displaying when tab to other control:
ToolTipIssue.mp4
Steps to reproduce
- Create Winforms .NET app with toolStrip and button added
- In toolStrip, add ToolStripDropDownButton, add toolStripMenuItem for ToolStripDropDownButton
- Set toolStrip's
TabStop
property toTrue
- Focus on toolStripMenuItem, set its
AutoToolTip
propertyto True
- Build and run app
- Press down to expand ToolStripDropDownButton - it will focus on toolStripMenuItem with its keyboard tooltip displayed
- Press enter to collapse ToolStripDropDownButton, tab to another control: button
Test app: WinFormsApp15.zip