Home - Forums-.NET - FlyGrid.Net (Windows Forms) - VB.NET sample for ICustomDrawNode

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

VB.NET sample for ICustomDrawNode
Link Posted: 27-Sep-2006 07:45
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
Link Posted: 28-Sep-2006 07:41
Methods of ICustomDrawNode calling to draw whole row/node,
In this case you should manually calculate cell rect to draw each cell.
When you use IStyledNode in it's methods you can specify background/foreground, font colors but don't draw something.
It will be optimal if you'll use special column to draw in cell.
Also - please search the FlyGrid.Net board - custom drawing questions is very often questions - you can find a lot of code and answers on various aspects of custom drawing.