Ejemplo n.º 1
0
 private static void Main(string[] args)
 {
     var notifier = new Notifier();
     notifier.RegisterGrowl();
     notifier.Notify("Testing the Growl notifier",
                     "If you see this message the Growl notifier seems to be working\nEven handling newline", true);
     notifier.Notify("Testing the Growl notifier Failure",
             "Failure Message!!!\nSeems to be working as well", false);
 }
Ejemplo n.º 2
0
 public GrowlAddin()
 {
     _notifier = new Notifier();
     _notifier.RegisterGrowl();
 }