mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
21 lines
666 B
XML
21 lines
666 B
XML
<Window
|
|
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:local="clr-namespace:Wabbajack"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
Title="TextViewer"
|
|
Width="800"
|
|
Height="450"
|
|
Icon="../Resources/Icons/wabbajack.ico"
|
|
Style="{StaticResource {x:Type Window}}"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<TextBlock
|
|
Name="TextBlock"
|
|
FontSize="20"
|
|
TextWrapping="Wrap" />
|
|
</Grid>
|
|
</Window>
|