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

Modify the behaviour of a NotifyIcon with via a 3rd party application

I've always been curious to see if I can show, hide or change a NotifyIcon created by another application via a C# application. Could someone please post an example on how to do this? :)
RodgerB
  • 8,608
  • 9
  • 36
  • 47
0
votes
1 answer

Changing size of Notify Icon

As we know when we use notifyicon control in c# and place it in systemtray and it is displayed, windows overrides its size and make it 16*16 so can we somehow change its size? make it little bigger like system "date and time" display or like "input…
Aniket Bhansali
  • 630
  • 12
  • 33
0
votes
2 answers

How to show the notify icon in taskbar for windows 7?

I implement a notify icon for my application by call Shell_NotifyIcon. In the default, the notify icon display in the notify icon area instead of task bar in windows 7. If the user want to show the notify icon in the task bar, he/she need to open…
yw5643
  • 189
  • 1
  • 12
0
votes
1 answer

NotifyIcon not firing double-click event

I have a double click event for a notify icon that will bring up my main form. The double click event isnt firing. Even if I put a breakpoint in the code it never gets executed. Here is what I have so far: Private Sub Form1_FormClosing(ByVal…
Sean P
  • 949
  • 4
  • 22
  • 41
0
votes
3 answers

Minimize to system tray

i was following the instruction on page but then, there's no icon attached for the application, so after the form is hidden, i cannot reshow the form, since there's no icon on the system tray, how do i resolve this ? here is my code private void…
Cignitor
  • 891
  • 3
  • 16
  • 36
0
votes
1 answer

Show notification Form at NotifyIcon's position as Dropbox

I am writting an application that uses NotifyIcon in C#. I want when user clicks on the NotifyIcon on the system tray (bottom-right of the screen) a notification form (this is not the mainform, it's only a minor form that is used to show…
khaimaitien
  • 51
  • 1
  • 7
0
votes
1 answer

how to set iconBadge in BB10 webworks

When we receive Push Notifications in BB10 webworks application i am getting splat icon on MY Application home screen icon but How to set IconBadge with number of unread messages.
0
votes
1 answer

Reference a variable form with generated ContextMenuStrip in VB.Net

I have a number of forms in a project that appear depending on who uses the application. What I am trying to do is have a ContextMenuStrip (that runs on a NotifyIcon) that adds the forms accessible to the ContextMenuStrip, so that you can select…
bmgh1985
  • 779
  • 1
  • 14
  • 38
0
votes
2 answers

WPF NotifyIcon problems

Hi i have some parser error when im trying to add icon to NotifyIcon. This one works fine: System.Windows.Forms.NotifyIcon ni = new System.Windows.Forms.NotifyIcon(); ni.Icon = new System.Drawing.Icon("C:\\Users\\Daniel\\Documents\\Visual…
Finchsize
  • 935
  • 2
  • 17
  • 34
0
votes
1 answer

Making a Windows 7 style pop up for a NotifyIcon

How do I make a Windows 7 style pop up for a NotifyIcon? I'm talking about the type of pop up you get when you click the Wifi or battery icon in the system tray. Like the screenshot below. I'm guessing it's part of the Windows 7 API Code Pack but…
Sega dude
  • 1,103
  • 3
  • 12
  • 29
0
votes
0 answers

NotifyIconWpf how to run a method on click of notification.

so what i am trying to make is a program when minimized will go to system tray, and then apon double clicking the icon in the system try the program will reopen up its window. now the oroblem i am running in to is in the xaml at it says "the name…
hurnhu
  • 888
  • 2
  • 11
  • 30
0
votes
0 answers

Problems with VB Notify Icon

Okay I know this may sound like a newb question, but I am banging my head against the wall trying to figure out why this code won't work. NotifyIcon1.ShowBalloonTip(5000, "title", "text", ToolTipIcon.Info) That code should show a balloon…
slister
  • 769
  • 1
  • 13
  • 29
0
votes
2 answers

Use a NotifyIcon between two forms in C#

I plan to use this method to display a notify icon so it can be accessed between the main form and child forms (found from another SO post) public partial class MainForm : Form { public MainForm() { InitializeComponent(); …
Kairan
  • 5,342
  • 27
  • 65
  • 104
0
votes
0 answers

Simple Taskbar NotifyIcon

I have a software that needs to trigger a little popup image by the taskbar. I have found some classes to help my cause, however, they're too complex and I wanted to ask here first if there's a better option for my scenario. This is what I found:…
Ilyas Serter
  • 810
  • 1
  • 8
  • 12
0
votes
0 answers

Screen Saver hack project gone bad user32.dll screensaver timeout issue

Very simple project, Win7, VS2012, Winforms. Popup a warning window 1 minute before a screensaver engages to inform the user they will be locked out soon. However everytime I pop the window using the code below, the screensaver timeout is reset…
ScottM
  • 15
  • 5