Crunchy-Downloader/CRD/Views/Utils/ContentDialogUpdateView.axaml
Elwador f0346fd4c8 Add: Added checkbox to disable non-drm streams
Chg: Show additional info for downloads (slected dubs and subs)
Chg: When pressing update it now shows the progress
Chg: Changed how the error window looks
Chg: Additional checks for premium episodes to make sure it is possible the logged in user can download the episode
2024-05-25 00:46:11 +02:00

15 lines
770 B
XML

<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:vm="clr-namespace:CRD.ViewModels"
x:DataType="vm:ContentDialogUpdateViewModel"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="CRD.Views.Utils.ContentDialogUpdateView">
<StackPanel Spacing="10" MinWidth="400">
<ProgressBar Minimum="0" Maximum="100" Value="{Binding Progress}" HorizontalAlignment="Center" VerticalAlignment="Center" Width="350"/>
</StackPanel>
</UserControl>