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

Issues saving Bitmap for system tray icon C#

I am trying to edit a bitmap and use it as the icon for my System Tray Icon. I want to know if there is a way I can edit it and use it without having to save it as a local file as this seems messy and leaves a .ico file in the root directory of…
Gunwalloe
  • 1
  • 1
0
votes
1 answer

Using multiple Projects in NotifyIcon Application

So I have the weirdest of all problems. I just wanted to write a simple c# WinForms tool for personal use when I ran into it. I`ll begin at the very start, the real question will be at the very end. So I made a NotifyIcon Application. This is very…
0
votes
2 answers

Change background color of notification text of NotifyIcon Component in c#

i am using NotifyIcon in my desktop .net application in c#. i can change the icon but can't change the background color of the notification text. i searched on web, couldn't find anything helpful regarding this or maybe i skipped if is there any.…
Anupam Roy
  • 1,654
  • 2
  • 18
  • 25
0
votes
0 answers

NotifyIcon DoubleClick events aren't fired

Currently working on notifyIcon, I followed this tutorial in order to set Minimize to Tray option. http://www.codeproject.com/Articles/27599/Minimize-window-to-system-tray So when the user click on Window minimize button, it makes the tray icon…
Louisbob
  • 860
  • 3
  • 9
  • 22
0
votes
0 answers

Hide all open forms including DialogForms

How can I hide all open forms, including all open dialog forms to NotifyIcon? I currently hide the main form using Me.Hide() NotifyIcon.Visible = True NotifyIcon.ShowBalloonTip(1, "WinVault", "You've been lockout due to…
Aron Jay
  • 155
  • 5
  • 11
0
votes
1 answer

ProcessCmdKey after closing application

I have this function for the ProcessCmdKey that will run some buttons if I will press Ctrl+A, or Ctrl+N, or Ctrl+S. protected override bool ProcessCmdKey(ref Message msg, Keys keyData) { if (keyData == (Keys.Control | Keys.N)) { …
AnDr3yy
  • 239
  • 2
  • 5
  • 16
0
votes
1 answer

How to have 1 notifyIcon over multiple instances of an application?

I have created a notifyIcon in my C# application and I am happy with it. Basically, my application is a wrapper for other applications (notepad, firefox, etc). So right now, when I run my app ("MyApp firefox.exe") it loads firefox and when I mouse…
Tizz
  • 820
  • 1
  • 15
  • 31
0
votes
1 answer

Event handler for a ContextMenuStrip of NotifyIcon in C#

I want to write a click event for a ContextMenuStrip. I have linked this context menu strip to a NotifyIcon. How can I do that? This is the code I have used: ContextMenuStrip checkers_contact_menu = new…
Niranjan Sonachalam
  • 1,545
  • 1
  • 20
  • 29
0
votes
0 answers

Notify Icon mouse move has an empty location

I am using a notify icon control in C# with the .NET Framework 3.5 My goal is to detect when the mouse is hovering over the tray icon of my application. The issue is that there are no mouseenter, mouseleave, or mousehover events for this version.…
John
  • 5,942
  • 3
  • 42
  • 79
-1
votes
0 answers

How can I make my Maui Blazor app show up in system icons taskbar when I close it?

My problem is that I can't see my app icon on the system taskbar. I need when I close the window to show the icon on the Windows taskbar as an icon. Using the icon open the app and when I open the app, show the latest status in the app... and no…
-1
votes
2 answers

Minimize form to system tray

I want to hide my form while keeping my application running in background. I've used notifyIcon and it remains always visible. I've used "this.Hide();" to hide my form but unfortunately my application gets close (no exception). I am also using…
Muhammad Ali Dildar
  • 1,467
  • 6
  • 24
  • 35
-1
votes
2 answers

WPF Update UI From Background Thread

I know similar questions have been asked many times but I have not been able to find anything that works in this situation. I have an application that runs minimized to the taskbar using wpf-notifyicon. The main window opens, authenticates and is…
mack
  • 2,715
  • 8
  • 40
  • 68
-1
votes
1 answer

notifyIcon always visible even if application is closed

Is there any way to run the application on the background even if the application/form is closed. All i can do now is just minimize it. private void Form2_Resize(object sender, EventArgs e) { if (WindowState ==…
discable10
  • 37
  • 7
-1
votes
1 answer

NotifyIcon hides app from taskbar. How to avoid that?

I have an application that goes to system tray when I minimize it. I created a notify icon to handle some secondary options for the app using right click from mouse using that notify icon. But I would like the application not to disappear from task…
Sonhja
  • 8,230
  • 20
  • 73
  • 131
-1
votes
2 answers

Notify icons on form load

I've a number of forms in my C# application. I am using notifyIcon only on the very first form. The problem I am facing is that when I load other forms (at run-time) they also create notifyIcons in system tray. Note: Only two forms are causing this…
Muhammad Ali
  • 139
  • 1
  • 1
  • 6
1 2 3
24
25