Bonjour,

Je suis un peu perdu. Voilà un code exemple qui ne fonctionne pas:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
 
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
 
namespace Telerik
{
    public partial class Form1 : Form
    {
 
        private List<Personne> Personnes = new List<Personne>();
 
        public Form1()
        {
            InitializeComponent();
        }
 
        private void Form1_Load(object sender, EventArgs e)
        {
            Personnes.Add(new Personne("Pierre", 1));
            Personnes.Add(new Personne("Paul", 2));
            Personnes.Add(new Personne("Jacques", 3));
 
            ElementList.ValueMember = "ID";
            ElementList.DisplayMember = "Nom";
            ElementList.DataSource = Personnes;
        }
 
        private void ElementList_SelectedValueChanged(object sender, EventArgs e)
        {
            propertyGrid1.SelectedObject = ElementList.SelectedItem;
        }
 
        private void button1_Click(object sender, EventArgs e)
        {
            Personnes.Add(new Personne("Nicolas", 4));
            MessageBox.Show(Personnes.Count.ToString());
        }
 
    }
 
    public class Personne
    {
        private string _Nom;
 
        [Browsable(false)]
        public int ID { get; set; }
 
        public int Age { get; set; }
 
        public string Nom 
        {
            get { return _Nom; }
            set { _Nom = value;}
        }
 
        public Personne(string nom, int id)
        {
            Nom = nom;
            ID = id;
        }
 
        public override string ToString()
        {
            return Nom;
        }
    }
 
}
Donc, sur le button1_Click, j'ajoute un objet à ma liste Personnes mais il n'apparait pas dans la listbox. Pourtant, la ligne

MessageBox.Show(Personnes.Count.ToString());

affiche bien 4 éléments.

Que dois-je faire pour que chaque ajout soit pris en compte dans la List<> ET dans la listbox ?

J-L