ErrorWindow.xaml.cs 351 B

123456789101112131415161718
  1. using System.Windows;
  2. namespace MyTests
  3. {
  4. public partial class ErrorWindow : Window
  5. {
  6. public ErrorWindow(string error)
  7. {
  8. InitializeComponent();
  9. ErrorLabel.Text = error;
  10. }
  11. private void BackClick(object sender, RoutedEventArgs e)
  12. {
  13. this.Close();
  14. }
  15. }
  16. }