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
24 lines
1.5 KiB
XML
24 lines
1.5 KiB
XML
<local:FrameBase x:Class="BeWoLauncher.View.Frames.InfoFrame"
|
|
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"
|
|
xmlns:local="clr-namespace:BeWoLauncher.View.Frames"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="400" d:DesignWidth="600">
|
|
<Grid x:Name="root" >
|
|
<DockPanel Margin="5">
|
|
<Label DockPanel.Dock="Top" FontWeight="Bold" FontSize="15" x:Name="lblTitle">Fehler in der Installation aufgetreten!</Label>
|
|
<StackPanel DockPanel.Dock="Bottom" VerticalAlignment="Bottom" HorizontalAlignment="Center" Orientation="Horizontal" Margin="0,10,0,0">
|
|
<Button x:Name="btnCopy" Width="70" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="0,0,5,0" Click="Button_Click">Kopieren</Button>
|
|
<Button Width="200" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="0" Click="Button_Click_1">Zurück zum Login</Button>
|
|
</StackPanel>
|
|
<ScrollViewer DockPanel.Dock="Top" FontSize="12" VerticalAlignment="Stretch">
|
|
<TextBlock x:Name="txtField2">
|
|
Hier könnte ihre Fehlermeldung stehen!
|
|
</TextBlock>
|
|
</ScrollViewer>
|
|
</DockPanel>
|
|
</Grid>
|
|
</local:FrameBase>
|