views:

5845

answers:

4

So, every few months I write something in WinForms to remind myself why I hate it.

Today is the day.

I'm trying to bind a List<T> to a DataGridView control, and I'm not having any luck creating custom bindings (Ugh at all the late bound crap).

I tried:

gvProgramCode.DataBindings.Add(new Binding("Opcode",code,"Opcode"));

It throws an exception, saying that nothing was found by that propertyname.

The name of the column in question is "Opcode". The name of the property in the List<T> is Opcode.

I'm getting angry at winforms again.

EDIT: the problem was that I did not have the bindable fields in my object as properties, just public fields...Apparently it doesn't reflect on fields, just properties.

+4  A: 

Is the property on the grid you are binding to Opcode as well?.. if you want to bind directly to List you would just DataSource = list. The databindings allows custom binding. are you trying to do something other than the datasource?

You are getting a bunch of empty rows? do the auto generated columns have names? Have you verified data is in the object (not just string.empty) ?

    class MyObject
    {
        public string Something { get; set; }
        public string Text { get; set; }
        public string Other { get; set; }
    }

    public Form1()
    {
        InitializeComponent();

        List<MyObject> myList = new List<MyObject>();

        for (int i = 0; i < 200; i++)
        {
            string num = i.ToString();
            myList.Add(new MyObject { Something = "Something " + num , Text = "Some Row " + num , Other = "Other " + num  });
        }

        dataGridView1.DataSource = myList;
    }

this should work fine...

Quintin Robinson
Yes. If I just do DataSource = list, I get a bunch of empty columns.
FlySwat
So you just want to bind the grid to the opcode property in a list of custom objects?
Quintin Robinson
If what I asked is the cast then do... Grid.DataSource = MyList.Select(o => o.Opcode);
Quintin Robinson
There are three strings in class, Opcode is one of them. This class is the type for a List<T>, I want each string to be a column, and each list item to be a row...
FlySwat
Another thing.. the strings in the object are properties and not just public fields right?.. if you could post the definition of the object it might help as well.
Quintin Robinson
+1  A: 

I can't really tell what you're trying to do with the example you included, but binding to a generic list of objects is fairly straightforward if you just want to list the objects:

    private BindingSource _gridSource;

    private BindingSource GridSource
    {
        get
        {
            if (_gridSource == null)
                _gridSource = new BindingSource();
            return _gridSource;
        }
    }

    private void Form1_Load(object sender, EventArgs e)
    {
        List<FluffyBunny> list = new List<FluffyBunny>();
        list.Add(new FluffyBunny { Color = "White", EarType = "Long", Name = "Stan" });
        list.Add(new FluffyBunny { Color = "Brown", EarType = "Medium", Name = "Mike" });
        list.Add(new FluffyBunny { Color = "Mottled", EarType = "Short", Name = "Torvald" });

        GridSource.DataSource = list;
        dataGridView1.Columns["EarType"].Visible = false; //Optionally hide a column
        dataGridView1.DataSource = GridSource;

    }

If you only want to display specific properties of the List's type you should be able to make the unwanted column(s) invisible.

Technically, you don't really need to create the BindingSource, but I find it's a whole lot easier when I'm doing updates or changes if I have it.

Hope this helps.

Jared
When binding directly to the List<T>, I get a bunch of empty rows, no data.The class in List<T> just contains 3 strings.
FlySwat
Thanks Jared! Your comment about the BindingSource really helped me when I was trying to figure out how to create new rows when using a List<T>. Have a click!
IainMH
+1  A: 

Had the same issue... I had a struct with public fields obviously. nothing in the grid. provided public getters, worked.

A: 

Another solution I've found is to use the BindingList collection.



private void Form1_Load(object sender, EventArgs e)
{
   BindingList people= new BindingList {
    new Person {Name="John",Age=23},
    new Person {Name="Lucy",Age=16}
  };

   dataGridView1.DataSource= people;
}

It works fine for me,

Nikola Stjelja