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

NotifyIcon Context Menu Slows Down

So, I have a [.NET] program that implements a NotifyIcon that persists in the Notification Tray in Windows for the entire time that the program runs. When I first execute the program, and for a small time afterwards, the NotifyIcon and associated…
SmithPlatts
  • 773
  • 7
  • 20
0
votes
0 answers

WPF App doesn't run on Tablet

I wrote a simple wpf application which handles a TCPIP and a Serial communication. At the first version of the App I used a "GUI" with a connect button and so on. This version was running on the Tablet. The Tablet is a ThinkPad with Windows 8. The…
gabs
  • 53
  • 1
  • 6
0
votes
1 answer

Delphi7: How to get icon from ImageList with blend color gray

All methods blend with system highlight blue color. ImageList1.BlendColor := clGray; ImageList1.DrawingStyle := dsSelected; ImageList1.GetIcon(0, icon); ImageList1.GetIcon(0, icon, dsSelected, itImage); icon.handle :=…
Boontawee Home
  • 935
  • 7
  • 15
0
votes
2 answers

C# - NotifyIcon if textbox.text = "hello"

I want to show a notifyicon if for this code: if (textbox.text == "hello"); Anyone have an idea on how i can do this?
0
votes
0 answers

WPF notify icon databinding not working

I am using wpf notifyicon from this project: Codeproject link I am having an issue while binding selectedItem of a listbox in popup with the viewmodel. Also, the tootip text background is black. please help me. i m having great trouble with the…
Victor Mukherjee
  • 10,487
  • 16
  • 54
  • 97
0
votes
1 answer

BackgroundWorker blocking NotifyIcon's ContextMenu

I have a WinForms app with the following (skeleton) code: namespace MyTrayApp { public class SysTrayApp : Form { [STAThread] public static void Main() { try { SysTrayApp app =…
kevlar1818
  • 3,055
  • 6
  • 29
  • 43
0
votes
1 answer

Use a timer to update contents of Notifyicon text

I am having issues updating the text in a tooltip for a system tray application. I have a timer updating several strings, but it will not update the notifyicon text. Here is what I have tried. //This is in my main System.Timers.Timer aTimer =…
Dr-ZoidBerg
  • 41
  • 3
  • 10
0
votes
1 answer

Notify icon working fine in windows XP but not in windows server 2003

I have an application in which i am using notifyicon.The application is meant to run at windows startup.The application is getting started in both the OS as i can see the process in task manager but in windows server 2003 the notify icon is not…
0
votes
1 answer

Are fields of a type the same in different Language Operating System

I am creating an application with support for multilingual operating system . At one place in the application I am using following line of code. Type t = typeof(System.Windows.Forms.NotifyIcon); BindingFlags hidden = BindingFlags.NonPublic |…
Gaurav
  • 113
  • 6
0
votes
0 answers

ShowCustomeBalloon --> ArgumentOutOfRangeException

i wrote the following code to display a custom Balloon. The Balloon works. It is shown 5 seconds before it disappears. But then it throws an Exceptioon which i can't catch... and i dont unterstand why it is thrown. String title = "Trelp Balloon…
Laokoon
  • 1,241
  • 4
  • 24
  • 47
0
votes
3 answers

c# reshow window by click on notifyicon

I'm new with c# but know c++ and c, my problem is that I can't get my form to show up again after it got minimized to the system tray. That's the code I used to hide it: protected override void OnResize(EventArgs e) { …
0
votes
1 answer

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 tool tip control. Whenever the application is idle…
Ashish Rathore
  • 2,546
  • 9
  • 55
  • 91
0
votes
2 answers

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 = FormWindowState.Minimized; } private void…
Connor
  • 657
  • 1
  • 7
  • 23
0
votes
1 answer

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 lines of the given message. Can any one tell me is…
Ashish Rathore
  • 2,546
  • 9
  • 55
  • 91
0
votes
1 answer

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 form will be displayed for a short period. So…
topherg
  • 4,203
  • 4
  • 37
  • 72