New to Telerik UI for WinFormsStart a free 30-day trial

Taskbar Manager

Updated over 6 months ago

RadTaskbarManager allows you to manage the functionality offered by our RadTaskbarButton at run time, e.g. start/stop flashing or updating the tool tip for the thumbnail. It offers convenient public static API for that purpose. Additional information is available in the Properties, Methods and Events article.

C#

private void radButton1_Click(object sender, EventArgs e)
{
    RadTaskbarManager.Flash(this.Handle);
}

private void radButton2_Click(object sender, EventArgs e)
{
    RadTaskbarManager.StopFlash(this.Handle);
}

private void radButton3_Click(object sender, EventArgs e)
{
    RadTaskbarManager.SetThumbnailTooltip(this.Handle, DateTime.Now.ToLongTimeString());
}

WinForms TaskbarButton Manager

See Also

In this article
See Also
Not finding the help you need?
Contact Support