wabbajack/Wabbajack/Views/TextViewer.xaml.cs

13 lines
245 B
C#
Raw Normal View History

namespace Wabbajack
2019-10-11 12:57:30 +00:00
{
public partial class TextViewer
2019-10-11 12:57:30 +00:00
{
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
}
}
}