Questions tagged [notifyicon]

Specifies a component that creates an icon in the notification area. This class cannot be inherited

Specifies a component that creates an icon in the notification area. This class cannot be inherited

361 questions
0
votes
1 answer

Problem with NotifyIcon: "Hide Inactive Icons" not working

I am using C# (.NET 3.5) and use the NotifyIcon to enable "Minimize to Systray". Everything is working great, except that the shell registers the systray icon with the title "No title" when you look at the start menu properties -> "Hide Inactive…
Stefan Koell
  • 1,476
  • 3
  • 15
  • 25
0
votes
1 answer

How to open url after BalloonTipClicked Event

How can i open an url after user clicked on NotifyIcon? this is my code public void ShowNotofication(string messages, string url) { var notification = new System.Windows.Forms.NotifyIcon() { Visible = true, Icon =…
farhad
  • 55
  • 1
  • 7
0
votes
1 answer

How to add to Click event to Context Menu buttons in WPF NotifyIcon?

I am making an app that has a notify icon in WPF. I am using HardCodet NotifyIcon. They do have a tutorial on code project and it is pretty useful but it does not have any explanation on how to set up OnClick or Click event when the buttons in the…
Garvit13
  • 5
  • 2
0
votes
1 answer

Global hotkey for windowless app with NotifyIcon

I have a windowless winforms application that uses an ApplicationContext to setup a NotifyIcon (TrayIcon) with which the user can control. But I also want to use hotkeys. I found some good approaches using RegisterHotkey (eg. Global hotkeys in…
Fox
  • 566
  • 4
  • 14
0
votes
1 answer

Detect right mouse click on NotifyIcon in WPF

I´m trying to open a small WPF application when right clicking on a NotifyIcon. I added the NotifyIcon by adding the System.Windows.Forms to the resources and this lines: System.Windows.Forms.NotifyIcon ni = new…
SideSky
  • 313
  • 3
  • 15
0
votes
1 answer

Why is the NotifyIcon duplicating itself on icon change

I have written a small application which mainly runs in the system tray. The app shows a notifyicon at startup, which works fine. If I start an action from the ContextMenuStrip, the notifyicon should change its icon and change back to original when…
max07
  • 141
  • 2
  • 16
0
votes
0 answers

Control all runned applications from one notifyIcon menu

I have an application that runs 8-10 times at the same time. When this application runned for the first time, I created a notifyIcon1 in the system tray, and not in the next runs. I also added a menu to this notifyIcon1. However, the menu is active…
Quince
  • 144
  • 11
0
votes
1 answer

Unable to Dispose Control (NotifyIcon)

In my homework application; I am required to create an application where I am also required to use a NotifyIcon. I'm facing a problem where I cannot understand why the Code never reaches the Dispose Event. I'm implementing "IDisposable"; (in order…
user12761381
0
votes
1 answer

Use the Segoe MDL2 Assets font as an icon for NotifyIcon

Is it possible to use the Segoe MDL2 Assets font as an icon for a SystemTray app (NotifyIcon)? I tried using an answer from this question but it did not work:
Sanchit
  • 37
  • 5
0
votes
0 answers

How to get screen coordinates of NotifyIcon in C# (Windows 10)

Is it possible to get the coordinates of any NotifyIcon in Win10? I am trying to build a WPF application using C# and its screen position depends on these coordinates.
Shoshi
  • 1
0
votes
0 answers

Open Windows Form on click of Tray Icon in windows Service

I want to create windows service along with Notify icon. After install of Windows service notify icon will show in notification bar till windows service not terminate. On Click of Notify Icon Open Windows Form. but the problem is that -> Notify Icon…
Jyoti
  • 11
  • 5
0
votes
1 answer

Right clicking notifyicon in system tray does not show contextmenu

I am trying to use a contextmenustrip with a notifyicon. When I right click on the notifyicon, the contextmenustrip does not show. I haven't found any solutions on the web. Here is my code: public class Program { static ContextMenuStrip…
user6336284
0
votes
0 answers

When I minimize to notifyicon and after that maximize it for 2-3 times, Form freezes and sometime gives an error

When I minimize my form application and maximize it from notifyicon, When I repeat minimize and maximize action over and over again, after 2-3 times , My froms is freezing. There is no problem till I add switch case block but now when I remove the…
0
votes
2 answers

TAPI 3.0 events non raising

I'm a noob to C#, so please sorry me for bad coding. I'm trying to make this application that while a call is happening, it gets the phone number of the caller and it will use it to take information from a CRM, and after that, it creates a Balloon…
E. Peracchia
  • 113
  • 1
  • 12
0
votes
0 answers

C# NotifyIcon tooltip not showing (Windows 10)

I'm having trouble getting my ShowBalloonTip() to work on Windows 10. My NotifyIcon is set up as following: I don't think I'm missing anything there. I try to show my tooltip using NotificationObj.ShowBalloonTip(1000); and nothing appears to…
Metoniem
  • 239
  • 2
  • 15