Office 2016 Standard és Professional Plus telepítése ISO letöltéssel (soft.direct), ISO csatolással és a Microsoft MSI telepítő indításával. A 2019/2021/2024 verziók továbbra is ODT-vel működnek. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
59 sor
3.1 KiB
XML
59 sor
3.1 KiB
XML
<Page x:Class="InstaSoftOfficeTool.Pages.VersionPage"
|
|
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,24">
|
|
<TextBlock Text="Válasszon Office verziót" FontSize="24" FontWeight="Light"/>
|
|
<TextBlock Text="Melyik évjáratot szeretné telepíteni?" FontSize="14"
|
|
Foreground="{StaticResource TextSecondaryBrush}" Margin="0,4,0,0"/>
|
|
</StackPanel>
|
|
|
|
<ScrollViewer Grid.Row="1" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled" Padding="0,0,4,0">
|
|
<StackPanel VerticalAlignment="Top">
|
|
<RadioButton x:Name="Rb2024" Style="{StaticResource CardRadioButton}"
|
|
GroupName="Version" IsChecked="True" Margin="0,0,0,10">
|
|
<StackPanel Margin="8,2">
|
|
<TextBlock Text="Office 2024" FontSize="18" FontWeight="SemiBold"/>
|
|
<TextBlock Text="2024. októberi kiadás · Windows 10 / 11"
|
|
FontSize="12" Foreground="{StaticResource TextSecondaryBrush}" Margin="0,2,0,0"/>
|
|
</StackPanel>
|
|
</RadioButton>
|
|
|
|
<RadioButton x:Name="Rb2021" Style="{StaticResource CardRadioButton}"
|
|
GroupName="Version" Margin="0,0,0,10">
|
|
<StackPanel Margin="8,2">
|
|
<TextBlock Text="Office 2021" FontSize="18" FontWeight="SemiBold"/>
|
|
<TextBlock Text="2021. októberi kiadás · Windows 10 / 11"
|
|
FontSize="12" Foreground="{StaticResource TextSecondaryBrush}" Margin="0,2,0,0"/>
|
|
</StackPanel>
|
|
</RadioButton>
|
|
|
|
<RadioButton x:Name="Rb2019" Style="{StaticResource CardRadioButton}"
|
|
GroupName="Version" Margin="0,0,0,10">
|
|
<StackPanel Margin="8,2">
|
|
<TextBlock Text="Office 2019" FontSize="18" FontWeight="SemiBold"/>
|
|
<TextBlock Text="2019. szeptemberi kiadás · Windows 7 / 8.1 / 10 / 11 · Támogatás lejárt: 2025.10."
|
|
FontSize="12" Foreground="{StaticResource TextSecondaryBrush}" Margin="0,2,0,0"/>
|
|
</StackPanel>
|
|
</RadioButton>
|
|
|
|
<RadioButton x:Name="Rb2016" Style="{StaticResource CardRadioButton}"
|
|
GroupName="Version" Margin="0,0,0,10">
|
|
<StackPanel Margin="8,2">
|
|
<TextBlock Text="Office 2016" FontSize="18" FontWeight="SemiBold"/>
|
|
<TextBlock Text="2016. szeptemberi kiadás · Windows 7 / 8.1 / 10 · Támogatás lejárt: 2025.10."
|
|
FontSize="12" Foreground="{StaticResource TextSecondaryBrush}" Margin="0,2,0,0"/>
|
|
</StackPanel>
|
|
</RadioButton>
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
</Grid>
|
|
</Page>
|