Removed unused TextViewer

This commit is contained in:
erri120 2020-04-16 17:51:01 +02:00
parent 8e6dd8ba41
commit 545d258ce0
No known key found for this signature in database
GPG Key ID: A8C0A18D8D4D3135
2 changed files with 0 additions and 33 deletions

View File

@ -1,21 +0,0 @@
<mah:MetroWindow
x:Class="Wabbajack.TextViewer"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Wabbajack"
xmlns:mah="http://metro.mahapps.com/winfx/xaml/controls"
Title="TextViewer"
Width="800"
Height="450"
WindowTitleBrush="{StaticResource MahApps.Brushes.Accent}"
Style="{StaticResource {x:Type Window}}"
mc:Ignorable="d">
<Grid>
<TextBlock
Name="TextBlock"
FontSize="20"
TextWrapping="Wrap" />
</Grid>
</mah:MetroWindow>

View File

@ -1,12 +0,0 @@
namespace Wabbajack
{
public partial class TextViewer
{
public TextViewer(string text, string title)
{
InitializeComponent();
TextBlock.Text = text;
Title = title;
}
}
}