diff --git a/Wabbajack/UI/TextViewer.xaml b/Wabbajack/UI/TextViewer.xaml
new file mode 100644
index 00000000..a2013842
--- /dev/null
+++ b/Wabbajack/UI/TextViewer.xaml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
diff --git a/Wabbajack/UI/TextViewer.xaml.cs b/Wabbajack/UI/TextViewer.xaml.cs
new file mode 100644
index 00000000..d6884a34
--- /dev/null
+++ b/Wabbajack/UI/TextViewer.xaml.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Windows;
+using System.Windows.Documents;
+
+namespace Wabbajack.UI
+{
+ public partial class TextViewer : Window
+ {
+ public TextViewer(string text)
+ {
+ InitializeComponent();
+ TextBlock.Text = text;
+
+ }
+ }
+}
diff --git a/Wabbajack/Wabbajack.csproj b/Wabbajack/Wabbajack.csproj
index abe8f8a2..4557dd5d 100644
--- a/Wabbajack/Wabbajack.csproj
+++ b/Wabbajack/Wabbajack.csproj
@@ -198,6 +198,9 @@
+
+ TextViewer.xaml
+
@@ -232,6 +235,10 @@
MSBuild:Compile
Designer
+
+ Designer
+ MSBuild:Compile
+