DmitryGaravsky / AutoClosingMessageBox

The MessageBox which automatically closes after the specific timeout.
MIT License
40 stars 14 forks source link

Open multiple boxes at the same time #15

Closed Alichegini12 closed 8 months ago

Alichegini12 commented 8 months ago

hi I am writing a code that may need to show several messages to the user in a short period of time But now the messages are shown one after the other How do I solve this problem? Thanks

DmitryGaravsky commented 8 months ago

Hello and thank you for the question. The MessageBox itself is designed to be a blocking. So if you want to show several messages simultaneously you should consider another solutions like toast notifications or alerts. There are many implementations but from my experience I can recommend you those from DevExpress: Alert Windows. They also provides a Toast Notification Manager as a solution for toasts from WinForms/Wpf application.

Alichegini12 commented 8 months ago

Thank you very much for your reply You helped a lot