How can I detect if I right click on my NotifyIcon?
I tried this but "Button" gets redmarked.
private void noi_Click(object sender, EventArgs e)
{
if (e.Button == MouseButtons.Right)
{
MessageBox.Show("test");
}
}