Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a confirmation screen in my app where I tell the user that his item is saved succesfully. He can press OK and the messagebox will go, but if he does not, how can I make the messagebox disappear after 3 seconds if there is no response?

share|improve this question
as Julien pointed out, this isn't possible. Create a custom Popup control if you need it... but know that there's definitely a better way to design this UX experience – William Melani Mar 12 '12 at 21:02
any final solution with full source code? – Kiquenet Jan 25 at 16:45

2 Answers

According to MSDN, there is no way to close a messagebox without user action (no method provided for this action) http://msdn.microsoft.com/en-us/library/system.windows.messagebox_methods(v=vs.95).aspx

share|improve this answer
I agree, if I u use a pop-up grid in my xaml, how do I collapse it after 3 seconds? – Rashi Anand Mar 13 '12 at 21:36
@RashiAnand You could use a timer to achieve that. Set a timer to time out after three seconds, and hook up some code to collapse the popup to the Tick, or whatever event the timer has. Then, when you open the popup, activate the timer. – Tom Lint Nov 5 '12 at 14:45

If your message box doesn't need a user action, use Toast Prompt from Coding4Fun toolkit.

http://coding4fun.codeplex.com/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.