I'm sure I'm missing something simple here but I cannot figure out what it is.
I have a custom Node class (called TicketNode) that implements ICustomDrawNode
Here's the paint routine:
Public Sub PaintNode(ByVal info As NineRays.Windows.Forms.Grids.CellDrawInfo) Implements NineRays.Windows.Forms.Data.ICustomDrawNode.PaintNode
info.currentColumn.PaintCell(info)
End Sub
At a glance, this *should* paint the cell without modification...yet nothing at all gets painted and I am not sure why. I AM certain that this routine is getting triggered - I am also certain there is data in info.text - in fact, if you were to remove the Implements line as well as the PaintNode routine, the tree works exactly as you would expect.
Next question: Is there an easier way to OVERRIDE the text that is getting displayed? Originally, I was using an IStyleNode and inside the OnBeginPaint routine, I was altering info.text = \"This is a test\" to see if that would work...it did not.
Any help or insight would be greately appreciated.
-Curtis