skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • AI Coding Assistants
    • Embedded Reporting
    • Document Processing Libraries
    • SSO Account Sign-in

    Web

    Kendo UI UI for Angular UI for Vue UI for jQuery KendoReact UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Telerik JustMock

    CMS

    Sitefinity

    AI Productivity Tools

    AI Coding Assistants

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    KendoReact Free VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • First Steps
    • Docs
    • Demos
    • Virtual Classroom
    • Forums
    • Videos
    • Blogs
    • Accessibility
    • Submit a Ticket

    Productivity and Design Tools

    • Visual Studio Extensions
    • Visual Studio Templates
    • Embedded Reporting
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now

Class RadNotifyIcon

Represents a control that can be used to display an icon in the Windows' taskbar notification area. The icon can then respond to user interaction as well as display tooltips, popups, balloon notifications and context menu.

Inheritance
System.Object
RadNotifyIcon
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll

Syntax

[TelerikToolboxCategory("Containers")]
public class RadNotifyIcon : Component

Constructors

RadNotifyIcon()

Initializes a new instance of the RadNotifyIcon class.

Declaration
public RadNotifyIcon()

Properties

BalloonIcon

Gets or sets the icon of the balloon tip to be show when the ShowBalloonTip(Int32) method is called.

Declaration
public Icon BalloonIcon { get; set; }
Property Value
System.Drawing.Icon

BalloonText

Gets or sets the text of the balloon tip to be show when the ShowBalloonTip(Int32) method is called.

Declaration
public string BalloonText { get; set; }
Property Value
System.String

BalloonTitle

Gets or sets the title of the balloon tip to be show when the ShowBalloonTip(Int32) method is called.

Declaration
public string BalloonTitle { get; set; }
Property Value
System.String

ContextMenuActivationMouseEvent

Gets or sets the mouse action that must be performed over the notify icon to show the TrayContextMenu.

Declaration
public MouseActivationEvent ContextMenuActivationMouseEvent { get; set; }
Property Value
MouseActivationEvent

GuidItem

Gets or sets the Guid id that will be used to identify the notify icon when sending messages to it.

Declaration
public Guid GuidItem { get; set; }
Property Value
System.Guid

IsPopupOpen

Gets a value indicating whether a popup is open.

Declaration
public bool IsPopupOpen { get; }
Property Value
System.Boolean

PopupActivationMouseEvent

Gets or sets the mouse action that must be performed over the notify icon to show a popup with PopupContent.

Declaration
public MouseActivationEvent PopupActivationMouseEvent { get; set; }
Property Value
MouseActivationEvent

PopupCloseMode

Gets or sets the mode in which the popup closes.

Declaration
public PopupCloseMode PopupCloseMode { get; set; }
Property Value
PopupCloseMode

PopupContent

Gets or sets the control that is set as the content of the popup which the notify icon shows when the PopupActivationMouseEvent is performed.

Declaration
public Control PopupContent { get; set; }
Property Value
System.Windows.Forms.Control

PopupHideAnimation

Gets or sets the animation played when hiding the popup.

Declaration
public NotifyIconAnimationType PopupHideAnimation { get; set; }
Property Value
NotifyIconAnimationType

PopupShowAnimation

Gets or sets the animation played when opening the popup.

Declaration
public NotifyIconAnimationType PopupShowAnimation { get; set; }
Property Value
NotifyIconAnimationType

PopupShowDuration

Gets or sets the amount of time in milliseconds after which the popup will begin to close automatically.

Declaration
public int PopupShowDuration { get; set; }
Property Value
System.Int32

ShowTrayIcon

Gets or sets whether the icon is visible in the notification area.

Declaration
public bool ShowTrayIcon { get; set; }
Property Value
System.Boolean

ThemeName

Gets or sets theme name.

Declaration
public string ThemeName { get; set; }
Property Value
System.String

TooltipText

Gets or sets the tooltip that will be shown when the mouse hovers over the notify icon.

Declaration
public string TooltipText { get; set; }
Property Value
System.String

TrayContextMenu

Gets or sets the context menu to be shown when the ContextMenuActivationMouseEvent is performed.

Declaration
public RadContextMenu TrayContextMenu { get; set; }
Property Value
RadContextMenu

TrayIcon

Gets or sets the icon to be displayed in the windows notification area.

Declaration
public Icon TrayIcon { get; set; }
Property Value
System.Drawing.Icon

Methods

AddIcon()

Adds the notify icon to the Windows notification area.

Declaration
public void AddIcon()

Dispose(Boolean)

Disposes any resources this instance holds.

Declaration
protected override void Dispose(bool disposing)
Parameters
System.Boolean disposing

Finalize()

