I am trying to create a pdf document in my windows forms application, in the application I have forms and user controls with several controls inside like textbox, richtexbox, label, button, radiobutton and etc...
I want to create the pdf with the data present in those forms and users controls, the pdf should look like the content in those forms and users controls, the button, textbox, labels, etc, similar like a picture from those forms and users controls.
Sorry if i was not clear, I want to add what the user see in the form like it was a picture, but not do a screen shot, is like do something like this:
pdfDocument.Add(Button);
pdfDocument.Add(textBox);
Maybe this question is not right, but I am new to generate PDF.