-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathError.xaml.cs
51 lines (45 loc) · 1.63 KB
/
Error.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using System.Reflection;
using System.Text;
using System.Windows;
using System.Windows.Media.Imaging;
namespace ZChat
{
/// <summary>
/// Interaction logic for Error.xaml
/// </summary>
public partial class Error : Window
{
public Exception Exception;
public Error(Exception exception) : base()
{
InitializeComponent();
Icon = BitmapFrame.Create(Assembly.GetExecutingAssembly().GetManifestResourceStream("ZChat.IRC.ico"));
Exception = exception;
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
messageTextBlock.Text = Exception.Message;
StringBuilder sb = new StringBuilder();
sb.Append(Exception.StackTrace);
Exception innerException = Exception.InnerException;
while (innerException != null)
{
sb.Append(System.Environment.NewLine);
sb.Append(System.Environment.NewLine);
sb.Append("Message: " + innerException.Message);
sb.Append(System.Environment.NewLine);
sb.Append("Stack Trace:");
sb.Append(System.Environment.NewLine);
sb.Append(innerException.StackTrace);
innerException = innerException.InnerException;
}
stackTraceTextBox.Text = sb.ToString();
}
public static void ShowError(Exception exception)
{
Error errorForm = new Error(exception);
errorForm.ShowDialog();
}
}
}