Files
OfficeTool/Pages/WelcomePage.xaml
hariel1985 4937ac4b1c Initial release v1.01 — InstaSoft Office Tool
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>
2026-03-31 05:40:50 +02:00

60 sor
3.0 KiB
XML

<Page x:Class="InstaSoftOfficeTool.Pages.WelcomePage"
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="*"/>
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Margin="0,0,0,30">
<TextBlock Text="Üdvözöljük!" FontSize="28" FontWeight="Light"
Foreground="{StaticResource TextPrimaryBrush}"/>
<TextBlock Text="Válassza ki a kívánt műveletet:" FontSize="15"
Foreground="{StaticResource TextSecondaryBrush}" Margin="0,4,0,0"/>
</StackPanel>
<UniformGrid Grid.Row="1" Columns="3" Margin="0,0,0,0">
<Button Style="{StaticResource CardButton}" Margin="0,0,10,0"
Click="InstallClick">
<StackPanel>
<TextBlock FontSize="28" Text="&#xE710;" FontFamily="Segoe MDL2 Assets"
Foreground="{StaticResource AccentBrush}" Margin="0,0,0,12"/>
<TextBlock Text="Office telepítés" FontSize="16" FontWeight="SemiBold"/>
<TextBlock Text="Új Microsoft Office telepítése a számítógépre"
FontSize="12" Foreground="{StaticResource TextSecondaryBrush}"
TextWrapping="Wrap" Margin="0,6,0,0"/>
</StackPanel>
</Button>
<Button Style="{StaticResource CardButton}" Margin="5,0,5,0"
Click="RemoveClick">
<StackPanel>
<TextBlock FontSize="28" Text="&#xE74D;" FontFamily="Segoe MDL2 Assets"
Foreground="{StaticResource WarningBrush}" Margin="0,0,0,12"/>
<TextBlock Text="Office eltávolítás" FontSize="16" FontWeight="SemiBold"/>
<TextBlock Text="Meglévő Microsoft Office eltávolítása"
FontSize="12" Foreground="{StaticResource TextSecondaryBrush}"
TextWrapping="Wrap" Margin="0,6,0,0"/>
</StackPanel>
</Button>
<Button Style="{StaticResource CardButton}" Margin="10,0,0,0"
Click="LicenseClick">
<StackPanel>
<TextBlock FontSize="28" Text="&#xE8D7;" FontFamily="Segoe MDL2 Assets"
Foreground="{StaticResource SuccessBrush}" Margin="0,0,0,12"/>
<TextBlock Text="Licenc-kezelés" FontSize="16" FontWeight="SemiBold"/>
<TextBlock Text="Licenc állapot lekérdezése, termékkulcsok törlése"
FontSize="12" Foreground="{StaticResource TextSecondaryBrush}"
TextWrapping="Wrap" Margin="0,6,0,0"/>
</StackPanel>
</Button>
</UniformGrid>
</Grid>
</Page>