Make Node Label appear on top of selection object

How can I make sure that the label associated with a node is always drawn on top of the selection object?

I am using a custom selection object as described by Walter in another post, and it works great. The custom selection object overrides the CreateBoundingHandle to return a custom shape.
Thanks in advance,
Mark Kruger

By default all selection handles are placed in the GoLayer that is the value of GoView.Layers.Default. This layer is in front of all the other layers, so that the user can be sure to see the selection handles.

I suppose you could rearrange the order of layers in GoView.Layers, so that the default view layer is just behind the document layer holding your nodes.