I have two message boxes one after another. Dim msgResult as MessageBoxResult msgResult = MessageBox.Show("Message", "Title", MessageBoxButton.YesNo, MessageBoxImage.Question)
if mesgResult = MessageBoxresult.Yes Then 'some code..... MessageBox.Show("Another message", "Title", MessageBoxButton.OK, MessageBoxImage.Error)
End if
When the second message box gets closed the user remains on the same window, and the part of the title bar from the message box is still visible just above the windows text box. It seems that window did not get refreshed. How to handle this? Thank you.