wabbajack/Wabbajack/UI/TextViewer.xaml.cs

15 lines
280 B
C#
Raw Normal View History

using System.Windows;
2019-10-11 12:57:30 +00:00
namespace Wabbajack.UI
{
public partial class TextViewer : Window
{
public TextViewer(string text, string title)
2019-10-11 12:57:30 +00:00
{
InitializeComponent();
TextBlock.Text = text;
Title = title;
2019-10-11 12:57:30 +00:00
}
}
}