mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
17 lines
298 B
C#
17 lines
298 B
C#
|
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;
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|