|
|
@ -4,33 +4,51 @@
|
|
|
|
x:Class="Banquale.Views.Transfer.RibPage"
|
|
|
|
x:Class="Banquale.Views.Transfer.RibPage"
|
|
|
|
Title="RIB">
|
|
|
|
Title="RIB">
|
|
|
|
|
|
|
|
|
|
|
|
<VerticalStackLayout>
|
|
|
|
<VerticalStackLayout
|
|
|
|
|
|
|
|
VerticalOptions="Center">
|
|
|
|
|
|
|
|
|
|
|
|
<Grid RowDefinitions="auto, auto, auto"
|
|
|
|
<Grid RowDefinitions="auto, auto"
|
|
|
|
ColumnDefinitions="*, auto" >
|
|
|
|
ColumnDefinitions="*"
|
|
|
|
|
|
|
|
Margin="30">
|
|
|
|
|
|
|
|
|
|
|
|
<Label Text="RIB" />
|
|
|
|
<Label Text="RIB"
|
|
|
|
|
|
|
|
Margin="0, 0, 0, 10"
|
|
|
|
|
|
|
|
FontSize="Body"/>
|
|
|
|
|
|
|
|
|
|
|
|
<Label Text="{Binding SelectedAccount.IBAN}"
|
|
|
|
<Label Text="{Binding SelectedAccount.IBAN}"
|
|
|
|
Grid.Row="1" />
|
|
|
|
Grid.Row="1"
|
|
|
|
|
|
|
|
Margin="0, 0, 0, 10"/>
|
|
|
|
|
|
|
|
|
|
|
|
<Image Source="dotnet_bot.png"
|
|
|
|
</Grid>
|
|
|
|
Grid.Column="1"
|
|
|
|
|
|
|
|
Grid.RowSpan="2"
|
|
|
|
|
|
|
|
MaximumHeightRequest="50" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<BoxView Grid.ColumnSpan="2"
|
|
|
|
<BoxView Grid.ColumnSpan="2"
|
|
|
|
Grid.Row="2"
|
|
|
|
Grid.Row="2"
|
|
|
|
WidthRequest="400"
|
|
|
|
WidthRequest="300"
|
|
|
|
HeightRequest="1.5" />
|
|
|
|
HeightRequest="1.5" />
|
|
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
<Grid ColumnDefinitions="auto, auto"
|
|
|
|
|
|
|
|
RowDefinitions="auto, auto"
|
|
|
|
|
|
|
|
Margin="30">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Label
|
|
|
|
|
|
|
|
Grid.ColumnSpan="2"
|
|
|
|
|
|
|
|
Grid.Row="0"
|
|
|
|
|
|
|
|
Text="Titulaire du compte"
|
|
|
|
|
|
|
|
FontSize="Body"/>
|
|
|
|
|
|
|
|
|
|
|
|
<Label
|
|
|
|
<Label
|
|
|
|
Text="Titulaire du compte" />
|
|
|
|
Text="{Binding SelectedCustomer.Name, StringFormat='Mr {0}'}"
|
|
|
|
|
|
|
|
Grid.Column="0"
|
|
|
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
|
|
|
Margin="5"/>
|
|
|
|
|
|
|
|
|
|
|
|
<Label Text="{Binding SelectedCustomer.Name}" />
|
|
|
|
<Label
|
|
|
|
<Label Text="{Binding SelectedCustomer.FirstName}" />
|
|
|
|
Text="{Binding SelectedCustomer.FirstName}"
|
|
|
|
|
|
|
|
Grid.Column="1"
|
|
|
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
|
|
|
Margin="5"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
|
|
<!--<Button Text="Télécharger le RIB"
|
|
|
|
<!--<Button Text="Télécharger le RIB"
|
|
|
|
HeightRequest="150"
|
|
|
|
HeightRequest="150"
|
|
|
|