AngryHacker
AngryHacker

Reputation: 61606

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

Upvotes: 1

Views: 663

Answers (1)

Blue
Blue

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

Related Questions