|
|
@ -1,7 +1,8 @@
|
|
|
|
<?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="IHM.Mobile.DashBoard">
|
|
|
|
x:Class="IHM.Mobile.DashBoard">
|
|
|
|
|
|
|
|
<ScrollView>
|
|
|
|
<Grid>
|
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="0.25*"/>
|
|
|
|
<RowDefinition Height="0.25*"/>
|
|
|
@ -15,20 +16,39 @@
|
|
|
|
<ColumnDefinition/>
|
|
|
|
<ColumnDefinition/>
|
|
|
|
<ColumnDefinition/>
|
|
|
|
<ColumnDefinition/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
<StackLayout Orientation="Horizontal">
|
|
|
|
<HorizontalStackLayout Grid.Row="0" Grid.Column="0" VerticalOptions="Center">
|
|
|
|
<Label
|
|
|
|
<Image Source="Resources/Images/logo_sans_fond.png" HeightRequest="50" Margin="20"/>
|
|
|
|
Text="Bienvenue"
|
|
|
|
<Label Text="Cons'Eco" FontSize="20" VerticalOptions="Center" FontAttributes="Bold"/>
|
|
|
|
VerticalOptions="Center"
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
HorizontalOptions="Start"
|
|
|
|
|
|
|
|
Margin="10,10,10,20"
|
|
|
|
|
|
|
|
FontSize="25"
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
<Label
|
|
|
|
|
|
|
|
FontAttributes="Bold"
|
|
|
|
|
|
|
|
Margin="0,10,0,0"
|
|
|
|
|
|
|
|
Text="{Binding User.Prenom}"
|
|
|
|
|
|
|
|
FontSize="25"
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
</StackLayout>
|
|
|
|
<ImageButton Grid.Row="0" Grid.Column="1" Source="account_banks.png"
|
|
|
|
<ImageButton Grid.Row="0" Grid.Column="1" Source="account_banks.png"
|
|
|
|
HorizontalOptions="End" Padding="10" Margin="10"
|
|
|
|
HorizontalOptions="End" Padding="10" Margin="10"
|
|
|
|
CornerRadius="10" HeightRequest="65"
|
|
|
|
CornerRadius="10" HeightRequest="65"
|
|
|
|
BackgroundColor="{StaticResource Primary}"
|
|
|
|
BackgroundColor="{StaticResource Primary}"
|
|
|
|
Clicked="Banques_Clicked"/>
|
|
|
|
Clicked="Banques_Clicked"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Label Grid.Row="1" Grid.ColumnSpan="2" Text="Liste des Dernières Opérations : " FontAttributes="Bold" FontSize="Body" Padding="20,5,0,0"/>
|
|
|
|
<Label Grid.Row="1" Grid.ColumnSpan="2" Text="Liste des Dernières Opérations : " FontAttributes="Bold" FontSize="Body" Padding="20,5,0,0"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<CollectionView Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2" ItemsSource="{Binding LesOpe}">
|
|
|
|
<CollectionView Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2" ItemsSource="{Binding LesOpe}">
|
|
|
|
<CollectionView.ItemTemplate>
|
|
|
|
<CollectionView.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<DataTemplate>
|
|
|
@ -99,4 +119,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
</ContentPage>
|
|
|
|
</ContentPage>
|