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.
42 lines
2.4 KiB
42 lines
2.4 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"
|
|
x:Class="Ohara.PageEquipage"
|
|
Title="PageEquipage"
|
|
Appearing="ContentPage_Appearing"
|
|
BackgroundColor="#e2edf1">
|
|
<ScrollView>
|
|
<VerticalStackLayout>
|
|
<Grid ColumnDefinitions="200,*,150" BackgroundColor="#72a3b3" Padding="10">
|
|
<SearchBar x:Name="searchBar" Placeholder="Rechercher..." Style="{StaticResource searchBarOhara}" Grid.Column="0"/>
|
|
<Button Text="Ajouter" Clicked="ButtonAjouter_Clicked" Style="{StaticResource buttonBarre}" Grid.Column="2"/>
|
|
</Grid>
|
|
<FlexLayout x:Name="listEquip" AlignItems="Center" Wrap="Wrap"
|
|
HorizontalOptions="Center" JustifyContent="SpaceEvenly">
|
|
<BindableLayout.ItemTemplate>
|
|
<DataTemplate>
|
|
<Frame Style="{StaticResource frameEquip}" Margin="0,10,0,0" >
|
|
<Frame.GestureRecognizers>
|
|
<TapGestureRecognizer CommandParameter="{Binding Nom}" Tapped="TapGestureRecognizer_Tapped"/>
|
|
</Frame.GestureRecognizers>
|
|
<StackLayout Orientation="Vertical" Padding="5">
|
|
<Image
|
|
Source="{Binding Image}"
|
|
HeightRequest="280"
|
|
WidthRequest="280" />
|
|
<Label
|
|
HorizontalOptions="Center"
|
|
VerticalOptions="Start"
|
|
HorizontalTextAlignment="Center"
|
|
Text="{Binding Nom}"
|
|
FontSize="19"
|
|
TextColor="White"
|
|
FontAttributes="Bold" />
|
|
</StackLayout>
|
|
</Frame>
|
|
</DataTemplate>
|
|
</BindableLayout.ItemTemplate>
|
|
</FlexLayout>
|
|
</VerticalStackLayout>
|
|
</ScrollView>
|
|
</ContentPage> |