2019-10-20 11:26:42 +00:00
|
|
|
<Window x:Class="Wabbajack.UI.DownloadWindow"
|
|
|
|
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.UI"
|
2019-11-04 22:03:36 +00:00
|
|
|
Style="{StaticResource {x:Type Window}}" Icon="../Resources/Icons/wabbajack.ico" WindowStyle="ToolWindow"
|
2019-10-20 11:26:42 +00:00
|
|
|
mc:Ignorable="d"
|
|
|
|
Title="Downloading Modlist" Height="200" Width="800">
|
|
|
|
<StackPanel Margin="20">
|
|
|
|
<StackPanel Orientation="Horizontal">
|
2019-10-21 19:51:20 +00:00
|
|
|
<TextBlock FontSize="30" Margin="0, 10">Downloading:</TextBlock>
|
|
|
|
<TextBlock FontSize="30" Margin="10, 10" Text="{Binding DownloadName}"></TextBlock>
|
2019-10-20 11:26:42 +00:00
|
|
|
</StackPanel>
|
|
|
|
<ProgressBar Margin="0, 10" Minimum="0" Maximum="100" Height="20" Value="{Binding DownloadProgress}"></ProgressBar>
|
|
|
|
<StackPanel HorizontalAlignment="Right">
|
|
|
|
<Button>
|
|
|
|
<TextBlock TextAlignment="Center" FontSize="20" Width="100">Cancel</TextBlock>
|
|
|
|
</Button>
|
|
|
|
</StackPanel>
|
|
|
|
</StackPanel>
|
|
|
|
</Window>
|