Office deployment wizard for InstaSoft customers: - Install Office 2019/2021/2024 (Standard, Professional Plus, Home & Business) - Auto-download ODT from Microsoft, generate config XML, run setup - Remove existing Office installations (C2R + MSI) - License troubleshooting via ospp.vbs (dstatus, unpkey) - Fluent Design UI (WPF .NET Framework 4.8, Win7+ compatible) - Hungarian interface, multi-language Office installation - Product key input with auto-activation support Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
57 sor
3.1 KiB
XML
57 sor
3.1 KiB
XML
<Page x:Class="InstaSoftOfficeTool.Pages.ProgressPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Background="Transparent">
|
|
|
|
<Grid Margin="40,30">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock x:Name="TitleText" Grid.Row="0" Text="Telepítés folyamatban..."
|
|
FontSize="24" FontWeight="Light" Margin="0,0,0,20"/>
|
|
|
|
<StackPanel Grid.Row="1" Margin="0,0,0,16">
|
|
<StackPanel Orientation="Horizontal" Margin="0,4">
|
|
<TextBlock x:Name="Step1Icon" Text="" FontFamily="Segoe MDL2 Assets"
|
|
FontSize="14" Foreground="{StaticResource TextSecondaryBrush}" Width="24"/>
|
|
<TextBlock x:Name="Step1Text" Text="Office Deployment Tool letöltése..."
|
|
Foreground="{StaticResource TextSecondaryBrush}"/>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal" Margin="0,4">
|
|
<TextBlock x:Name="Step2Icon" Text="" FontFamily="Segoe MDL2 Assets"
|
|
FontSize="14" Foreground="{StaticResource TextSecondaryBrush}" Width="24"/>
|
|
<TextBlock x:Name="Step2Text" Text="Konfiguráció generálása..."
|
|
Foreground="{StaticResource TextSecondaryBrush}"/>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal" Margin="0,4">
|
|
<TextBlock x:Name="Step3Icon" Text="" FontFamily="Segoe MDL2 Assets"
|
|
FontSize="14" Foreground="{StaticResource TextSecondaryBrush}" Width="24"/>
|
|
<TextBlock x:Name="Step3Text" Text="Office telepítése..."
|
|
Foreground="{StaticResource TextSecondaryBrush}"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
|
|
<ProgressBar x:Name="MainProgress" Grid.Row="1" Style="{StaticResource FluentProgressBar}"
|
|
IsIndeterminate="True" Margin="0,80,0,0"/>
|
|
|
|
<Border Grid.Row="2" Background="#F8F8F8" CornerRadius="6" Padding="12" Margin="0,12,0,0"
|
|
BorderBrush="{StaticResource BorderBrush}" BorderThickness="1">
|
|
<TextBox x:Name="LogText" FontFamily="Consolas" FontSize="11"
|
|
TextWrapping="Wrap" Foreground="{StaticResource TextSecondaryBrush}"
|
|
IsReadOnly="True" Background="Transparent" BorderThickness="0"
|
|
VerticalScrollBarVisibility="Auto" AcceptsReturn="True"/>
|
|
</Border>
|
|
|
|
<StackPanel x:Name="DonePanel" Grid.Row="3" Margin="0,12,0,0" Visibility="Collapsed"
|
|
Orientation="Horizontal">
|
|
<TextBlock x:Name="DoneIcon" FontFamily="Segoe MDL2 Assets" FontSize="20"
|
|
VerticalAlignment="Center" Margin="0,0,8,0"/>
|
|
<TextBlock x:Name="DoneText" FontSize="15" FontWeight="SemiBold" VerticalAlignment="Center"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Page>
|