Click here to Skip to main content
15,891,633 members
Please Sign up or sign in to vote.
1.11/5 (2 votes)
See more:
All I need is to put my own edited image for popup notifier in C# visual studio me through?
Posted
Comments
ChrisCreateBoss 12-Feb-15 23:51pm    
With popup notifier you are refering to a Balloon Notification(the default windows balloon popup that typically appear in the right corner of the screen ), Am I right?
Satish kumar Vadlavalli 13-Feb-15 0:48am    
<pre lang="cs">notifyIcon1.Visible = true;
notifyIcon1.Icon = SystemIcons.Exclamation; //here you can use your own icon I think
notifyIcon1.BalloonTipTitle = "Balloon Tip Title";
notifyIcon1.BalloonTipText = "Balloon Tip Text.";
notifyIcon1.BalloonTipIcon = ToolTipIcon.Error;
notifyIcon1.ShowBalloonTip(1000);</pre>

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900