Bind a subclass to property
- by Neir0
Hi
i have a simple question. Ofcourse it has many answers but i cannt choose right keywords to google.
How i can bind a subclass to my wpf control?
for example:
It's my class.
public class SiteFieldInfo<T>
{
public string Name { get; set; }
public T Value { get; set; }
public List<string>…