Force Windows Forms (Winforms) toolstrip tooltip to refresh or hide immediately using C#

If you are using the tooltip text on a ToolStrip control you may find that the control does not update the tooltip immediately and the tooltip may not hide when you start a long running process leaving the tooltip stuck on the screen.


Screenshot of a stuck tooltip

The toolstrip actually has a tooltip control under the hood which you can access with reflection.

Calling RemoveAll on the tooltip control will immediately remove all tooltips.

https://learn.microsoft.com/dotnet/api/system.windows.forms.tooltip.removeall


/// <summary>
/// Occurs when the user clicks the toolstrip button.
/// </summary>
/// <param name="sender">The control that raised the event.</param>
/// <param name="e">The event arguments.</param>
private void ToolStripButton_Click(object sender, EventArgs e)
{
    ToolTip toolTip = (ToolTip)toolStrip.GetType().GetProperty("ToolTip", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance).GetValue(toolStrip);
    toolTip.RemoveAll();
}


We needed this when displaying a Microsoft Authentication MSAL interactive login prompt which left the stray "Sign in to a Microsoft account" tooltip whilst the dialog was shown.


Comments

Popular posts from this blog

SOLVED: Exchange Online Management PowerShell Connect-ExchangeOnline bug "A window handle must be configured. See https://aka.ms/msal-net-wam#parent-window-handles"

Windows Server 2016, 2019, 2022, Windows 10 and Windows 11: Date and time "Some settings are managed by your organization".

TFTPD32 or TFTPD64 reports Bind error 10013 An attempt was made to access a socket in a way forbidden by its access permissions.