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>
53 sor
2.7 KiB
XML
53 sor
2.7 KiB
XML
<Page x:Class="InstaSoftOfficeTool.Pages.RemovePage"
|
|
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="*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<StackPanel Grid.Row="0" Margin="0,0,0,20">
|
|
<TextBlock Text="Office eltávolítás" FontSize="24" FontWeight="Light"/>
|
|
<TextBlock Text="A számítógépen talált Office telepítések:"
|
|
FontSize="14" Foreground="{StaticResource TextSecondaryBrush}" Margin="0,4,0,0"/>
|
|
</StackPanel>
|
|
|
|
<ScrollViewer Grid.Row="1" VerticalScrollBarVisibility="Auto">
|
|
<StackPanel>
|
|
<StackPanel x:Name="OfficeListPanel"/>
|
|
|
|
<TextBlock x:Name="NoOfficeText" Text="Nem található telepített Office."
|
|
FontSize="14" Foreground="{StaticResource TextSecondaryBrush}"
|
|
Margin="0,20,0,0" Visibility="Collapsed"/>
|
|
|
|
<Border x:Name="LicenseCleanupPanel" Margin="0,20,0,0"
|
|
Background="{StaticResource CardBrush}" CornerRadius="8"
|
|
BorderBrush="{StaticResource BorderBrush}" BorderThickness="1"
|
|
Padding="16,12">
|
|
<CheckBox x:Name="CbCleanLicense" Style="{StaticResource FluentCheckBox}"
|
|
Content="Licenc-adatbázis tisztítása is (ajánlott)"
|
|
IsChecked="True"/>
|
|
</Border>
|
|
|
|
<Border x:Name="LogPanel" Margin="0,16,0,0" Background="#F8F8F8"
|
|
CornerRadius="6" Padding="12" Visibility="Collapsed"
|
|
BorderBrush="{StaticResource BorderBrush}" BorderThickness="1">
|
|
<TextBox x:Name="LogText" FontFamily="Consolas" FontSize="11"
|
|
TextWrapping="Wrap" Foreground="{StaticResource TextSecondaryBrush}"
|
|
IsReadOnly="True" Background="Transparent" BorderThickness="0"
|
|
VerticalScrollBarVisibility="Auto" AcceptsReturn="True" MaxHeight="200"/>
|
|
</Border>
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
|
|
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,12,0,0">
|
|
<Button x:Name="BtnRemove" Content="Eltávolítás" Style="{StaticResource PrimaryButton}"
|
|
Click="BtnRemove_Click"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Page>
|