Files
hDM/src/DownloadManager.WPF/Views/Controls/StatusBarControl.xaml
2026-05-09 11:38:04 +03:00

29 lines
1.4 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<UserControl x:Class="DownloadManager.WPF.Views.Controls.StatusBarControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ui="http://schemas.modernwpf.com/2019">
<StatusBar>
<StatusBarItem>
<StackPanel Orientation="Horizontal">
<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/>
<StatusBarItem Content="{Binding TotalSpeed}"/>
<Separator/>
<StatusBarItem Content="{Binding DiskFreeSpace}"/>
</StatusBar>
</UserControl>