I have this object:
class a { public string Application; public DateTime From, To; }
And I declare this list
Looks like WPF can't bind to fields directly, you have to use properties like so:
class a { public string Application { get; set; } public DateTime From { get; set; } public DateTime To { get; set; } }