wabbajack/Wabbajack/Views/TextViewer.xaml.cs

15 lines
277 B
C#
Raw Normal View History

using System.Windows;
2019-10-11 12:57:30 +00:00
2019-10-22 01:08:26 +00:00
namespace Wabbajack
2019-10-11 12:57:30 +00:00
{
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
}
}
}