OK, I have the viewer navigator using my form as follows:
in the user control that holds the pdf viewer:
radPdfViewerNavigator1.PrintButton.MouseDown += PrintButton_MouseDown;
in that event I have to code you posted, but referencing my new form
uvtPrintViewDialog dialog = new uvtPrintViewDialog(document);
My form has a constructor that takes the document:
public uvtPrintViewDialog(RadPrintDocument printDocument) : base(printDocument)
{
InitializeComponent();
}
And it shows my form. So that is great ;)
But my issue now is, all of the controls on the form are locked. all I want to do is make them bigger, hide the watermark button, some simple stuff.