<?xml version="1.0" encoding="UTF-8"?> <ContentView xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:imgBtn="clr-namespace:Aurora.Design.Components.ImageButton" x:Class="Aurora.Design.Components.MediaPlayer.Player"> <ContentView.Resources> <StyleSheet Source="Player.css"/> </ContentView.Resources> <ContentView.Content> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="200"/> <ColumnDefinition Width="*"/> <ColumnDefinition Width="100"/> </Grid.ColumnDefinitions> <StackLayout Grid.Column="0" Orientation="Horizontal"> <BoxView x:Name="AlbumArtBoxView"/> <StackLayout x:Name="MediaInfoContainer" HorizontalOptions="StartAndExpand"> <Label x:Name="SongTitleLabel" LineBreakMode="TailTruncation"/> <Label x:Name="ArtistNameLabel" LineBreakMode="TailTruncation"/> </StackLayout> </StackLayout> <StackLayout x:Name="PlayerControlContainer" Grid.Column="1" HorizontalOptions="Center" Orientation="Horizontal"> <imgBtn:ImageButton x:Name="ShuffleButton" StyleClass="LibraryButton" Source="Resources/shuffle.png"/> <imgBtn:ImageButton x:Name="PreviousButton" StyleClass="DirectionButton" Source="Resources/backward.png"/> <imgBtn:ImageButton x:Name="PlayButton" StyleClass="PlayButton"/> <imgBtn:ImageButton x:Name="NextButton" StyleClass="DirectionButton" Source="Resources/forwards.png"/> <imgBtn:ImageButton x:Name="LoopButton" StyleClass="LibraryButton" Source="Resources/loop.png"/> </StackLayout> </Grid> </ContentView.Content> </ContentView>