I've created notifyIcon
object. But after I click button1
balloon seems to be shown infinitely, despite the fact that I've specified 1 millisecond (!!!) as interval.
private void button1_Click(object sender, EventArgs e)
{
notifyIcon1.ShowBalloonTip(1);
}
What have I done wrong?
UPD: i've found this: http://www.csharp411.com/notifyiconshowballoontip-issues/ Seems like it is expected balloon behaviour :-S