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

learn more… | top users | synonyms

0
votes
2answers
31 views

How to create a NotifyIcon from a BitmapImage?

I have a resource item (a png file) in my resource dictionary wich I'm using it in several places. Now I want to use it as application's NotifyIcon. But I don't know how to do this. Have you any idea ...
0
votes
0answers
6 views

Change icon size in tray area

Good time for all programmers. Can you explain me how I can to resize my icon in trayicon area. http://prntscr.com/15647t like date time. It's a little bit longer than simple icon. Thanks for any ...
0
votes
1answer
49 views

NotifyIcon's ContextMenu not working sometimes

I'm developing a Windows application to run in the background (for a long running process). Application shows process status by a NotifyIcon tool tip. I added a ContextMenu control to the NotifyIcon ...
0
votes
2answers
88 views

Application won't minimise to the notification bar

I still can't get this to work, nothing appears in the notification bar. This is the full code to minimise, so far: private void button6_Click(object sender, EventArgs e) { this.WindowState = ...
0
votes
0answers
40 views

Multiple notifyIcon icons in “Customize Notifications” dialog box when using Click Once

I deploy an app with Click-Once and have it automatically increase the version number each time I deploy it. I show an icon in the System Tray using the notifyIcon class. Since it's not visible by ...
0
votes
2answers
58 views

App-Icon Create an Overlayinformation (Number)?

How can I clone this behaviour (iOS) on an Android-App? Technically its definitly possible as I have an app by my own on my Androidphone - its an Email-App with a very similiar indicator on the ...
0
votes
1answer
34 views

NotifyIcon not showing complete message

I'm using a NotifyIcon for displaying some information regarding a background process-result of my C# Windows application. But sometimes it does not show the complete message. It hides some of the ...
1
vote
2answers
43 views

Returning to Window previously selected before clicking Notification Area Icon

I have built an application that has a Notification Area Icon, which when clicked brings up a form that is designed for a single click, after which the user can then return to what they where doing ...
0
votes
1answer
87 views

Creating a Notify Icon Form

I am new to C#, but I have persevered with it and have made a start on my first proper program. The program consists of a Notify Icon that exists in the Notification area, and when it is clicked, the ...
1
vote
2answers
64 views

Access a textbox declared in App.xaml (WpfNotifyIcon Tooltip) from another window

I am using WpfNotifyIcon, I have declared it as a resource like this: <Application x:Class="NotifyIconScratchPad2.App" ...
0
votes
1answer
77 views

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 ...
1
vote
2answers
58 views

How do I prevent my app from launching over and over again [duplicate]

The app I am creating includes a notify icon and it is in a way that stays active in the background (well, sort of). The problem is that when the user clicks on the icon of my app, the app will launch ...
5
votes
3answers
254 views

stop auto hiding tray notification icon

Whenever my windows forms application runs for the first time, the tray icon stays visible for about less than a minute, and then it autohides, what can i do to make it stick and not auto hide ? I ...
2
votes
1answer
71 views

application won't start on startup after adding a notifyicon

my app was working ok and it would execute on startup before. I added a notify icon and in my code,there are some places that this icon changes.I added all required icons in the root folder of my ...
0
votes
1answer
263 views

NotifyIcon remains in Tray even after application closing but disappears on Mouse Hover

There are many questions on SO asking same doubt. Solution for this is to set notifyIcon.icon = null and calling Dispose for it in FormClosing event. In my application, there is no such form but ...
2
votes
1answer
430 views

Minimizing Application to system tray using WPF ( Not using NotifyIcon )

I am finished making my application and now I want to incorporate " minimizing into the system tray feature " for it . I read up a good article minimize app to system tray . I realized that these ...
2
votes
2answers
182 views

Capture MouseHover event on ContextMenuStrip

I am using a NotifyIcon control, associated with a ContextMenuStrip to display a multi-level menu. I need to load the new branch of the submenu, when the user's mouse hovers on selected item. ...
0
votes
1answer
96 views

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. ...
0
votes
0answers
73 views

NotifyIcon ballontip not showing untill i click on notification tray - C#

