mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
38 lines
1.7 KiB
XML
38 lines
1.7 KiB
XML
<Window x:Class="Wabbajack.MainWindow"
|
|
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"
|
|
mc:Ignorable="d"
|
|
Title="Wabbajack" Height="600" Width="800">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<StackPanel Grid.Row="0" Orientation="Horizontal">
|
|
<TextBlock Text="{Binding Mode}"></TextBlock>
|
|
<TextBlock Text=":"></TextBlock>
|
|
<TextBlock Text="YAHSED GUIDE"></TextBlock>
|
|
</StackPanel>
|
|
<ListBox Grid.Row ="1" ItemsSource="{Binding Status}">
|
|
<ListBox.ItemTemplate>
|
|
<DataTemplate>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="CPU "></TextBlock>
|
|
<TextBlock Text="{Binding ID}"></TextBlock>
|
|
<TextBlock Text=" - "></TextBlock>
|
|
<TextBlock Text="{Binding Msg}"></TextBlock>
|
|
</StackPanel>
|
|
</DataTemplate>
|
|
</ListBox.ItemTemplate>
|
|
</ListBox>
|
|
<TextBlock Text="Log:" Grid.Row="2"></TextBlock>
|
|
<ListBox local:AutoScrollBehavior.ScrollOnNewItem="True" Grid.Row ="3" ItemsSource="{Binding Log}">
|
|
</ListBox>
|
|
</Grid>
|
|
</Window>
|