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
5
votes
3 answers

How to find the location of the icon in the system tray

I have a NotifyIcon control that appears in the system tray. How can I find the location (x, y) of the icon on the screen? Thanks
AngryHacker
  • 59,598
  • 102
  • 325
  • 594
5
votes
4 answers

Prevent ToolStripMenuItems from jumping to second screen

I have an application that is mostly operated through NotifyIcon's ContextMenuStrip There are multiple levels of ToolStripMenuItems and the user can go through them. The problem is, that when the user has two screen, the MenuItems jump to second…
atlanteh
  • 5,615
  • 2
  • 33
  • 54
5
votes
3 answers

How can I make Visual Studio use my updated icon for my NotifyIcon?

I am totally stumped by this issue and I do not know what to do. I have created a simple C# Windows Form application using Visual Studio 2012 Premium. I have a small program that starts up and creates a NotifyIcon in the system tray. On click of…
user3487286
  • 127
  • 2
  • 9
5
votes
2 answers

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 integer value every 2 seconds. I need to display…
Krishna Thota
  • 6,646
  • 14
  • 54
  • 79
5
votes
4 answers

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 implement the ballon feature (Balloon…
Regis
  • 375
  • 4
  • 16
5
votes
2 answers

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). So I change the setting for the app to "always…
akevan
  • 691
  • 1
  • 9
  • 21
4
votes
1 answer

C# NofityIcon balloon tip doesn't always go away within specified time

I use a NotifyIcon in a rather simple fashion. public class Popup { ... private static NotifyIcon ni; static Popup() { ni = new NotifyIcon(); ni.Icon = SystemIcons.Information; } public Popup(string…
BuZz
  • 16,318
  • 31
  • 86
  • 141
4
votes
2 answers

Position form above the clicked notify icon

Is there a way to position a form just above the clicked Notify Icon in windows 7 and windows Vista?
blejzz
  • 3,349
  • 4
  • 39
  • 60
4
votes
1 answer

My program's notifyicon get duplicated when using Form.Show() to call a preloader form

EDIT: Silly me. My preloader actually shows up all the time even with simple Loading.Show(); but it just was below my web browser. I already posted a solution below. Please check it up if you interested. My program has no form but shows as a…
4
votes
1 answer

Is there an easy way to add a checkbox to a balloon tip?

Is there an easy way to add a checkbox (or any other custom control, for that matter) inside a balloon tip? I want to provide the user with an optional checkbox that reads "Never show this message again". The balloon tip in question is shown using…
Vegard Larsen
  • 12,827
  • 14
  • 59
  • 102
4
votes
0 answers

notifyIcon.BalloonTipClicked firing when tray icon is clicked

I have a tray app backed by a NotifyIcon. It sometimes fires toast notifications via notifyIcon.ShowBallonTip(). It is running on Windows 10 1607. I'm subscribed to the following two events: notifyIcon.MouseUp +=…
Rafael
  • 71
  • 1
  • 3
4
votes
1 answer

How can one get a ContextMenuStrip to show on left click of a NotifyIcon?

I have a ContextMenuStrip assigned to a NotifyIcon and this works with the right click fine. How may I wire up the mouse-click event to tell the NotifyIcon to show its ContextMenuStrip? private void taskbarIcon_MouseClick(object sender,…
hydrogen
  • 2,878
  • 21
  • 20
4
votes
0 answers

WPF. How to make binding context menu item for NotifyIcon (Windows Forms)

Here is my code. I need to make binding properties "Checked" in one element of the context menu. The application is WPF, but I use NotifyIcon of Windows Forms. // Create NotifyIcon var notifyIcon = new…
Mikhail
  • 2,612
  • 3
  • 22
  • 37
4
votes
2 answers

How to integrate WPF NotifyIcon with Caliburn.Micro

I was wondering how to integrate NotifyIcon with Caliburn.Micro. I'm trying to integrate with Caliburn using low level Caliburn APIs. Here are the classes: ITrayIconManager public interface ITrayIconManager { ITrayIcon…
JobaDiniz
  • 862
  • 1
  • 14
  • 32
4
votes
3 answers

How can I make a menu for notifyicon?

So.. i've googled around and everywhere i've seen different ways of creating this.. But so far, i haven't managed to make a single working menu. So i wanted to ask, how does one create a notifyIcon menu?.. (prefered explained in details, as i'm…
Komari Kamikita
  • 185
  • 1
  • 1
  • 8