Customized notification service library for Windows.
NotiSharp.Popup pup = new NotiSharp.Popup();
pup.SetText("This is an example content for NotiSharp");
pup.SetIcon(new Bitmap(@"C:/NotiSharp.jpg"));
pup.SetSize(new Size(600, 400)); // not working in current version (layout problem)
pup.SetNotificationSound(true);
pup.Show();