PowerShell version removed — will use OV code signing certificate instead. Files moved back from src/ to project root. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
60 sor
3.0 KiB
XML
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="" 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="" 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="" 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>
|