Fix Office 2016 visibility with ScrollViewer, bump to v1.21

Version page now scrollable to fit all 4 Office versions.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hariel1985
2026-04-09 12:53:22 +02:00
szülő 292a5a093e
commit 813e08b7d4
3 fájl változott, egészen pontosan 7 új sor hozzáadva és 5 régi sor törölve

Fájl megtekintése

@@ -9,9 +9,9 @@
<Company>InstaSoft Zrt.</Company> <Company>InstaSoft Zrt.</Company>
<Product>InstaSoft Office Tool</Product> <Product>InstaSoft Office Tool</Product>
<Copyright>Copyright (c) InstaSoft Zrt. 2026</Copyright> <Copyright>Copyright (c) InstaSoft Zrt. 2026</Copyright>
<Version>1.20</Version> <Version>1.21</Version>
<AssemblyVersion>1.20.0.0</AssemblyVersion> <AssemblyVersion>1.21.0.0</AssemblyVersion>
<FileVersion>1.20.0.0</FileVersion> <FileVersion>1.21.0.0</FileVersion>
<ApplicationManifest>app.manifest</ApplicationManifest> <ApplicationManifest>app.manifest</ApplicationManifest>
<LangVersion>latest</LangVersion> <LangVersion>latest</LangVersion>
</PropertyGroup> </PropertyGroup>

Fájl megtekintése

@@ -45,7 +45,7 @@
Foreground="{StaticResource TextSecondaryBrush}" Margin="0,-2,0,0"/> Foreground="{StaticResource TextSecondaryBrush}" Margin="0,-2,0,0"/>
</StackPanel> </StackPanel>
</StackPanel> </StackPanel>
<TextBlock Text="v1.20" HorizontalAlignment="Right" VerticalAlignment="Center" <TextBlock Text="v1.21" HorizontalAlignment="Right" VerticalAlignment="Center"
FontSize="12" Foreground="{StaticResource TextSecondaryBrush}"/> FontSize="12" Foreground="{StaticResource TextSecondaryBrush}"/>
</Grid> </Grid>
</Border> </Border>

Fájl megtekintése

@@ -15,7 +15,8 @@
Foreground="{StaticResource TextSecondaryBrush}" Margin="0,4,0,0"/> Foreground="{StaticResource TextSecondaryBrush}" Margin="0,4,0,0"/>
</StackPanel> </StackPanel>
<StackPanel Grid.Row="1" VerticalAlignment="Top"> <ScrollViewer Grid.Row="1" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled">
<StackPanel VerticalAlignment="Top">
<RadioButton x:Name="Rb2024" Style="{StaticResource CardRadioButton}" <RadioButton x:Name="Rb2024" Style="{StaticResource CardRadioButton}"
GroupName="Version" IsChecked="True" Margin="0,0,0,10"> GroupName="Version" IsChecked="True" Margin="0,0,0,10">
<StackPanel Margin="8,2"> <StackPanel Margin="8,2">
@@ -52,5 +53,6 @@
</StackPanel> </StackPanel>
</RadioButton> </RadioButton>
</StackPanel> </StackPanel>
</ScrollViewer>
</Grid> </Grid>
</Page> </Page>