v1.14 — Reset window height on Back button navigation
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -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.1.3</Version>
|
<Version>1.1.4</Version>
|
||||||
<AssemblyVersion>1.1.3.0</AssemblyVersion>
|
<AssemblyVersion>1.1.4.0</AssemblyVersion>
|
||||||
<FileVersion>1.1.3.0</FileVersion>
|
<FileVersion>1.1.4.0</FileVersion>
|
||||||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|||||||
@@ -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.13" HorizontalAlignment="Right" VerticalAlignment="Center"
|
<TextBlock Text="v1.14" HorizontalAlignment="Right" VerticalAlignment="Center"
|
||||||
FontSize="12" Foreground="{StaticResource TextSecondaryBrush}"/>
|
FontSize="12" Foreground="{StaticResource TextSecondaryBrush}"/>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Border>
|
</Border>
|
||||||
|
|||||||
@@ -141,6 +141,9 @@ namespace InstaSoftOfficeTool
|
|||||||
|
|
||||||
private void BtnBack_Click(object sender, RoutedEventArgs e)
|
private void BtnBack_Click(object sender, RoutedEventArgs e)
|
||||||
{
|
{
|
||||||
|
// Reset window height in case a page enlarged it
|
||||||
|
Height = 550;
|
||||||
|
|
||||||
if (_currentPageIndex > 0 && _currentFlow == "install")
|
if (_currentPageIndex > 0 && _currentFlow == "install")
|
||||||
{
|
{
|
||||||
_currentPageIndex--;
|
_currentPageIndex--;
|
||||||
|
|||||||
Reference in New Issue
Block a user