You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
929 B
37 lines
929 B
namespace IHM.Mobile;
|
|
|
|
public partial class Operations : ContentPage
|
|
{
|
|
public Manager Mgr => (App.Current as App).Manager;
|
|
public Operations()
|
|
{
|
|
InitializeComponent();
|
|
BindingContext = Mgr;
|
|
double test = Mgr.recupTotalSolde();
|
|
double i = test / 2000;
|
|
PrgressAnimationBar(i);
|
|
}
|
|
|
|
private void Button_Clicked(object sender, EventArgs e)
|
|
{
|
|
double test = Mgr.recupTotalSolde();
|
|
double i = test/2000;
|
|
PrgressAnimationBar(i);
|
|
UpdateArc();
|
|
}
|
|
private async void UpdateArc()
|
|
{
|
|
ActualisationButton.IsEnabled = false;
|
|
int timeRemaining = 60;
|
|
while (timeRemaining != 0)
|
|
{
|
|
timeRemaining--;
|
|
await Task.Delay(1000);
|
|
}
|
|
ActualisationButton.IsEnabled = true;
|
|
}
|
|
private async void PrgressAnimationBar(double progress)
|
|
{
|
|
await ProgressBarSolde.ProgressTo(0.75, 500, Easing.Linear);
|
|
}
|
|
} |