private void showGreetings() { var args = new BalloonEventArgs() { Title = Resources.Greet_Title, Text = Resources.Greet_Text, Icon = ToolTipIcon.Info, Milliseconds = 15000 }; if (ShowBalloon != null) { ShowBalloon(this, args); } }
private void showGreetings() { var args = new BalloonEventArgs() { Title = Resources.Greet_Title, Text = Resources.Greet_Text, Icon = ToolTipIcon.Info, Milliseconds = 15000 }; if (ShowBalloon != null) ShowBalloon(this, args); }
private void Notifier_ShowBalloon(object sender, BalloonEventArgs e) { iconPlayPause.ShowBalloonTip(e.Milliseconds, e.Title, e.Text, e.Icon); }