2019-05-18 17:25:36 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-05-19 17:25:42 -04:00
|
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
xmlns:dg="clr-namespace:Xamarin.Forms.DataGrid;assembly=Xamarin.Forms.DataGrid"
|
|
|
|
x:Class="Aurora.Frontend.Views.Songs.SongsView">
|
2019-05-18 17:25:36 -04:00
|
|
|
<ContentPage.Content>
|
2019-05-19 17:25:42 -04:00
|
|
|
<dg:DataGrid ItemsSource="{Binding SongsList}" SelectionEnabled="True" SelectedItem="{Binding SelectedSong}"
|
|
|
|
RowHeight="30" HeaderHeight="50" BorderColor="#CCCCCC" HeaderBackground="#E0E6F8">
|
|
|
|
|
|
|
|
<!-- Header -->
|
|
|
|
<dg:DataGrid.HeaderFontSize>
|
|
|
|
<OnIdiom x:TypeArguments="x:Double">
|
|
|
|
<OnIdiom.Tablet>15</OnIdiom.Tablet>
|
|
|
|
<OnIdiom.Phone>13</OnIdiom.Phone>
|
|
|
|
<OnIdiom.Desktop>20</OnIdiom.Desktop>
|
|
|
|
</OnIdiom>
|
|
|
|
</dg:DataGrid.HeaderFontSize>
|
|
|
|
|
|
|
|
<!-- Columns -->
|
|
|
|
<dg:DataGrid.Columns>
|
|
|
|
<dg:DataGridColumn Title="Title" PropertyName="Title" Width="2*"/>
|
|
|
|
<dg:DataGridColumn Title="Album" PropertyName="Album" Width="0.95*"/>
|
|
|
|
<dg:DataGridColumn Title="Artist" PropertyName="Artist" Width="1*"/>
|
|
|
|
<dg:DataGridColumn Title="Duration" PropertyName="Duration"/>
|
|
|
|
</dg:DataGrid.Columns>
|
|
|
|
|
|
|
|
<!-- Row Colors -->
|
|
|
|
<dg:DataGrid.RowsBackgroundColorPalette>
|
|
|
|
<dg:PaletteCollection>
|
|
|
|
<Color>#F2F2F2</Color>
|
|
|
|
<Color>#FFFFFF</Color>
|
|
|
|
</dg:PaletteCollection>
|
|
|
|
</dg:DataGrid.RowsBackgroundColorPalette>
|
|
|
|
|
|
|
|
|
|
|
|
</dg:DataGrid>
|
2019-05-18 17:25:36 -04:00
|
|
|
</ContentPage.Content>
|
|
|
|
</ContentPage>
|