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>
This commit is contained in:
33
Pages/ConfigPage.xaml
Normal file
33
Pages/ConfigPage.xaml
Normal file
@@ -0,0 +1,33 @@
|
||||
<Page x:Class="InstaSoftOfficeTool.Pages.ConfigPage"
|
||||
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="Beállítások" FontSize="24" FontWeight="Light" Margin="0,0,0,20"/>
|
||||
|
||||
<TextBlock Text="Architektúra" FontSize="15" FontWeight="SemiBold" Margin="0,0,0,8"/>
|
||||
<StackPanel Orientation="Horizontal" Margin="0,0,0,20">
|
||||
<RadioButton x:Name="Rb64" GroupName="Arch" IsChecked="True"
|
||||
Style="{StaticResource CardRadioButton}" Margin="0,0,10,0" MinWidth="160">
|
||||
<TextBlock Text="64-bit" FontSize="15" Margin="8,0"/>
|
||||
</RadioButton>
|
||||
<RadioButton x:Name="Rb32" GroupName="Arch"
|
||||
Style="{StaticResource CardRadioButton}" MinWidth="160">
|
||||
<TextBlock Text="32-bit" FontSize="15" Margin="8,0"/>
|
||||
</RadioButton>
|
||||
</StackPanel>
|
||||
|
||||
<TextBlock Text="Telepítési nyelv" FontSize="15" FontWeight="SemiBold" Margin="0,0,0,8"/>
|
||||
<ComboBox x:Name="CbLanguage" Style="{StaticResource FluentComboBox}"
|
||||
Width="300" HorizontalAlignment="Left" Margin="0,0,0,20"/>
|
||||
|
||||
<TextBlock Text="Telepítendő alkalmazások" FontSize="15" FontWeight="SemiBold" Margin="0,0,0,4"/>
|
||||
<TextBlock Text="Törölje a jelölést azon alkalmazásoknál, amelyeket nem szeretne telepíteni."
|
||||
FontSize="12" Foreground="{StaticResource TextSecondaryBrush}" Margin="0,0,0,10"/>
|
||||
|
||||
<WrapPanel x:Name="AppCheckBoxes" Orientation="Horizontal"/>
|
||||
</StackPanel>
|
||||
</ScrollViewer>
|
||||
</Page>
|
||||
Reference in New Issue
Block a user