Releases unmanaged resources and performs other cleanup operations before the RadNotifyIcon is reclaimed by garbage collection.

Declaration
protected override void Finalize()

GetUserNotificationState()

Checks the state of the computer for the current user to determine whether sending a notification is appropriate.

Declaration
public static UserNotificationState GetUserNotificationState()
Returns
UserNotificationState

The state of the computer for the current user.

HideBalloonTip()

Hides the balloon tip.

Declaration
public void HideBalloonTip()

HidePopup()

Hides the popup.

Declaration
public void HidePopup()

OnBalloonTipClicked()

Fires the BalloonTipClicked event.

Declaration
protected virtual void OnBalloonTipClicked()

OnBalloonTipClosed()

Fires the BalloonTipClosed event.

Declaration
protected virtual void OnBalloonTipClosed()

OnBalloonTipShown()

Fires the BalloonTipShown event.

Declaration
protected virtual void OnBalloonTipShown()

OnPopupOpened(EventArgs)

Fires the PopupOpened event.

Declaration
protected virtual void OnPopupOpened(EventArgs e)
Parameters
System.EventArgs e

The event arguments.

OnPopupOpening(NotifyIconPopupOpeningEventArgs)

Fires the PopupOpening event.

Declaration
protected virtual void OnPopupOpening(NotifyIconPopupOpeningEventArgs e)
Parameters
NotifyIconPopupOpeningEventArgs e

The event arguments.

OnSelected(NotifyIconSelectedEventArgs)

Fires the Selected event.

Declaration
protected virtual void OnSelected(NotifyIconSelectedEventArgs e)
Parameters
NotifyIconSelectedEventArgs e

The event arguments.

OnTrayContextMenuOpened(EventArgs)

Fires the TrayContextMenuOpened event.

Declaration
protected virtual void OnTrayContextMenuOpened(EventArgs e)
Parameters
System.EventArgs e

The event arguments.

OnTrayContextMenuOpening(CancelEventArgs)

Fires the TrayContextMenuOpening event.

Declaration
protected virtual void OnTrayContextMenuOpening(CancelEventArgs e)
Parameters
System.ComponentModel.CancelEventArgs e

The event arguments.

OnTrayIconMouseClick(MouseEventArgs)

Fires the TrayIconMouseClick event.

Declaration
protected virtual void OnTrayIconMouseClick(MouseEventArgs e)
Parameters
System.Windows.Forms.MouseEventArgs e

The event arguments.

OnTrayIconMouseDoubleClick(MouseEventArgs)

Fires the TrayIconMouseDoubleClick event.

Declaration
protected virtual void OnTrayIconMouseDoubleClick(MouseEventArgs e)
Parameters
System.Windows.Forms.MouseEventArgs e

The event arguments.

OnTrayIconMouseDown(MouseEventArgs)

Fires the TrayIconMouseDown event.

Declaration
protected virtual void OnTrayIconMouseDown(MouseEventArgs e)
Parameters
System.Windows.Forms.MouseEventArgs e

The event arguments.

OnTrayIconMouseMove(MouseEventArgs)

Fires the TrayIconMouseMove event.

Declaration
protected virtual void OnTrayIconMouseMove(MouseEventArgs e)
Parameters
System.Windows.Forms.MouseEventArgs e

The event arguments.

OnTrayIconMouseUp(MouseEventArgs)

Fires the TrayIconMouseUp event.

Declaration
protected virtual void OnTrayIconMouseUp(MouseEventArgs e)
Parameters
System.Windows.Forms.MouseEventArgs e

The event arguments.

RemoveIcon()

Removes the icon from the Windows notification area.

Declaration
public void RemoveIcon()

ShowBalloonTip(Int32)

Shows a balloon tip with the settings defined in the BalloonTitle, BalloonTitle and BalloonIcon properties.

Declaration
public void ShowBalloonTip(int timeout = 10)
Parameters
System.Int32 timeout

The amount of seconds to wait before the balloon auto hides. The system minimum and maximum are 10 and 30 seconds. Note this parameter has effect only in Windows 2000 and Windows XP. More information here https://docs.microsoft.com/en-us/windows/win32/api/shellapi/ns-shellapi-notifyicondataa.

ShowBalloonTip(String, String, Icon, Boolean, Int32)

Shows a balloon tip.

Declaration
public void ShowBalloonTip(string title, string text, Icon icon, bool doNotPlaySound = false, int timeout = 10)
Parameters
System.String title

The title of the balloon tip.

System.String text

The text of the balloon tip.

System.Drawing.Icon icon

The icon of the balloon tip.

System.Boolean doNotPlaySound

Whether sound should be played when showing the balloon tip.

