You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
4.3 KiB
79 lines
4.3 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:local="clr-namespace:Ohara"
|
|
x:Class="Ohara.PageIle"
|
|
Title="PageIle"
|
|
Appearing="ContentPage_Appearing"
|
|
BackgroundColor="#e2edf1">
|
|
<VerticalStackLayout Spacing="40">
|
|
<Grid ColumnDefinitions="200,*,100,10,150" BackgroundColor="#72a3b3" Padding="10">
|
|
<SearchBar x:Name="searchBar" Placeholder="Rechercher..." Style="{StaticResource searchBarOhara}" Grid.Column="0"/>
|
|
<Button Text="Ajouter" Clicked="Button_Clicked" Style="{StaticResource buttonBarre}" Grid.Column="4"/>
|
|
<Picker Title="Filtrer" Grid.Column="2" SelectedIndexChanged="PickerFiltre_SelectedIndexChanged" Style="{StaticResource pickerOhara}" >
|
|
<Picker.ItemsSource>
|
|
<x:Array Type="{x:Type x:String}">
|
|
<x:String>Aucun</x:String>
|
|
<x:String>East Blue</x:String>
|
|
<x:String>West Blue</x:String>
|
|
<x:String>North Blue</x:String>
|
|
<x:String>South Blue</x:String>
|
|
<x:String>Grand Line</x:String>
|
|
</x:Array>
|
|
</Picker.ItemsSource>
|
|
</Picker>
|
|
</Grid>
|
|
<ScrollView Orientation="Horizontal" HorizontalScrollBarVisibility="Always">
|
|
<CollectionView x:Name="listeIle" ItemsSource="{Binding Iles}" ItemsLayout="HorizontalList" EmptyView="Aucun résultat trouvé." SelectionMode="Single" SelectionChanged="listeIle_SelectionChanged" >
|
|
<CollectionView.ItemTemplate>
|
|
<DataTemplate>
|
|
<Grid Padding="50" ColumnSpacing="10">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="400"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="750"/>
|
|
</Grid.RowDefinitions>
|
|
<Frame
|
|
CornerRadius="25"
|
|
BorderColor="#e2edf1"
|
|
IsClippedToBounds="True"
|
|
Padding="0"
|
|
HeightRequest="800"
|
|
WidthRequest="450">
|
|
<Image
|
|
Source="{Binding Image}"
|
|
|
|
Aspect="Fill"
|
|
/>
|
|
</Frame>
|
|
<Frame Style="{StaticResource frameObjet2}">
|
|
|
|
|
|
<StackLayout Orientation="Vertical" Spacing="25" VerticalOptions="Center">
|
|
<Label
|
|
Text="{Binding Nom}"
|
|
FontAttributes="Bold"
|
|
FontSize="22"
|
|
TextColor="#72a3b3"
|
|
HorizontalOptions="Center"
|
|
/>
|
|
<Line X1="0" X2="500" Stroke="#72a3b3" StrokeThickness="2"/>
|
|
<Label
|
|
Text="Cliquez ici pour voir en détail"
|
|
FontAttributes="Bold,Italic"
|
|
FontSize="15"
|
|
TextColor="#72a3b3"
|
|
TextDecorations="Underline"
|
|
HorizontalOptions="Center"/>
|
|
|
|
</StackLayout>
|
|
</Frame>
|
|
</Grid>
|
|
</DataTemplate>
|
|
</CollectionView.ItemTemplate>
|
|
</CollectionView>
|
|
</ScrollView>
|
|
</VerticalStackLayout>
|
|
</ContentPage>
|