tw
continuous-integration/drone/push Build is failing Details

Binding
Hugo LIVET 2 years ago
parent d9728cf0fc
commit 7e8d59e3c2

@ -41,7 +41,7 @@
SelectedItem="{Binding SelectedBanque}"
Margin="0,0,30,0"/>
<Picker Title="Choisir un Compte"
ItemsSource="{Binding ListeDesComptes}"
ItemsSource="{Binding AllCompte}"
ItemDisplayBinding="{Binding Nom}"
SelectedItem="{Binding SelectedCompte}"
Margin="30,0,0,0"/>

@ -1,5 +1,6 @@
using Model;
using System.Globalization;
namespace IHM.Desktop;
@ -23,8 +24,13 @@ public partial class CV_credit : ContentView
private void Button_Valider(object sender, EventArgs e)
{
string nom = name.Text;
double Montant = Double.Parse(montant.Text);
NumberFormatInfo provider = new NumberFormatInfo();
provider.NumberDecimalSeparator = ".";
string nom = name.Text;
double Montant = Convert.ToDouble(montant.Text, provider); //Double.Parse(montant.Text);
string Type = type.Text;
string Tag = tag.Text;
DateTime Date = date.Date;
@ -52,7 +58,7 @@ public partial class CV_credit : ContentView
Operation operation = new Operation(nom, Montant, Date, mp2, to2, false, false) ;
Mgr.effectuerOperation(Mgr.SelectedCompte, operation);
Mgr.Pers.AjouterOperation(Mgr.SelectedCompte, operation);
Navigation.PushAsync(new Dashboard());

@ -42,7 +42,7 @@
<ContentView Grid.Column="0" Grid.Row="3" Grid.ColumnSpan="4" Grid.RowSpan="2" Margin="10">
<CollectionView ItemsSource="{Binding ListeDesComptes }" Grid.Row="3" Grid.ColumnSpan="4" Grid.RowSpan="2" >
<CollectionView ItemsSource="{Binding AllCompte }" Grid.Row="3" Grid.ColumnSpan="4" Grid.RowSpan="2" >
<CollectionView.ItemTemplate>

Loading…
Cancel
Save