Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a simple windows form with a gridgridview. I am trying to attach a datasource to it. My datasource is a dictionary. When I debug I can see that the values reach the binding source but they are not showing up in the datagrid. I was wondering if anyone could kindly give me an idea as to what is going on.

Here is the code:

public partial class DatagridView1GUI : Form
{
    Dictionary<string, object> _d;
    public DatagridView1GUI (Dictionary<string, object> dictionary)
    {
        const int ROW_HEIGHT = 22;
        InitializeComponent();
        _d = dictionary;

        Height += ROW_HEIGHT * (_d.Count);           
    }

    private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
    {
    }

    private void OKButton_Click(object sender, EventArgs e)
    {
        this.Dispose();
    }

    private void DatagridView1GUI_Load(object sender, EventArgs e)
    {
        Dictionary<string, string> _guiDataSource = new Dictionary<string, string>();
        ArrayList dataSourceKeys = new ArrayList(_d.Keys);

        foreach (string key in dataSourceKeys)
        {
            _guiDataSource.Add(key, _d[key].State.ToString());
        }

        BindingSource _bindingSource = new BindingSource();

        _bindingSource.DataSource = _guiDataSource;
        DatagridView1GUI.DataSource = _bindingSource.DataSource;
    }
}
share|improve this question
if _d[key] is an object then _d[key].State.ToString() shouldn't compile – André Pena Apr 17 '11 at 8:37

1 Answer

up vote 0 down vote accepted

You are setting the bindingsource to DatagridView1GUI.DataSource. I see that this is your current forms name and not the datagridview to which you want to bind the data. I believe that your datagridview is dataGridView1.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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