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

Left click not working on notifyicon with contextmenustrip

I have a tray application and I would like to open the ContextMenuStrip if I click on the tray logo. This is my code: private void notifyIcon1_MouseClick(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Left) …
Silve2611
  • 2,198
  • 2
  • 34
  • 55
0
votes
1 answer

wxPython Changing Taskbar Icon During Runtime Windows

I have main.py and appIndicator.py files. I start appIndicator.py(which use wxPython library) from main.py as subprocess. When I have notificaion, I have to change appIndicator icon. However, I couldn't find any way to do that so when I need to…
furkantokac
  • 311
  • 4
  • 17
0
votes
1 answer

Can't get NotifyIcon to load high DPI resource for DPI scaling >= 150%

My application is DPI-Aware, here's the full manifest:
rfgamaral
  • 16,546
  • 57
  • 163
  • 275
0
votes
1 answer

Show System Tray Notify Message for the current logged in user?

I have a Windows Desktop Application that needs to display a system Tray notification message for the current logged in user although the application may have been run by another user that previously logged in to windows and started the…
TamerM
  • 722
  • 7
  • 25
0
votes
1 answer

How to solve WPF Popup Notify in taskbar to rightbottom of the screen in c#?

I stuck on WPF popup notifyicon in taskbar,it does not show the popup notification on the screen. Am tried the below code in c# public void report() { //Here am selected the value from database and stored it in "str" ,upto //this working…
NvadeepKumar
  • 25
  • 1
  • 7
0
votes
1 answer

wpf notifyicon context menu not centered on tray icon at 100% dpi

I'm using the wpf notifyicon (http://www.hardcodet.net/wpf-notifyicon) When my laptop is at 100% dpi scaling, the left side of the context menu is centred on the tray icon, as expected. When the laptop isn't at 100%, the context menu is pushed to…
arbitrary
  • 103
  • 9
0
votes
1 answer

How to hide a window using another thread?

I've create a WPF application with NotifyIcon, and I use this.Hide() to make it minimized, but now I hope it could be minimized once it had been executed, so I invoke this.Hide() in the method MainWindow_Loaded, but once I start the app, the content…
Alanight
  • 353
  • 2
  • 8
  • 23
0
votes
0 answers

NotifyIcon is not shown when Windows Service is installed

I have Created a Windows Service coded same as below. The Service works great but the Problem only is NotifyIcon is not Shown on WindowsTray. OnStart service I have called Timer and timer_Tick Event with INBOX and Sent is Called. When I debug the…
Puneet_2696717
  • 221
  • 6
  • 14
0
votes
1 answer

C++ CLI NotifyIcon Show Balloon

C++/CLR Visual Studio I am using a NotifyIcon which is initialized and is showed with the correct icon and text when I launch my application. But I want to display a Balloon to the user. This is however not showing up. notIcon->BalloonTipText =…
Achille Depla
  • 97
  • 1
  • 10
0
votes
2 answers

How to make a form visible by click in its windows tray icon

In somewhere of this page I read that the best way to "override" the minimize method is to use onResize() event. I've done it and it works! I've coded that when the form is minimized it turns no visible and put an icon in the windows tray. As yet…
Drumnbass
  • 867
  • 1
  • 14
  • 35
0
votes
1 answer

How can use WPF NotifyIcon

I try to use WPF Notify icon http://www.codeproject.com/Articles/36468/WPF-NotifyIcon. I create a new wpf project, I import dll from the sample project and then I copy the xaml part and code. XAML:
pds
  • 1
  • 3
0
votes
0 answers

Show tray icon - where to get resource from?

I'm not very familar with WinAPI programming, so that's more or les a beginners question. I'm currently porting a plain console-application to Windows. It does use only some socket functions and don't has any GUI, so this is an easy thing. To hide…
Elmi
  • 5,899
  • 15
  • 72
  • 143
0
votes
2 answers

WPF NotifyIcon Balloon not showing up

Okay guys, quite new to C# but I'm getting on with it just fine. I've got an application minimised to the system tray and I'm using WPF NotifyIcon to do this. I'm trying to use the built in bubble tip feature. Whilst I've got no errors, it just…
Tom Wilson
  • 253
  • 1
  • 7
  • 15
0
votes
1 answer

WM_DRAWCLIPBOARD stops firing after form is opened

I am using WndProc and WM_DRAWCLIPBOARD to monitor the Windows clipboard and save text and images copied. It's working well except for one scenario. I am using NotifyIcon and have the application docked to the notification area by default…
Paul
  • 1,375
  • 2
  • 21
  • 55
0
votes
1 answer

The name 'notifyIcon1' does not exist in the current context

Im new to c#, and trying to write code w/o vs. i am trying to build a system tray app that will change the notifyIcon at runtime. I read a few tutorials on the topic, and wrote the following code, but i am getting these errors, and cannot get…
user3931311