@ -1,6 +1,7 @@
using Model ;
using Model ;
using Microsoft.Maui.Controls ;
using Microsoft.Maui.Controls ;
using Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific ;
using Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific ;
using System.Diagnostics ;
namespace IHM ;
namespace IHM ;
@ -10,15 +11,26 @@ public partial class DashBoard : ContentPage
public DashBoard ( )
public DashBoard ( )
{
{
InitializeComponent ( ) ;
InitializeComponent ( ) ;
BindingContext = Mgr ;
//Routing.RegisterRoute(nameof(DashBoard), typeof(DashBoard));
//Routing.RegisterRoute(nameof(DashBoard), typeof(DashBoard));
if ( Mgr . SelectedInscrit = = null )
if ( Mgr . SelectedInscrit = = null )
{
{
loadInscription ( ) ;
loadInscription ( ) ;
}
}
}
}
void OnClickedBanque ( object sender , EventArgs args )
{
/ * foreach ( Button but in CollectionView )
{
} * /
Button btn = ( Button ) sender ;
btn . IsEnabled = false ;
ImgBanqueActuelle . Text = btn . Text ;
}
async void OnClickedGestionBanque ( object sender , EventArgs args )
async void OnClickedGestionBanque ( object sender , EventArgs args )
{
{
Bouton . IsEnabled = false ;
Bouton . IsEnabled = false ;
@ -26,6 +38,7 @@ public partial class DashBoard : ContentPage
await Bouton . TranslateTo ( - 130 , 35 , 50 ) ;
await Bouton . TranslateTo ( - 130 , 35 , 50 ) ;
await Bouton . ScaleXTo ( 7.5 , 50 ) ;
await Bouton . ScaleXTo ( 7.5 , 50 ) ;
await Bouton . ScaleYTo ( 3 , 50 ) ;
await Bouton . ScaleYTo ( 3 , 50 ) ;
stackpannel . IsVisible = true ;
BoutonRetour . IsVisible = true ;
BoutonRetour . IsVisible = true ;
ImgBanqueActuelle . IsVisible = true ;
ImgBanqueActuelle . IsVisible = true ;
@ -37,6 +50,7 @@ public partial class DashBoard : ContentPage
await Bouton . ScaleXTo ( 1 , 50 ) ;
await Bouton . ScaleXTo ( 1 , 50 ) ;
await Bouton . ScaleYTo ( 1 , 50 ) ;
await Bouton . ScaleYTo ( 1 , 50 ) ;
ImgBanqueActuelle . IsVisible = false ;
ImgBanqueActuelle . IsVisible = false ;
stackpannel . IsVisible = false ;
await Bouton . TranslateTo ( 0 , 0 , 50 ) ;
await Bouton . TranslateTo ( 0 , 0 , 50 ) ;
BoutonRetour . IsVisible = false ;
BoutonRetour . IsVisible = false ;
Bouton . IsEnabled = true ;
Bouton . IsEnabled = true ;