35 lines
1.8 KiB
XML
35 lines
1.8 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.DetailsClientPage">
|
|
<ContentPage.Content>
|
|
<ScrollView>
|
|
<StackLayout Padding="10" Spacing="5">
|
|
<HorizontalStackLayout Spacing="5">
|
|
<Label Text="{Binding Nom}" FontAttributes="Bold" FontSize="18"/>
|
|
<Label Text="{Binding Prenom}" FontSize="18"/>
|
|
</HorizontalStackLayout>
|
|
<VerticalStackLayout>
|
|
<Label Text="{Binding Email}"/>
|
|
<Label Text="{Binding Telephone}"/>
|
|
</VerticalStackLayout>
|
|
<Label Text="Historique des réservations :" FontAttributes="Bold" FontSize="Large"/>
|
|
<ListView x:Name="ListeReservations">
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate>
|
|
<ViewCell>
|
|
<StackLayout Orientation="Horizontal" Padding="5" Spacing="10">
|
|
<Label Text="{Binding DateDebut, StringFormat='{0:dd/MM/yyyy}'}"/>
|
|
<Label Text="{Binding DateFin, StringFormat='{0:dd/MM/yyyy}'}"/>
|
|
<Label Text="{Binding NbInvite}"/>
|
|
<Label Text="{Binding ChambreNom}"/>
|
|
</StackLayout>
|
|
</ViewCell>
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
</ListView>
|
|
</StackLayout>
|
|
</ScrollView>
|
|
</ContentPage.Content>
|
|
</ContentPage> |