I\'m working in WPF 4 / C#. I have two custom classes:
public class c1 { public string prop1 { get; set; } public c1() { prop1 = \"world\";
You can't bind to fields, they have to be properties.