Click here to Skip to main content
15,893,588 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,
I should do binding for datagrid dynamically at code.I wrote the code as below. When I debug this code block ,it seems that it does bindings correctly, but grid comes with no columns on form.


C#
MyClass myInstance=new MyClass ();
                   dataGridObject=new DataGrid();
                   dataGridObject.Width = 200;
                   dataGridObject.Height = 200;
                   binding = new Binding();
                   binding.Source = myInstance;
                   foreach (PropertyInfo prop in myInstance.GetType().GetProperties())
                   {
                       binding.Path = new PropertyPath(prop.Name);
                       DataGridTextColumn column=new DataGridTextColumn();
                       column.Header = prop.Name;
                       column.Binding=new Binding(prop.Name);
                       dataGridObject.Columns.Add(column);
                   }

 dataGridObject.ItemSource=myInstanceList;



Why does't come grid with columns, although I did necessary bindings?
Thanks for the replies in advance..
Posted
Updated 19-Feb-12 23:09pm
v3
Comments
Michel [mjbohn] 20-Feb-12 5:10am    
unchecked "Treat my content as plain text, not as HTML"

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900