2021-11-10 21:24:39 +01:00
|
|
|
<Window x:Class="EliteBGS.ProgressDialog"
|
2021-08-13 09:30:06 +02:00
|
|
|
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"
|
2021-11-10 21:24:39 +01:00
|
|
|
xmlns:local="clr-namespace:EliteBGS"
|
2021-08-13 09:30:06 +02:00
|
|
|
mc:Ignorable="d"
|
2021-10-07 20:38:38 +02:00
|
|
|
Title="Progress" Height="100" Width="450" Icon="NONA.ico">
|
2021-08-13 09:30:06 +02:00
|
|
|
<Grid>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Label Content="Downloading EDDB databases might take a while, please be patient." Grid.Row="0" Grid.Column="0" HorizontalAlignment="Center" Margin="0,0,0,0" VerticalAlignment="Top"/>
|
|
|
|
<ProgressBar x:Name="progress" Height="25" Margin="10,10" Grid.Row="1" Grid.Column="0" VerticalAlignment="Top" Width="Auto" IsIndeterminate="True"/>
|
|
|
|
</Grid>
|
|
|
|
</Window>
|