2020-04-04 15:01:59 +00:00
|
|
|
<mah:MetroWindow
|
2019-11-02 00:17:23 +00:00
|
|
|
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"
|
2020-04-04 15:01:59 +00:00
|
|
|
xmlns:local="clr-namespace:Wabbajack"
|
|
|
|
xmlns:mah="http://metro.mahapps.com/winfx/xaml/controls"
|
2019-11-02 00:17:23 +00:00
|
|
|
Title="TextViewer"
|
|
|
|
Width="800"
|
|
|
|
Height="450"
|
2020-04-04 15:01:59 +00:00
|
|
|
WindowTitleBrush="{StaticResource MahApps.Brushes.Accent}"
|
2019-11-02 00:17:23 +00:00
|
|
|
Style="{StaticResource {x:Type Window}}"
|
|
|
|
mc:Ignorable="d">
|
2019-10-11 12:57:30 +00:00
|
|
|
<Grid>
|
2019-11-02 00:17:23 +00:00
|
|
|
<TextBlock
|
|
|
|
Name="TextBlock"
|
|
|
|
FontSize="20"
|
|
|
|
TextWrapping="Wrap" />
|
2019-10-11 12:57:30 +00:00
|
|
|
</Grid>
|
2020-04-04 15:01:59 +00:00
|
|
|
</mah:MetroWindow>
|