parent
c94d6b1e2a
commit
fdf716dde3
@ -1,83 +1,81 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
x:Class="MusiLib.Views.Accueil"
|
x:Class="MusiLib.Views.Accueil"
|
||||||
xmlns:model="clr-namespace:MusiLib.Model"
|
xmlns:model="clr-namespace:MusiLib.Model"
|
||||||
Title="Accueil"
|
Title="Accueil"
|
||||||
BackgroundColor="White">
|
BackgroundColor="White">
|
||||||
|
|
||||||
<ScrollView>
|
<ScrollView>
|
||||||
<Grid x:Name="grille">
|
<Grid x:Name="grille">
|
||||||
<Grid.RowDefinitions >
|
<Grid.RowDefinitions >
|
||||||
<RowDefinition Height="85"/>
|
<RowDefinition Height="85"/>
|
||||||
<RowDefinition/>
|
<RowDefinition/>
|
||||||
<RowDefinition/>
|
<RowDefinition/>
|
||||||
<RowDefinition/>
|
<RowDefinition/>
|
||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition/>
|
<ColumnDefinition/>
|
||||||
<ColumnDefinition/>
|
<ColumnDefinition/>
|
||||||
<ColumnDefinition/>
|
<ColumnDefinition/>
|
||||||
<ColumnDefinition/>
|
<ColumnDefinition/>
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
|
|
||||||
|
|
||||||
<! --
|
<Rectangle Grid.Row="0" Grid.Column="0"
|
||||||
<Rectangle Grid.Row="0" Grid.Column="0"
|
BackgroundColor="#64C1FF"
|
||||||
BackgroundColor="#64C1FF"
|
WidthRequest="650"
|
||||||
WidthRequest="650"
|
HeightRequest="65"
|
||||||
HeightRequest="65"
|
VerticalOptions="Start"
|
||||||
VerticalOptions="Start"
|
HorizontalOptions="Start"
|
||||||
HorizontalOptions="Start"
|
/>
|
||||||
/>
|
|
||||||
-->
|
|
||||||
|
<Image Grid.Row="0" Grid.Column="0"
|
||||||
|
Source="logo.png"
|
||||||
<Image Grid.Row="0" Grid.Column="0"
|
WidthRequest="60"
|
||||||
Source="logo.png"
|
HeightRequest="60"
|
||||||
WidthRequest="60"
|
VerticalOptions="Start"
|
||||||
HeightRequest="60"
|
HorizontalOptions="Start"
|
||||||
VerticalOptions="Start"
|
/>
|
||||||
HorizontalOptions="Start"
|
|
||||||
/>
|
<SearchBar Grid.Row="0" Grid.Column="1"
|
||||||
|
WidthRequest="175"
|
||||||
<SearchBar Grid.Row="0" Grid.Column="1"
|
MaximumWidthRequest="175"
|
||||||
WidthRequest="175"
|
VerticalOptions="Start"
|
||||||
MaximumWidthRequest="175"
|
HorizontalOptions="Center"
|
||||||
VerticalOptions="Start"
|
Margin="25,5,0,0"
|
||||||
HorizontalOptions="Center"
|
TextColor="White"
|
||||||
Margin="25,5,0,0"
|
CancelButtonColor="White"
|
||||||
TextColor="White"
|
Placeholder="Rechercher ..."
|
||||||
CancelButtonColor="White"
|
PlaceholderColor="White"
|
||||||
Placeholder="Rechercher ..."
|
VerticalTextAlignment="Center"
|
||||||
PlaceholderColor="White"
|
HorizontalTextAlignment="Start"
|
||||||
VerticalTextAlignment="Center"
|
TextChanged="SearchBar_TextChanged"
|
||||||
HorizontalTextAlignment="Start"
|
/>
|
||||||
TextChanged="SearchBar_TextChanged"
|
|
||||||
/>
|
<ImageButton Grid.Row="0" Grid.Column="2"
|
||||||
|
Source="tri.png"
|
||||||
<ImageButton Grid.Row="0" Grid.Column="2"
|
WidthRequest="60"
|
||||||
Source="tri.png"
|
HeightRequest="60"
|
||||||
WidthRequest="60"
|
VerticalOptions="Start"
|
||||||
HeightRequest="60"
|
HorizontalOptions="Center"
|
||||||
VerticalOptions="Start"
|
Margin="100,3,0,0"
|
||||||
HorizontalOptions="Center"
|
Clicked="TriButton_Clicked"
|
||||||
Margin="100,3,0,0"
|
/>
|
||||||
Clicked="TriButton_Clicked"
|
|
||||||
/>
|
<ImageButton Grid.Row="0" Grid.Column="3"
|
||||||
|
Source="etoile.png"
|
||||||
<ImageButton Grid.Row="0" Grid.Column="3"
|
WidthRequest="50"
|
||||||
Source="etoile.png"
|
HeightRequest="50"
|
||||||
WidthRequest="50"
|
Margin="0,5,0,0"
|
||||||
HeightRequest="50"
|
VerticalOptions="Start"
|
||||||
Margin="0,5,0,0"
|
HorizontalOptions="End"
|
||||||
VerticalOptions="Start"
|
Clicked="GoToFavorisButton"
|
||||||
HorizontalOptions="End"
|
/>
|
||||||
Clicked="GoToFavorisButton"
|
|
||||||
/>
|
|
||||||
|
</Grid>
|
||||||
|
</ScrollView>
|
||||||
</Grid>
|
|
||||||
</ScrollView>
|
</ContentPage>
|
||||||
|
|
||||||
</ContentPage>
|
|
||||||
|
Loading…
Reference in new issue