|
|
@ -1,8 +1,14 @@
|
|
|
|
<?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="Banquale.Views.NewPage1"
|
|
|
|
xmlns:model="clr-namespace:Banquale.Model"
|
|
|
|
Title="NewPage1">
|
|
|
|
x:Class="Banquale.Views.NewPage1">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ContentPage.BindingContext>
|
|
|
|
|
|
|
|
<model:Manager/>
|
|
|
|
|
|
|
|
</ContentPage.BindingContext>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<VerticalStackLayout>
|
|
|
|
<VerticalStackLayout>
|
|
|
|
<Label
|
|
|
|
<Label
|
|
|
|
Text="Welcome to .NET MAUI!"
|
|
|
|
Text="Welcome to .NET MAUI!"
|
|
|
@ -13,8 +19,21 @@
|
|
|
|
Text="Click me"
|
|
|
|
Text="Click me"
|
|
|
|
Clicked="Button_Clicked"/>
|
|
|
|
Clicked="Button_Clicked"/>
|
|
|
|
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
<Button
|
|
|
|
ItemsSource="{Binding Client}" />
|
|
|
|
Clicked="ArrowBack" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ListView ItemsSource="{Binding ListeClients}" x:Name="ListViewID">
|
|
|
|
|
|
|
|
<ListView.ItemTemplate>
|
|
|
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
|
|
|
<ViewCell>
|
|
|
|
|
|
|
|
<Label Text="{Binding Nom}" />
|
|
|
|
|
|
|
|
</ViewCell>
|
|
|
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
|
|
|
</ListView.ItemTemplate>
|
|
|
|
|
|
|
|
</ListView>
|
|
|
|
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
</VerticalStackLayout>
|
|
|
|
</ContentPage>
|
|
|
|
</ContentPage>
|
|
|
|