Will the next version include a Generic Column (Column). It would be realy good to inherit from this overriding GetValue that recieves T and returns a property of it.
class VirtualColumn : Column
{
public override object GetValue(NodeBase node, T data)
{
return data.MyProperty;
}
}