|
|
|
@ -11,6 +11,8 @@
|
|
|
|
|
<ContentPage.Resources>
|
|
|
|
|
<ResourceDictionary>
|
|
|
|
|
<conv:SongsInfoConverter x:Key="SongsInfo" />
|
|
|
|
|
<conv:AlbumDetailsConverter x:Key="AlbumDetails" />
|
|
|
|
|
<conv:CopyrightInfoConverter x:Key="CopyrightInfo" />
|
|
|
|
|
</ResourceDictionary>
|
|
|
|
|
</ContentPage.Resources>
|
|
|
|
|
|
|
|
|
@ -56,9 +58,9 @@
|
|
|
|
|
HorizontalTextAlignment="Center" />
|
|
|
|
|
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Label Grid.Row="2"
|
|
|
|
|
Text="{Binding Details, StringFormat='\{0\} · \{1\}'}"
|
|
|
|
|
Text="{Binding Details, Converter={StaticResource AlbumDetails}}"
|
|
|
|
|
FontSize="{StaticResource DetailsFontSize}"
|
|
|
|
|
TextColor="{StaticResource Gray}"
|
|
|
|
|
HorizontalTextAlignment="Center"/>
|
|
|
|
@ -132,7 +134,7 @@
|
|
|
|
|
<Label Text="{Binding SongsInfo, Converter={StaticResource SongsInfo}}"
|
|
|
|
|
Style="{StaticResource FooterLabel}" />
|
|
|
|
|
|
|
|
|
|
<Label Text="{Binding CopyrightInfo, StringFormat='℗ \{0\} \{1\}'}"
|
|
|
|
|
<Label Text="{Binding CopyrightInfo, Converter={StaticResource CopyrightInfo}}"
|
|
|
|
|
Style="{StaticResource FooterLabel}" />
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|