Search code examples
c#.netnotifyicon

How to set the footer of Windows notification balloon?


I have the following code that displays the Notification balloon of the NotifyIcon class:

var appSysTray = new NotifyIcon();
appSysTray.BalloonTipTitle = "Eye of Sauron";
appSysTray.BalloonTipText = "Unable to connect to the ...";
appSysTray.ShowBalloonTip(5000);

And the notification is displayed. One thing that I can't seem to control is the footer of the notification. How do I set that? Right now it seems to be the name of the assembly.

enter image description here


Solution

  • The footer of the notification title, is related to the title of your program (Project Properties => Application => Assembly Information => Title). You can find this in the project properties window: