This question is locked. New answers and comments are not allowed.
I need to build my grid at runtime, on the client "based on" data returned from my WCF service.
My perfect solution would be as follows...
Telerik.Windows.Controls.GridViewImageColumn col = new Telerik.Windows.Controls.GridViewImageColumn();
col.blah = blah; // Set up the column name, header, width, height, not resizeable, not movable etc.
col.ImageSource = "NameOfImageFileIncludedInProject.PNG" <--- This is something like what I'm looking to be able to do
myGrid.Columns.Add(col);
Can anyone help?
My perfect solution would be as follows...
Telerik.Windows.Controls.GridViewImageColumn col = new Telerik.Windows.Controls.GridViewImageColumn();
col.blah = blah; // Set up the column name, header, width, height, not resizeable, not movable etc.
col.ImageSource = "NameOfImageFileIncludedInProject.PNG" <--- This is something like what I'm looking to be able to do
myGrid.Columns.Add(col);
Can anyone help?