up vote 1 down vote favorite
share [g+] share [fb]

I'm currently learning to develop for the .net compact framework using c# in VS2008 and have a databinding query. The list binds fine in Form1_Load, however when I add additional people to the list they don't appear in dataGrid1 (although if I remove and re-add the binding they do appear). Is there something that I need to do after I add a person?

    class Person
    {
        private string firstname;
        private string surname;

        public string FirstName { get { return firstname; } set { firstname = value; } }
        public string Surname { get { return surname; } set { surname = value; } }

        public Person(string F, string S)
        {
            this.firstname = F;
            this.surname = S;
        }
    }

    private void btnAdd_Click(object sender, EventArgs e)
    {
        people.Add(new Person(tbFirstName.Text, tbSurname.Text));
    }

    class People : List<Person>
    {
    }

    People people = new People();

    private void Form1_Load(object sender, EventArgs e)
    {
        people.Add(new Person("Jim", "Jones"));
        people.Add(new Person("Al", "Hill"));
        people.Add(new Person("Darth", "Vader"));
        dataGrid1.DataSource = people;
    }
link|improve this question

52% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Change your declaration of "people" to this:

class People : BindingList<Person> { }

Plain old List<T> doesn't have the underlying events to tell the databinding UI when the list changed. Using BindingList<T> should get you going.

link|improve this answer
dude, you rock - answered my question in 7 minutes ;-) – Alister May 19 '09 at 8:04
much better than my solution of reassigning the DataSource :-) – tjjjohnson May 19 '09 at 20:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.