/// <summary> /// Shows an error popup, not the best thing to see... /// </summary> /// <param name="ErrorMessage">The error message</param> public static void ErrorPopupCall(string ErrorMessage) { // Create a new instance of the ErrorPopup class ErrorPopup Error = new ErrorPopup(); // Add the content of the ErrorLabel Error.ErrorLabel.Content = ErrorMessage; // Show the error Error.Show(); // Make the error popup active Error.Activate(); }