- Admin
- #61
There is genreally some issues wit covers. I have several cases, where binding to the mediaitemid does not work (see WIP2.3 thread from last week).View attachment 203058
@ge2301
Ich konnte das Cover anzeigen, musste aber im Screen eine Änderung vornehmen, nämlich das Cover vom FanArtService zu laden, anstatt direct an das MediaItem zu binden.
Im (BV) FullscreenContentAudio.xaml, Zeile: 155 steht jetzt:
XML:<Image x:Name="Thumb" Stretch="Fill" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Width="300" Height="300" Margin="0,0,0,0"> <Image.Source> <fanart:FanArtImageSource fanart:FanArtMediaType="Audio" fanart:FanArtType="Thumbnail" fanart:FanArtName="{Binding Source={Binding MediaItem}, Path=MediaItemId}" fanart:MaxWidth="300" fanart:MaxHeight="300"/> </Image.Source> </Image>
Ich bin aber nicht sicher, ob das richtig ist, da dies sicher schon funktioniert hat. Kannst du dir das bitte mal ansehen?
I used your code and added the previous as FallbackSource, then something should be shown in any case:
XML:
<Image x:Name="Thumb" Stretch="Fill"
HorizontalAlignment="Stretch" FallbackSource="{Binding MediaItem}"
VerticalAlignment="Stretch" Width="300" Height="300" Margin="0,0,0,0">
<Image.Source>
<fanart:FanArtImageSource fanart:FanArtMediaType="Audio" fanart:FanArtType="Thumbnail" fanart:FanArtName="{Binding Source={Binding MediaItem}, Path=MediaItemId}"
fanart:MaxWidth="300" fanart:MaxHeight="300"/>
</Image.Source>
</Image>
Edit: Changes pushed to WiP2.2.3 branch for all skins.
Last edited: