예제 #1
0
        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;
        }
예제 #2
0
 public VoirAction()
 {
     InitializeComponent();
     dgVoirAction.ItemsSource = AdoAction.All();
 }