Files
BeWoPlaner/BeWoLauncher/View/Frames/UpdateInfoFrame.xaml
rene 4fbfdbaf2c Unit Tests erstellt
Informationen ausgelagert
Kleines Spy/Test Programm erstellt
Mehr Exceptions/InvalidUpdateFileRequestException.cs
Launcher Host in Download Server geändert
Download Server macht zusätzlich Abfrage an den Hauptserver
Download geht jetzt stückweise von statten
2022-12-28 16:36:59 +01:00

59 lines
3.2 KiB
XML

<frames:FrameBase
x:Class="BeWoLauncher.View.Frames.UpdateInfoFrame"
xmlns:frames="clr-namespace:BeWoLauncher.View.Frames"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="400" d:DesignWidth="600" >
<Grid>
<DockPanel Margin="5">
<Label DockPanel.Dock="Top" FontWeight="Bold" >Sie sind dabei BeWoPlaner zu aktualisieren.</Label>
<!--<StackPanel Orientation="Vertical" Margin="6">
<CheckBox>Desktopverknüpfung erstellen</CheckBox>
<CheckBox>Startmenüverknüpfung erstellen</CheckBox>
</StackPanel>-->
<Grid DockPanel.Dock="Top" Margin="10,5,0,0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="30"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition Height="3"/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition Height="3"/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Label Grid.Column="0" Grid.Row="0">Version:</Label>
<Label Grid.Column="2" Grid.Row="0" x:Name="lblversion" Margin="10,0,0,0">1.0.0.0 t</Label>
<Label Grid.Column="0" Grid.Row="2">Erforderlicher Festplattenspeicher:</Label>
<Label Grid.Column="2" Grid.Row="2" x:Name="lblErforderlich" HorizontalAlignment="Right">10.9t</Label>
<Label Grid.Column="3" Grid.Row="2" x:Name="lblErforderlichSize" HorizontalAlignment="Left">GB</Label>
<Label Grid.Column="0" Grid.Row="3" Margin="0,-5,0,0">Verfügbarer Festplattenspeicher:</Label>
<Label Grid.Column="2" Grid.Row="3" Margin="0,-5,0,0" x:Name="lblVerfuegbar" HorizontalAlignment="Right">20.0t</Label>
<Label Grid.Column="3" Grid.Row="3" Margin="0,-5,0,0" x:Name="lblVerfuegbarSize" HorizontalAlignment="Left">GB</Label>
</Grid>
<StackPanel DockPanel.Dock="Bottom" VerticalAlignment="Bottom" HorizontalAlignment="Center" Orientation="Horizontal" Margin="0,10,0,0">
<Button Width="70" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="0,0,0,0" Click="Button_Click">Abbrechen</Button>
<Button Width="100" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="5,0,0,0" Click="Button_Click_1">Aktualisieren</Button>
</StackPanel>
</DockPanel>
</Grid>
</frames:FrameBase>