Files
BeWoPlaner/BeWoLauncher/View/Frames/InstallInfoFrame.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

64 lines
3.7 KiB
XML

<local:FrameBase
x:Class="BeWoLauncher.View.Frames.InstallInfoFrame"
xmlns:local="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 x:Name="root" >
<DockPanel Margin="5">
<Label DockPanel.Dock="Top" FontWeight="Bold">Sie sind dabei BeWoPlaner zu installieren.</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/>
</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" Margin="0,0,0,0" >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" Click="Button_Click">Abbrechen</Button>
<Button Width="100" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="5,0,0,0" Click="Button_Click_1">Installieren</Button>
</StackPanel>
<GroupBox DockPanel.Dock="Bottom" VerticalAlignment="Bottom" Header="Installationsordner" BorderBrush="#FFADADAD" >
<DockPanel LastChildFill="True">
<Button Click="button_installLoc_Click" DockPanel.Dock="Right" Margin="0,0,0,0" Height="23" ToolTip="Sie müssen einen leeren Ordner auswählen, auf welchen Sie schreibrechte besitzen.">Auswählen</Button>
<TextBox x:Name="txtLoc" Height="23" DockPanel.Dock="Left" Width="Auto" Margin="3,0,3,0" IsReadOnly="True" VerticalContentAlignment="Center" IsEnabled="False"></TextBox>
</DockPanel>
</GroupBox>
</DockPanel>
</Grid>
</local:FrameBase>