Print the TopBar Control?

Hello,

I am evaluating the GoDiagram. So I am real new.
I have a GoView on a form. I am adding a usercontrol to the TopBar property.
It displays fine, however the TopBar Control is now printing in the print preview window. Is there a way to make the control part of the printed document?
Thanks!
Bob

Windows Forms doesn’t really support printing arbitrary Controls. So there isn’t anything GoView could do automatically.

You could override GoView.PrintDecoration to draw your UserControl somehow.
You'll need to adjust the PrintDocument.DefaultPageSettings.MarginBounds in overrides of PrintShowDialog and PrintPreviewShowDialog in order to reserve space on each page for what you want to draw for your UserControl.