In fact, it still works, except that the new header rows have a height of 1, which means you don't see them. The reason for this is that there was a change in the methods and properties used, and DefaultHeight is not consulted anymore. So you need to override GetFittedDisplayHeight to make it work.
You can add the following to the existing code, and you will see the rows appear.
protected override int GetFittedDisplayHeight( AutoHeightMode mode, Graphics graphics, bool printing )
{
return this.DefaultHeight;
}
André
Software Developer and Tech Support
Xceed Software Inc.