I have some code that popups a message box:
MessageBox.Show(this, \"You have not inputted a username or password. Would you like to configur
I only needed this for testing, so if you don't mind being extra cheesy, MessageBoxOptions.ServiceNotification will do the trick...
MessageBox.Show(message, "Error", MessageBoxButton.YesNo, MessageBoxImage.Exclamation, MessageBoxResult.OK, MessageBoxOptions.ServiceNotification);