I am currently porting a simple tray application from Windows (C#, .Net, Winforms) to OS X (C#, MonoMac, Cocoa). Most of the work is done, but I'm having some trouble with the OS X equivalent of the balloon tooltip that Windows tray applications often use to share information:
I haven't used OS X very much, but I am under the impression that the equivalent is a Notification:
But I cannot figure out how to use this from MonoMac. When looking around on the internet, I find something called "Growl notifications", but this seems to be a third party library, which I'm not interested in (if it can be avoided). There is also a class called NSNotification in the MonoMac framework, but again, I am unable to make it work.
Does anybody have a couple of hints for a poor Windows programmer?