problem on Left-click NotifyIcon to show contextmenustrip
Here is my code
private void notifyIcon1_MouseClick(object sender, MouseEventArgs e)
{
notifyIcon1.ContextMenuStrip.Show();
}
When i right-click the notify icon, it works to show the context menu.
When i left-click the notify icon, it also works to show the context menu but some other thing happens unexpectedly.
It also show a main form on the windowns taskbar.
I don't know why. Can someone figure out this for me?
Thanks.

