1234567891011121314151617181920212223242526 |
- <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"
- mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
- x:Class="Avalonia.UI.Views.NewVid">
- <StackPanel Spacing="5" Width="200">
- <Border CornerRadius="10" ClipToBounds="True">
- <Panel Background="#7FFF22DD">
- <Image Width="200" Stretch="Uniform" Source="{Binding Cover}" />
- <Panel Height="200" IsVisible="{Binding Cover, Converter={x:Static ObjectConverters.IsNull}}">
- <PathIcon Height="75" Width="75" Data="{StaticResource Default_Picture}" />
- </Panel>
- </Panel>
- </Border>
- <TextBlock Text="{Binding Title}" HorizontalAlignment="Center" />
- <TextBlock Text="{Binding FullName}" HorizontalAlignment="Center" />
- <ListBox Items="{Binding SearchResults}" SelectedItem="{Binding SelectedSomething}" Background="Transparent" Margin="0 20">
- <ListBox.ItemsPanel>
- <ItemsPanelTemplate>
- <WrapPanel />
- </ItemsPanelTemplate>
- </ListBox.ItemsPanel>
- </ListBox>
- </StackPanel>
- </UserControl>
|