62 lines
3.0 KiB
XML
62 lines
3.0 KiB
XML
<?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="HegreHotel.Views.Client.ClientsPage"
|
|
Title="Gestion des Clients"
|
|
Appearing="ClientsPage_OnAppearing">
|
|
|
|
<StackLayout Padding="15" Spacing="10">
|
|
|
|
<!-- Bouton Ajouter Client -->
|
|
<Button Text="Ajouter Client"
|
|
Clicked="OnAjouterClientClicked"
|
|
HorizontalOptions="Center"
|
|
BackgroundColor="#007AFF"
|
|
TextColor="White"
|
|
CornerRadius="10"
|
|
Padding="10"
|
|
FontAttributes="Bold"
|
|
WidthRequest="200"/>
|
|
|
|
<!-- Liste des clients -->
|
|
<ListView x:Name="ClientsListView" HasUnevenRows="True" ItemTapped="OnClientTapped">
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate>
|
|
<ViewCell>
|
|
<Frame Padding="10" CornerRadius="10" BackgroundColor="White" BorderColor="#E5E7EB" Margin="0,5">
|
|
<StackLayout Orientation="Horizontal" Spacing="15">
|
|
<!-- Icône ou Avatar -->
|
|
<Image Source="user_icon.png" WidthRequest="40" HeightRequest="40"/>
|
|
|
|
<!-- Infos du client -->
|
|
<VerticalStackLayout>
|
|
<Label Text="{Binding Nom}" FontAttributes="Bold" FontSize="16"/>
|
|
<Label Text="{Binding Prenom}" FontSize="14" TextColor="Gray"/>
|
|
</VerticalStackLayout>
|
|
|
|
<!-- Actions Modifier / Supprimer -->
|
|
<StackLayout Orientation="Horizontal" HorizontalOptions="EndAndExpand" Spacing="5">
|
|
<ImageButton Source="edit_icon.png"
|
|
Clicked="OnModifierClientClicked"
|
|
CommandParameter="{Binding .}"
|
|
HeightRequest="30"
|
|
WidthRequest="30"
|
|
BackgroundColor="Transparent"/>
|
|
<ImageButton Source="delete_icon.png"
|
|
Clicked="OnSupprimerClientClicked"
|
|
CommandParameter="{Binding .}"
|
|
HeightRequest="30"
|
|
WidthRequest="30"
|
|
BackgroundColor="Transparent"/>
|
|
</StackLayout>
|
|
</StackLayout>
|
|
</Frame>
|
|
</ViewCell>
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
</ListView>
|
|
|
|
</StackLayout>
|
|
|
|
</ContentPage>
|