Skip to content

Commit

Permalink
update: add ShowBalloonTip method
Browse files Browse the repository at this point in the history
  • Loading branch information
emako committed Jul 26, 2024
1 parent 5177374 commit 6a9e2b2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions NotifyIcon/NotifyIcon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,11 @@ public void ShowBalloonTip(int timeout)
notifyIcon.ShowBalloonTip(timeout);
}

public void ShowBalloonTip(int timeout, string tipTitle, string tipText, ToolTipIcon tipIcon)
{
notifyIcon.ShowBalloonTip(timeout, tipTitle, tipText, tipIcon);
}

private void OnEventReceived(object? sender, EventArgs e, object eventKey)
{
Events[eventKey]?.DynamicInvoke(sender, e);
Expand Down

0 comments on commit 6a9e2b2

Please sign in to comment.