Files
OfficeTool/Pages/EditionPage.xaml
hariel1985 8e4ad331f1 v1.19 — Bug fixes, Hungarian accents, better error handling
- Fix: Back button was always visible (ternary always returned Visible)
- Fix: Missing Hungarian accents on EditionPage ("Válasszon kiadást")
- Fix: Better ODT download error messages (network/timeout distinguished)
- Signed with Azure Trusted Signing (Microsoft root CA, instant SmartScreen trust)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 17:04:11 +02:00

21 sor
821 B
XML

<Page x:Class="InstaSoftOfficeTool.Pages.EditionPage"
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="*"/>
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Margin="0,0,0,24">
<TextBlock x:Name="TitleText" Text="Válasszon kiadást" FontSize="24" FontWeight="Light"/>
<TextBlock x:Name="SubtitleText" FontSize="14"
Foreground="{StaticResource TextSecondaryBrush}" Margin="0,4,0,0"/>
</StackPanel>
<StackPanel x:Name="EditionPanel" Grid.Row="1" VerticalAlignment="Top"/>
</Grid>
</Page>