Seperti kata mat1t - Anda perlu menambahkan NotifyIcon ke aplikasi Anda dan kemudian menggunakan sesuatu seperti kode berikut untuk mengatur tooltip dan menu konteks:
this.notifyIcon.Text = "This is the tooltip";
this.notifyIcon.ContextMenu = new ContextMenu();
this.notifyIcon.ContextMenu.MenuItems.Add(new MenuItem("Option 1", new EventHandler(handler_method)));
Kode ini hanya menampilkan ikon di baki sistem:
this.notifyIcon.Visible = true; // Shows the notify icon in the system tray
Berikut ini akan diperlukan jika Anda memiliki formulir (untuk alasan apa pun):
this.ShowInTaskbar = false; // Removes the application from the taskbar
Hide();
Klik kanan untuk mendapatkan menu konteks ditangani secara otomatis, tetapi jika Anda ingin melakukan beberapa tindakan pada klik kiri Anda harus menambahkan Click handler:
private void notifyIcon_Click(object sender, EventArgs e)
{
var eventArgs = e as MouseEventArgs;
switch (eventArgs.Button)
{
// Left click to reactivate
case MouseButtons.Left:
// Do your stuff
break;
}
}