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>
32 sor
698 B
C#
32 sor
698 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
|
|
namespace InstaSoftOfficeTool.Pages
|
|
{
|
|
public partial class WelcomePage : Page
|
|
{
|
|
private readonly MainWindow _main;
|
|
|
|
public WelcomePage(MainWindow main)
|
|
{
|
|
InitializeComponent();
|
|
_main = main;
|
|
}
|
|
|
|
private void InstallClick(object sender, RoutedEventArgs e)
|
|
{
|
|
_main.StartInstallFlow();
|
|
}
|
|
|
|
private void RemoveClick(object sender, RoutedEventArgs e)
|
|
{
|
|
_main.StartRemoveFlow();
|
|
}
|
|
|
|
private void LicenseClick(object sender, RoutedEventArgs e)
|
|
{
|
|
_main.StartLicenseFlow();
|
|
}
|
|
}
|
|
}
|