Reputation: 61606
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.
Upvotes: 1
Views: 663
Reputation: 22911
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:
Upvotes: 2