Toplu indirme ve Eklenti Güncellemesi

This commit is contained in:
hOLOlu
2026-05-09 11:33:53 +03:00
parent 729879c693
commit 75bd47c052
349 changed files with 5292 additions and 401 deletions

View File

@@ -5,8 +5,20 @@
<StatusBar>
<StatusBarItem>
<StackPanel Orientation="Horizontal">
<TextBlock Text="Aktif: " FontWeight="SemiBold"/>
<TextBlock Text="{Binding ActiveCount}"/>
<TextBlock Text="Listedeki Toplam: " FontWeight="SemiBold"/>
<TextBlock Text="{Binding TotalCount}" Margin="0,0,10,0"/>
<TextBlock Text="Tamamlanan: " Foreground="Green" FontWeight="SemiBold"/>
<TextBlock Text="{Binding CompletedCount}" Margin="0,0,10,0"/>
<TextBlock Text="Aktif: " Foreground="Blue" FontWeight="SemiBold"/>
<TextBlock Text="{Binding ActiveCount}" Margin="0,0,10,0"/>
<TextBlock Text="Duraklatıldı: " Foreground="Orange" FontWeight="SemiBold"/>
<TextBlock Text="{Binding PausedCount}" Margin="0,0,10,0"/>
<TextBlock Text="Hata: " Foreground="Red" FontWeight="SemiBold"/>
<TextBlock Text="{Binding ErrorCount}"/>
</StackPanel>
</StatusBarItem>
<Separator/>