문제

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?

도움이 되었습니까?

해결책

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).

다른 팁

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top