This question is locked. New answers and comments are not allowed.
I was using the RadGridView for Silverlight Q3_2009 and upgraded to Q2_2010 and had the following issue.
The system is using a Grid with its ItemsSource bound to an Observable collection of the following object:
public class RegistroDePropertyGrid { private TextBlock TextBlockDescricao; public string NomePropriedade { get; set; } public RegistroDePropertyGrid() { this.TextBlockDescricao = new TextBlock(); this.TextBlockDescricao.TextWrapping = TextWrapping.Wrap; } public Object Descricao { get { return this.TextBlockDescricao; } set { this.TextBlockDescricao.Text = Convert.ToString(value); ToolTipService.SetToolTip(this.TextBlockDescricao, Convert.ToString(value)); } } public Control EditorDePropriedade { get; set; } }The two columns appeared in the Q3_2009 has expected: a TextBlock and any given control instantiated in the Object. But now in Q2_2010 it only appears the class name (the default toString() I presume) in the two columns. How do I fix this or workaround this Issue?
