Files
EngineeringSync/EngineeringSync.Setup/Views/Pages/OptionCard.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

33 lines
1.6 KiB
XML

<UserControl x:Class="EngineeringSync.Setup.Views.Pages.OptionCard"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Margin="0,0,0,8">
<Border x:Name="CardBorder" Background="White" BorderThickness="1"
BorderBrush="#E0E0E0" CornerRadius="8" Padding="16,12"
Cursor="Hand" MouseLeftButtonDown="Card_Click">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="40"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Border Grid.Column="0" Width="32" Height="32" CornerRadius="8" Background="#F0F7FF">
<TextBlock x:Name="IconText" FontFamily="Segoe MDL2 Assets" FontSize="15"
Foreground="#0078D4" HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
<StackPanel Grid.Column="1" VerticalAlignment="Center" Margin="12,0">
<TextBlock x:Name="TitleText" FontFamily="Segoe UI" FontSize="13"
FontWeight="SemiBold" Foreground="#1A1A1A"/>
<TextBlock x:Name="DescText" FontFamily="Segoe UI" FontSize="11"
Foreground="#5F5F5F" TextWrapping="Wrap"/>
</StackPanel>
<CheckBox x:Name="ToggleBox" Grid.Column="2"
Style="{StaticResource ModernCheckBoxStyle}"
VerticalAlignment="Center" IsHitTestVisible="False"/>
</Grid>
</Border>
</UserControl>