mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
95 lines
4.0 KiB
XML
95 lines
4.0 KiB
XML
<UserControl
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="clr-namespace:Splitter_UI.ViewModels"
|
|
xmlns:views="clr-namespace:Splitter_UI.Views"
|
|
xmlns:svg="clr-namespace:Avalonia.Svg.Skia;assembly=Avalonia.Svg.Skia"
|
|
x:Class="Splitter_UI.Views.FileListView"
|
|
x:DataType="vm:FileListViewModel">
|
|
|
|
<UserControl.Styles>
|
|
<Style Selector="views|FileListView Border#DropZone">
|
|
<Setter Property="BorderBrush" Value="Transparent"/>
|
|
<Setter Property="BorderThickness" Value="0"/>
|
|
</Style>
|
|
<Style Selector="views|FileListView[IsDragActive=true] Border#DropZone">
|
|
<Setter Property="BorderBrush" Value="Red"/>
|
|
<Setter Property="BorderThickness" Value="2"/>
|
|
</Style>
|
|
|
|
</UserControl.Styles>
|
|
|
|
<Border x:Name="DropZone"
|
|
Background="#1E1E1E"
|
|
Padding="10"
|
|
DragDrop.AllowDrop="True"
|
|
DragDrop.Drop="OnDrop"
|
|
DragDrop.DragOver="OnDragOver"
|
|
DragDrop.DragEnter="OnDragEnter"
|
|
DragDrop.DragLeave="OnDragLeave">
|
|
|
|
|
|
|
|
<ScrollViewer>
|
|
<ListBox ItemsSource="{Binding Files}"
|
|
SelectedItems="{Binding SelectedFiles}"
|
|
SelectedItem="{Binding Selected}"
|
|
SelectionMode="Multiple"
|
|
BorderThickness="0"
|
|
Background="Transparent">
|
|
|
|
<ListBox.ItemsPanel>
|
|
<ItemsPanelTemplate>
|
|
<WrapPanel Orientation="Horizontal"/>
|
|
</ItemsPanelTemplate>
|
|
</ListBox.ItemsPanel>
|
|
|
|
<ListBox.Styles>
|
|
<Style Selector="ListBoxItem:selected /template/ ContentPresenter">
|
|
<Setter Property="Background" Value="#9A9A9A"/>
|
|
</Style>
|
|
</ListBox.Styles>
|
|
|
|
<ListBox.ItemTemplate>
|
|
<DataTemplate x:DataType="vm:JobViewModel">
|
|
<Border x:Name="ItemRoot"
|
|
Margin="0"
|
|
Padding="0"
|
|
CornerRadius="4"
|
|
Background="#2A2A2A">
|
|
<StackPanel MinWidth="160" MaxWidth="160">
|
|
|
|
<Border Width="160" Height="90" ClipToBounds="True">
|
|
<Grid>
|
|
<Image Source="{Binding Thumbnail}"
|
|
Stretch="UniformToFill"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"/>
|
|
|
|
<TextBlock FontFamily="{StaticResource FontAwesome}"
|
|
Text="{Binding SuggestedAction, Converter={StaticResource ActionToIconConverter}}"
|
|
FontSize="12"
|
|
HorizontalAlignment="Right"
|
|
Foreground="LimeGreen"/>
|
|
</Grid>
|
|
</Border>
|
|
|
|
<TextBlock Text="{Binding FileName}"
|
|
TextWrapping="Wrap"
|
|
Margin="0,6,0,0"
|
|
FontSize="10"/>
|
|
|
|
<ProgressBar MinWidth="160"
|
|
MaxWidth="160"
|
|
Height="10"
|
|
Margin="0,4,0,0"
|
|
Value="{Binding Progress.Percent}" />
|
|
</StackPanel>
|
|
</Border>
|
|
</DataTemplate>
|
|
</ListBox.ItemTemplate>
|
|
</ListBox>
|
|
</ScrollViewer>
|
|
</Border>
|
|
</UserControl>
|