Can someone give a clear example of setting the timeout feature in the MessageBoxManager class?
I saw these links but couldn't understnad how to use it properly. I need to envoke a messagebox asking something and it will count down 3 seconds for a default answer. http://www.codeproject.com/Articles/13123/MessageBoxManager-A-Windows-Forms-component-that-p
http://www.codeproject.com/Articles/18399/Localizing-System-MessageBox
I tried using this:
MessageBoxManager.Yes = "Lab";
MessageBoxManager.No = "Machine";
MessageBoxManager.Register();
DialogResult dialogResult = MessageBox.Show("Choose your working method",
"Choose your working method", MessageBoxButtons.YesNo);
But there isn't any way to choose the timeout feature...