About 126,000 results
Open links in new tab
  1. NotifyIcon Class (System.Windows.Forms) | Microsoft Learn

    The following code example demonstrates using the NotifyIcon class to display an icon for an application in the notification area. The example demonstrates setting the Icon, ContextMenu, Text, and Visible properties and handling the DoubleClick event.

  2. NotifyIcon.Text Property (System.Windows.Forms) | Microsoft Learn

    The following code example demonstrates using the NotifyIcon class to display an icon for an application in the notification area. The example demonstrates setting the Icon, ContextMenu, Text, and Visible properties and handling the DoubleClick event.

  3. Display Text over notifyicon icon in windows application

    Jun 16, 2017 · Try NotifyIcon.ShowBalloonTip method: Displays a balloon tip with the specified title, text, and icon in the taskbar for the specified time period. notifyIcon1.Visible = true; notifyIcon1.ShowBalloonTip(20000, "Information", "This is the text", ToolTipIcon.Info );

  4. NotifyIcon Component Overview - Windows Forms .NET Framework

    Aug 18, 2022 · This article presents an overview of the NotifyIcon component in Windows Forms, which is used to display icons for processes that run in the background.

  5. c# - How do I get the value of NotifyIcon.Icon property ...

    Feb 14, 2021 · To track the status you can use Tag property of NotifyIcon or a member field of the Form. But do not look at the Icon property as a status indicator. Just in case you are interested to compare two Icon objects to see whether they are same icon, you can use the following method:

  6. c# - To display Text On Notify Icon Mouse Over - Stack Overflow

    Jun 27, 2012 · How to display text on mouseover of notifyicon in c#.Since the ShowBalloonTip shows with respect to the timeout, how can i display the text on mouseover of the Notify Icon? .Text is rendered as a tooltip when you hover over the icon. Start asking to get answers.

  7. Notify Icon In C# - C# Corner

    A NotifyIcon component is used to add system tray notification functionality to a Windows Forms application. When an application is run, an icon will be added to the system tray and we can add double click or menus to the icon to take some actions.

  8. C#.WinForms - NotifyIcon - Dot Net Perls

    Dec 24, 2024 · With the NotifyIcon control in Windows Forms, you can add an icon of your own in the system tray. You can then hook your custom C# code up to it.

  9. How to Show NotifyIcon in Windows Forms Application Using C#

    In this article I will explain how to show a NotifyIcon in the status notification area of the taskbar for a Windows Forms application using C#.

  10. vb.net - How to use NotifyIcon - Stack Overflow

    Oct 17, 2017 · How to use the Windows Forms NotifyIcon component in Visual Basic .NET to display an icon for an application in the notification area –

Refresh