Files
EngineeringSync/EngineeringSync.Setup/Views/Pages/InstallingPage.xaml
EngineeringSync 04ae8a0aae Initial commit: EngineeringSync v1.0.0
Vollständige Implementierung des EngineeringSync-Middleware-Tools:
- Windows Service (Kestrel :5050) mit FileSystemWatcher + SignalR
- WPF Tray-App mit PendingChanges- und Projektverwaltungs-Fenster
- Setup-Wizard (8-Schritte-Installer)
- SQLite/EF Core Datenschicht (WAL-Modus)
- SHA-256-basiertes Debouncing (2s Fenster)
- Backup-System mit konfigurierbarer Aufbewahrung

Bugfixes & Verbesserungen:
- BUG-1: AppDbContext OnConfiguring invertierte Bedingung behoben
- BUG-2: Event-Handler-Leak in TrayApp (Fenster-Singleton-Pattern)
- BUG-3: ProjectConfigChanged SignalR-Signal in allen CRUD-Endpoints
- BUG-5: Rename-Sync löscht alte Datei im Simulations-Ordner
- BUG-6: Doppeltes Dispose von SignalR verhindert
- BUG-7: Registry-Deinstallation nur EngineeringSync-Eintrag entfernt
- S1: Path-Traversal-Schutz via SafeCombine() im SyncManager
- E1: FSW Buffer 64KB + automatischer Re-Scan bei Overflow
- E2: Retry-Logik (3x) für gesperrte Dateien mit exponentiellem Backoff
- E4: Channel.Writer.TryComplete() beim Shutdown
- C2: HubMethodNames-Konstanten statt Magic Strings
- E3: Pagination in Changes-API (page/pageSize Query-Parameter)
- A1: Fire-and-Forget mit try/catch + Logging

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-26 21:52:26 +01:00

66 lines
3.1 KiB
XML

<local:WizardPageBase x:Class="EngineeringSync.Setup.Views.Pages.InstallingPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:EngineeringSync.Setup.Views.Pages"
Background="White"
Loaded="Page_Loaded">
<Grid Margin="40,32,40,24">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Text="Installation läuft..."
Style="{StaticResource PageTitleStyle}"/>
<TextBlock Grid.Row="1" x:Name="SubtitleText"
Style="{StaticResource PageSubtitleStyle}"
Text="Bitte warten Sie, während EngineeringSync installiert wird."/>
<!-- Fortschrittsbereich -->
<StackPanel Grid.Row="2" VerticalAlignment="Center">
<!-- Aktueller Schritt -->
<TextBlock x:Name="StepText"
FontFamily="Segoe UI" FontSize="13" FontWeight="SemiBold"
Foreground="#1A1A1A" Margin="0,0,0,8" Text="Starte Installation..."/>
<!-- Fortschrittsbalken -->
<ProgressBar x:Name="ProgressBar"
Style="{StaticResource ModernProgressBarStyle}"
Minimum="0" Maximum="100" Value="0"
Margin="0,0,0,4"/>
<Grid Margin="0,0,0,24">
<TextBlock x:Name="ProgressText" FontFamily="Segoe UI" FontSize="11"
Foreground="#5F5F5F" HorizontalAlignment="Left" Text="0%"/>
<TextBlock x:Name="TimeText" FontFamily="Segoe UI" FontSize="11"
Foreground="#5F5F5F" HorizontalAlignment="Right" Text=""/>
</Grid>
<!-- Live-Log -->
<Border Background="#1E1E1E" CornerRadius="8" Padding="16" Height="180">
<ScrollViewer x:Name="LogScrollViewer" VerticalScrollBarVisibility="Auto">
<TextBlock x:Name="LogText"
FontFamily="Cascadia Code, Consolas, Courier New"
FontSize="11" Foreground="#CCCCCC"
TextWrapping="Wrap" LineHeight="18"/>
</ScrollViewer>
</Border>
</StackPanel>
<!-- Erfolgs/Fehler-Banner -->
<Border Grid.Row="3" x:Name="ResultBanner"
CornerRadius="8" Padding="14,10" Margin="0,16,0,0"
Visibility="Collapsed">
<StackPanel Orientation="Horizontal">
<TextBlock x:Name="ResultIcon" FontFamily="Segoe MDL2 Assets"
FontSize="16" Margin="0,0,10,0" VerticalAlignment="Center"/>
<TextBlock x:Name="ResultText" FontFamily="Segoe UI" FontSize="12"
VerticalAlignment="Center" TextWrapping="Wrap"/>
</StackPanel>
</Border>
</Grid>
</local:WizardPageBase>