Tagged Questions
-1
votes
1answer
56 views
MVVM Silverlight - can not assign existing control to a property of collection of custom elements in XAML
I have a class
public class Item
{
public string A { get; set; }
public Control B { get; set; }
}
I'm using MVVM with Silverlight. I have a custom view that is inherited ...