v1.04 — Config layout, button contrast, Skype default, Win11 for 2019
- Arch + Language side by side on config page - Removed redundant hint text under app checkboxes - Primary button: white text on blue (TextElement.Foreground fix) - Skype for Business unchecked by default - Office 2019: added Windows 11 support, end-of-support note - Version display synced to v1.04 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -7,25 +7,35 @@
|
||||
<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 (ajánlott)" 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>
|
||||
<!-- Arch + Language side by side -->
|
||||
<Grid Margin="0,0,0,20">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<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"/>
|
||||
<StackPanel Grid.Column="0" Margin="0,0,16,0">
|
||||
<TextBlock Text="Architektúra" FontSize="15" FontWeight="SemiBold" Margin="0,0,0,8"/>
|
||||
<StackPanel Orientation="Horizontal">
|
||||
<RadioButton x:Name="Rb64" GroupName="Arch" IsChecked="True"
|
||||
Style="{StaticResource CardRadioButton}" Margin="0,0,10,0" MinWidth="140">
|
||||
<TextBlock Text="64-bit (ajánlott)" FontSize="14" Margin="6,0"/>
|
||||
</RadioButton>
|
||||
<RadioButton x:Name="Rb32" GroupName="Arch"
|
||||
Style="{StaticResource CardRadioButton}" MinWidth="100">
|
||||
<TextBlock Text="32-bit" FontSize="14" Margin="6,0"/>
|
||||
</RadioButton>
|
||||
</StackPanel>
|
||||
</StackPanel>
|
||||
|
||||
<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"/>
|
||||
<StackPanel Grid.Column="1">
|
||||
<TextBlock Text="Telepítési nyelv" FontSize="15" FontWeight="SemiBold" Margin="0,0,0,8"/>
|
||||
<ComboBox x:Name="CbLanguage" Style="{StaticResource FluentComboBox}"
|
||||
HorizontalAlignment="Stretch"/>
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
|
||||
<TextBlock Text="Telepítendő alkalmazások" FontSize="15" FontWeight="SemiBold" Margin="0,0,0,10"/>
|
||||
|
||||
<WrapPanel x:Name="AppCheckBoxes" Orientation="Horizontal"/>
|
||||
</StackPanel>
|
||||
|
||||
Reference in New Issue
Block a user