38 lines
2.0 KiB
XML
38 lines
2.0 KiB
XML
<Window x:Class="PamhagenSysCtrl.Dialogs.UpdateDialog"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
ResizeMode="NoResize" ShowInTaskbar="False" Topmost="True"
|
|
WindowStartupLocation="CenterOwner"
|
|
Title="Update verfügbar - Anlagensteuerung Pamhagen"
|
|
Height="220" Width="460"
|
|
Closed="OnClosed">
|
|
<Grid Margin="20">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock x:Name="Description" FontSize="14" TextAlignment="Center"
|
|
HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
Version <Run x:Name="VersionText" FontWeight="Bold">0.0.0</Run> ist verfügbar.<LineBreak/>
|
|
Soll das Update heruntergeladen und installiert werden?<LineBreak/>
|
|
(ca. <Run x:Name="SizeText">0</Run> MB)<LineBreak/><LineBreak/>
|
|
<Run FontWeight="Bold">Hinweis:</Run> Die Anlagensteuerung wird zur Installation geschlossen.
|
|
</TextBlock>
|
|
|
|
<StackPanel x:Name="DownloadPanel" Grid.Row="0" VerticalAlignment="Center" Visibility="Collapsed">
|
|
<TextBlock x:Name="StatusText" Text="Update wird heruntergeladen..."
|
|
FontSize="14" TextAlignment="Center" Margin="0,0,0,10"/>
|
|
<ProgressBar x:Name="DownloadProgress" Height="24" Minimum="0" Maximum="100"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,18,0,0">
|
|
<Button x:Name="InstallButton" Content="Installieren" IsDefault="True"
|
|
Width="110" Height="30" Margin="0,0,12,0" Click="InstallButton_Click"/>
|
|
<Button x:Name="CancelButton" Content="Abbrechen" IsCancel="True"
|
|
Width="110" Height="30"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|