0

I have an app that currently shows a message box when the users saves that just says "Saved successfully". The problem is, user's tend to save frequently when using this app and the message box is a pain in the @$$. I'd like to have a little notification box that fades in and out and doesn't require user interaction, kind of like how Growl notifications work on a Mac.

Is there any .net library or free 3rd party application that does something like this?

John Saunders
  • 160,644
  • 26
  • 247
  • 397
ConditionRacer
  • 4,418
  • 6
  • 45
  • 67

2 Answers2

2

There is no need to use 3rd party libraries for something like this.

Crate a form for your notifications, styled as you wish.

When you need to notify, you can Show the form - to fade it in and out use the Opacity property (using a timer to animate the changes).

Oded
  • 489,969
  • 99
  • 883
  • 1,009
1

Have a look at this and see if it does what you want. Office 2003-like popup

Khadaji
  • 2,147
  • 2
  • 17
  • 19