Athiwat Chunlakhan
Athiwat Chunlakhan

Reputation: 7809

c# a nice notice box

Is there any code for a nice notice box (Even a dll would be fine) Like the one kaspersky antivirus shows? Because in my script I use a lot of message box and the end-user start to complain that they need to click okay every time.

Upvotes: 1

Views: 882

Answers (3)

peSHIr
peSHIr

Reputation: 6360

Maybe not an actual answer to your question, but if you users complain about the number of message boxes they need to "click away" (like you mention yourself), are you perhaps using them too much or for the wrong reasons?

Perhaps other ways of showing messages are more approriate in some cases, like a status bar, a dialog with a message log, or different way of structuring dialogs/workflows in your application?

Upvotes: 1

cedrou
cedrou

Reputation: 2790

You can look at this exemple on CodeProject.

Upvotes: 2

Bhaskar
Bhaskar

Reputation: 10691

I suggest you create a custom control, which inherits from the message box and then you design it as per your liking.

Upvotes: 1

Related Questions