|
|
@ -9,8 +9,9 @@
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="0.5*"/>
|
|
|
|
<RowDefinition Height="0.5*"/>
|
|
|
|
<RowDefinition Height="0.75*"/>
|
|
|
|
<RowDefinition Height="0.75*"/>
|
|
|
|
<RowDefinition Height="5*"/>
|
|
|
|
<RowDefinition Height="2*"/>
|
|
|
|
<RowDefinition Height="1*"/>
|
|
|
|
<RowDefinition Height="4*"/>
|
|
|
|
|
|
|
|
<RowDefinition Height="2*"/>
|
|
|
|
|
|
|
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
@ -38,31 +39,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ContentView Grid.Column="0" Grid.Row="2" Grid.ColumnSpan="2" Grid.RowSpan="2" >
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ContentView Grid.Column="0" Grid.Row="3" Grid.ColumnSpan="4" Grid.RowSpan="2" Margin="10">
|
|
|
|
|
|
|
|
|
|
|
|
<Grid>
|
|
|
|
<CollectionView ItemsSource="{Binding AllCompte }" Grid.Row="3" Grid.ColumnSpan="4" Grid.RowSpan="2" >
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
|
|
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<CollectionView.ItemTemplate>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
|
|
|
<Grid Margin="20">
|
|
|
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
|
|
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Label Grid.Column="0" Text="{Binding SelectedCompte.Nom}"
|
|
|
|
<Label Grid.Column="0" Text="{Binding Nom}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TextColor="{StaticResource Secondary}"
|
|
|
|
TextColor="{StaticResource Secondary}"
|
|
|
|
FontAttributes="Bold" FontSize="Large"
|
|
|
|
FontAttributes="Bold" FontSize="Large"
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
VerticalOptions="Center"/>
|
|
|
|
VerticalOptions="Center"/>
|
|
|
|
|
|
|
|
|
|
|
|
<Label Grid.Column="1" Text="{Binding SelectedCompte.Solde}"
|
|
|
|
<Label Grid.Column="1" Text="{Binding Solde}"
|
|
|
|
TextColor="{StaticResource Secondary}"
|
|
|
|
TextColor="{StaticResource Secondary}"
|
|
|
|
FontAttributes="Bold" FontSize="Large"
|
|
|
|
FontAttributes="Bold" FontSize="Large"
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
VerticalOptions="Center"/>
|
|
|
|
VerticalOptions="Center"/>
|
|
|
|
|
|
|
|
|
|
|
|
<Label Grid.Column="1" Text="€"
|
|
|
|
<Label Grid.Column="1" Text="€"
|
|
|
|
TextColor="{StaticResource Secondary}"
|
|
|
|
TextColor="{StaticResource Secondary}"
|
|
|
|
FontAttributes="Bold" FontSize="Large"
|
|
|
|
FontAttributes="Bold" FontSize="Large"
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
HorizontalOptions="Center"
|
|
|
@ -70,11 +78,13 @@
|
|
|
|
Margin="120,0,0,0"/>
|
|
|
|
Margin="120,0,0,0"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
|
|
|
</CollectionView.ItemTemplate>
|
|
|
|
</ContentView>
|
|
|
|
</CollectionView>
|
|
|
|
|
|
|
|
</ContentView>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ContentView Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" Grid.RowSpan="4" x:Name="windowAjout">
|
|
|
|
<ContentView Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" Grid.RowSpan="4" x:Name="windowAjout">
|
|
|
|