I am trying to create a GoGeneralNode with a GoCollapsibleHandle attached. The problem is that no matter what style I give this handle it only displays a circle (whether expanded or collapsed). Here is the code I use to add the handle which is located inside the ctor of my subclass of GoGeneralNode:
_collapseHandle = new GoCollapsibleHandle();
_collapseHandle.Position = Position;
_collapseHandle.Bordered = true;
_collapseHandle.Style = GoCollapsibleHandleStyle.PlusMinus;
Add(_collapseHandle);
In case it matters my class does implement IGoCollapsible.
I am doing a very similar thing for a GoTextNode subclass and it works fine there. I cannot figure out what is making the collapse handle behave differently for these 2 types of nodes. Any suggestions would be appreciated.
Thanks