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>
64 sor
3.6 KiB
XML
64 sor
3.6 KiB
XML
<Page x:Class="InstaSoftOfficeTool.Pages.SummaryPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Background="Transparent">
|
|
|
|
<ScrollViewer VerticalScrollBarVisibility="Auto" Margin="40,30">
|
|
<StackPanel>
|
|
<TextBlock Text="Összegzés" FontSize="24" FontWeight="Light" Margin="0,0,0,20"/>
|
|
<TextBlock Text="Ellenőrizze a beállításokat a telepítés indítása előtt."
|
|
FontSize="14" Foreground="{StaticResource TextSecondaryBrush}" Margin="0,0,0,16"/>
|
|
|
|
<Border Background="{StaticResource CardBrush}" CornerRadius="8"
|
|
BorderBrush="{StaticResource BorderBrush}" BorderThickness="1"
|
|
Padding="20,16" Margin="0,0,0,16">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="180"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Grid.Row="0" Grid.Column="0" Text="Verzió:" FontWeight="SemiBold" Margin="0,4"/>
|
|
<TextBlock Grid.Row="0" Grid.Column="1" x:Name="SumVersion" Margin="0,4"/>
|
|
|
|
<TextBlock Grid.Row="1" Grid.Column="0" Text="Kiadás:" FontWeight="SemiBold" Margin="0,4"/>
|
|
<TextBlock Grid.Row="1" Grid.Column="1" x:Name="SumEdition" Margin="0,4"/>
|
|
|
|
<TextBlock Grid.Row="2" Grid.Column="0" Text="Architektúra:" FontWeight="SemiBold" Margin="0,4"/>
|
|
<TextBlock Grid.Row="2" Grid.Column="1" x:Name="SumArch" Margin="0,4"/>
|
|
|
|
<TextBlock Grid.Row="3" Grid.Column="0" Text="Nyelv:" FontWeight="SemiBold" Margin="0,4"/>
|
|
<TextBlock Grid.Row="3" Grid.Column="1" x:Name="SumLanguage" Margin="0,4"/>
|
|
|
|
<TextBlock Grid.Row="4" Grid.Column="0" Text="Termékkulcs:" FontWeight="SemiBold" Margin="0,4"/>
|
|
<TextBlock Grid.Row="4" Grid.Column="1" x:Name="SumKey" Margin="0,4"/>
|
|
|
|
<TextBlock Grid.Row="5" Grid.Column="0" Text="Kizárt alkalmazások:" FontWeight="SemiBold" Margin="0,4"/>
|
|
<TextBlock Grid.Row="5" Grid.Column="1" x:Name="SumExcluded" Margin="0,4" TextWrapping="Wrap"/>
|
|
</Grid>
|
|
</Border>
|
|
|
|
<Expander Header="Konfigurációs XML megtekintése" FontSize="13" Margin="0,0,0,10">
|
|
<Border Background="#F8F8F8" CornerRadius="4" Padding="12" Margin="0,8,0,0"
|
|
BorderBrush="{StaticResource BorderBrush}" BorderThickness="1">
|
|
<TextBox x:Name="XmlPreview" IsReadOnly="True" TextWrapping="Wrap"
|
|
FontFamily="Consolas" FontSize="12" BorderThickness="0"
|
|
Background="Transparent" VerticalScrollBarVisibility="Auto"
|
|
MaxHeight="200"/>
|
|
</Border>
|
|
</Expander>
|
|
|
|
<Button x:Name="BtnSaveXml" Content="XML mentése fájlba..." Style="{StaticResource SecondaryButton}"
|
|
HorizontalAlignment="Left" Click="BtnSaveXml_Click" Margin="0,4,0,0"/>
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
</Page>
|