C# - NotifyIcon Kullanımı
// nesneyi oluştur
NotifyIcon trayIcon = new NotifyIcon();
// sağ alt köşede görünecek olan simgeyi belirle
trayIcon.Icon = new Icon("C:\\trayIcon.ico");
// mouse ile simgenin üzerine gelindiğince belirecek metin
trayIcon.Text = "Yeni mesaj bildirici";
// simgeye tıklandığında olup bitecekler
trayIcon.MouseClick += delegate {
MessageBox.Show("YILDIRIM!");
};
// simgeyi görünür hale getir
trayIcon.Visible = true;
// yeni bir baloncuk göstermek için
trayIcon.ShowBalloonTip(1, "Bilgi", "Yeni bir mesaj var!", ToolTipIcon.Info);