I have following code: if(value > 10){ notifyIcon1.Icon = new Icon(SystemIcons.Application, 40, 40); notifyIcon1.Visible = true; ...
0
votes
1answer
218 views

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 ...
2
votes
3answers
1k views

Show a Balloon notification

I'm trying to use the below code to show a Balloon notification. I've verified that it's being executed by using breakpoints. It's also showing no errors. What should I do to debug this since it's ...
0
votes
1answer
163 views

Multiple icons open in tray bar

I am working on a Windows application, and when I run this application, there are multiple icons appearing on the tray bar: and when I mouse-over these icons, they disappear. Does anybody have any ...
0
votes
0answers
186 views

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 ...
1
vote
1answer
220 views

Adding icons to my menulist [duplicate]

Possible Duplicate: how to add icon to context menu in c# windows form application i've got a context menu attached to a task tray application. The code is as follows. private NotifyIcon ...
5
votes
2answers
238 views

How do I remove the “wrench” button on the balloon tooltip? [closed]

I want to hide the wrench button on the balloon tooltip Does anyone know how? Is it possible to disable/remove the wrench button next to the close button on the balloon tooltip in the system tray that ...
1
vote
1answer
362 views

C# NotifyIcon stays in tray after the Balloon Tip has been closed

after the Ballon Tip of my NotifyIcon has been close the icon still stays in tray. It vanishes only when I hover it with my mouse cursor. I have a class Notification.cs which has one component - ...
1
vote
3answers
110 views

How to trigger the auto-hide icon in c#?

I have an application. If the application is not being used for a certain amount if time, it should hide. When application is hidden and we mouse-over the icon, it should be restored. How can I do ...
1
vote
2answers
1k views

Display Text over notifyicon icon in windows application

I'm creating a windows application. In this application I'm using notifyicon and minimizing my application to system tray. In my code on button click, I process some thing in background and returns a ...
0
votes
1answer
162 views

How to implement notifyicon in MVVM project

I am trying to implement a notifyicon (http://www.hardcodet.net/projects/wpf-notifyicon) in MVVM project. I understand this control is meant to be used in a regular WPF project. I am wondering how to ...
0
votes
0answers
190 views

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 ...
1
vote
1answer
374 views

Add a function to contextMenu item at notifyIcon

I use an contextMenu1 and an notifyIcon1 for the app. When the app is in Tray Icon and I will press Right Click, a menu will appear. The code is this (I add only 2 items for test): ...
0
votes
1answer
129 views

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 ...
0
votes
1answer
159 views

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 ...
0
votes
0answers
211 views

Impossible to restore application hidden programmatically

I have a problem related to strange behaviour with my application and NotifyIcon. Long story short, I don't want the application to show on the taskbar and I make it invisible not to show on the ...
1
vote
0answers
494 views

asp.net notifyIcon balloon tip popup with sound

I am using asp.net notifyIcon Control for opening up Popup in status bar with asp.net windows. I also want to add sound to the popup but I am not able to add. Is there any way to add a sound, for ...
1
vote
1answer
298 views

P/Invoke Shell_NotifyIcon supporting different NOTIFYICONDATA versions

I'm trying to invoke the Shell_NotifyIcon function [1] from C#. One parameter of the function is a pointer to the NOIFYICONDATA structure [2]. This structure contains TCHAR arrays, Pointers and also ...
0
votes
0answers
65 views

Display Balloon if Value from WebClient is met

I am a total C# Novice and have recently successfully programmed a Live Chat application in PHP, AJAX, JQuery however i now need to create a very small windows app, I literally just want an icon on my ...
1
vote
0answers
167 views

WPF UserControl Hosted in Popup Window not taking focus

I'm using Philipp Sumi's Notify Icon Control, but I'm having a small issue with it, I'm displaying a custom Balloon method call _TaskBarIcon.ShowCustomBalloon(_UserControlNotification, ...
0
votes
1answer
432 views

Show window after double click in notify icon (after minimize to tray)

I want to use in my wpf aplication notify icon (with .dll library in project http://www.codeproject.com/Articles/36468/WPF-NotifyIcon). But I don't know, how to show my window (after minimize to ...
1
vote
1answer
138 views

How to change NotifyIcon's context menu in explorer.exe?

I want to extend the default Speakers notificon's (tray icon) right-click context menu with a new item. Also, I want to handle the mouseclick using C++. Illustration What I know so far I learned ...
1
vote
3answers
3k views

Notify Icon Ballon Tip Not showing in C#?

i am using this code under my form1_load notifyIcon1.Visible = true; notifyIcon1.ShowBalloonTip(5000, "Welcome", "Hello " + User, ToolTipIcon.Info); I even checked my registery and the value was ...
-1
votes
2answers
152 views

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 ...
1
vote
1answer
950 views

To display Text On Notify Icon Mouse Over

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?
1
vote
2answers
791 views

Action<> multiple parameters syntax clarification

Sometimes I can't understand the simplest things, i'm sure it's in my face, i just fail to see it. Im trying to create a delegate for a method in this simple class: public static class BalloonTip { ...
0
votes
0answers
117 views

Remove ContextMenu popup from NotifyIcon's right click

When right-clicking on a notify icon it attempt to display the ContextMenuStrip by default. Is there a good way to stop it from popping up the context menu? I ask because I have already got the ...
0
votes
0answers
552 views

Notify Icon stays in System Tray on Application Close

I have an application which runs only from the System Tray, it's only purpose is to provide the user with information via Ballon Tips. It's running well, apart from one minor annoyance. When the ...
3
votes
2answers
303 views

notification icon setting after click-once deployment

I have a click-once deployed app that uses a notification icon created using the Hardcodet WPF NotifyIcon. When I deploy it and initially install it, Windows hides the icon by default (as it should). ...
1
vote
0answers
945 views

WPF NotifyIcon - ContextMenu Position

Im using the WPF NotifyIcon from CodePlex. It works fine but what I noticed is that when compiling with .NET 4.0 the ContextMenu is always positioned above the taskbar, it's fine with .NET 3.5: .NET ...
0
votes
1answer
676 views

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 = ...
0
votes
0answers
232 views

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, ...

1 2 3 4