Mat1t'in söylediği gibi - uygulamanıza bir NotifyIcon eklemeniz ve ardından araç ipucu ve bağlam menüsünü ayarlamak için aşağıdaki kod gibi bir şey kullanmanız gerekir:
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)));
Bu kod yalnızca sistem tepsisindeki simgeyi gösterir:
this.notifyIcon.Visible = true; // Shows the notify icon in the system tray
Bir formunuz varsa (herhangi bir nedenle) aşağıdakilere ihtiyaç duyulacaktır:
this.ShowInTaskbar = false; // Removes the application from the taskbar
Hide();
Bağlam menüsünü almak için sağ tıklama otomatik olarak işlenir, ancak sol tıklamayla bazı işlemler yapmak istiyorsanız bir Tıklama işleyicisi eklemeniz gerekir:
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;
}
}