System.Int32 timeout

The amount of seconds to wait before the balloon auto hides. The system minimum and maximum are 10 and 30 seconds. Note this parameter has effect only in Windows 2000 and Windows XP. More information here https://docs.microsoft.com/en-us/windows/win32/api/shellapi/ns-shellapi-notifyicondataa.

ShowBalloonTip(String, String, BalloonTipIcon, Boolean, Int32)

Shows a balloon tip.

Declaration
public void ShowBalloonTip(string title, string text, BalloonTipIcon icon, bool doNotPlaySound = false, int timeout = 10)
Parameters
System.String title

The title of the balloon tip.

System.String text

The text of the balloon tip.

BalloonTipIcon icon

The icon of the balloon tip.

System.Boolean doNotPlaySound

Whether sound should be played when showing the balloon tip.

System.Int32 timeout

The amount of seconds to wait before the balloon auto hides. The system minimum and maximum are 10 and 30 seconds. Note this parameter has effect only in Windows 2000 and Windows XP. More information here https://docs.microsoft.com/en-us/windows/win32/api/shellapi/ns-shellapi-notifyicondataa.

ShowPopup()

Shows the popup next to the notify icon, depending on edge of the screen where the taskbar is located.

Declaration
public void ShowPopup()

ShowPopup(Point)

Shows the popup at the provided location.

Declaration
public void ShowPopup(Point location)
Parameters
System.Drawing.Point location

The coordinates where the popup should be opened.

UpdateIcon()

Sends an update message to the notify icon.

Declaration
public void UpdateIcon()

Events

BalloonTipClicked

Occurs when the user clicks on a balloon tip.

Declaration
public event EventHandler BalloonTipClicked
Event Type
System.EventHandler

BalloonTipClosed

Occurs when a balloon tip is closed.

Declaration
public event EventHandler BalloonTipClosed
Event Type
System.EventHandler

BalloonTipShown

Occurs when a balloon tip is shown.

Declaration
public event EventHandler BalloonTipShown
Event Type
System.EventHandler

PopupOpened

Occurs when the popup of the RadNotifyIcon is opened.

Declaration
public event EventHandler PopupOpened
Event Type
System.EventHandler

PopupOpening

Occurs before the popup of the RadNotifyIcon is opened.

Declaration
public event EventHandler<NotifyIconPopupOpeningEventArgs> PopupOpening
Event Type
System.EventHandler<NotifyIconPopupOpeningEventArgs>

Selected

Occurs when the user selects a RadNotifyIcon in the Windows notification area.

Declaration
public event EventHandler<NotifyIconSelectedEventArgs> Selected
Event Type
System.EventHandler<NotifyIconSelectedEventArgs>

TrayContextMenuOpened

Occurs when the context menu of the RadNotifyIcon is opened.

Declaration
public event EventHandler TrayContextMenuOpened
Event Type
System.EventHandler

TrayContextMenuOpening

Occurs before the context menu of the RadNotifyIcon is opened.

Declaration
public event CancelEventHandler TrayContextMenuOpening
Event Type
System.ComponentModel.CancelEventHandler

TrayIconMouseClick

Occurs when the user clicks on the notify icon.

Declaration
public event MouseEventHandler TrayIconMouseClick
Event Type
System.Windows.Forms.MouseEventHandler

TrayIconMouseDoubleClick

Occurs when the user double clicks on the notify icon.

Declaration
public event MouseEventHandler TrayIconMouseDoubleClick
Event Type
System.Windows.Forms.MouseEventHandler

TrayIconMouseDown

Occurs when the user presses a mouse button over the notify icon.

Declaration
public event MouseEventHandler TrayIconMouseDown
Event Type
System.Windows.Forms.MouseEventHandler

TrayIconMouseMove

Occurs when the user moves the mouse over the notify icon.

Declaration
public event MouseEventHandler TrayIconMouseMove
Event Type
System.Windows.Forms.MouseEventHandler

TrayIconMouseUp

Occurs when the user releases a mouse button over the notify icon.

Declaration
public event MouseEventHandler TrayIconMouseUp
Event Type
System.Windows.Forms.MouseEventHandler

Extension Methods

SvgExtentions.Traverse<T>(T, Func<T, IEnumerable<T>>)
SvgExtentions.TraverseDepthFirst<T>(T, Func<T, IEnumerable<T>>)
Getting Started
  • Install Now
  • Demos
  • Step-by-Step Tutorial
  • Sample Applications
  • SDK Samples
  • Visual Studio Extensions
Support Resources
  • Code Library
  • Knowledge Base
  • Videos
Community
  • Forums
  • Blogs
  • Feedback Portal
  • Document Processing Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.