public SupprimerJoueur()
 {
     InitializeComponent();
     this.profils = AdoProfil.All();
     cbxListeJoueurs.ItemsSource = null;
     cbxListeJoueurs.ItemsSource = this.profils;
 }
        public AjoutPoints()
        {
            InitializeComponent();
            this.profils = AdoProfil.All();
            cbxListeJoueurs.ItemsSource = null;
            cbxListeJoueurs.ItemsSource = this.profils;


            this.actions = AdoAction.All();
            cbxListeActions.ItemsSource = null;
            cbxListeActions.ItemsSource = this.actions;
        }
Esempio n. 3
0
 public VoirJoueur()
 {
     InitializeComponent();
     dgVoirJoueur.ItemsSource = AdoProfil.All();
 }