wabbajack/Wabbajack/Views/TextViewer.xaml.cs
2019-10-21 22:55:19 -05:00

15 lines
277 B
C#

using System.Windows;
namespace Wabbajack
{
public partial class TextViewer : Window
{
public TextViewer(string text, string title)
{
InitializeComponent();
TextBlock.Text = text;
Title = title;
}
}
}