How to print a displayed form in a Winforms application?

What is the code in C # for printing forms in an application?

+3
source share
2 answers

use both PrintDialog and print the current form from C #: http://msdn.microsoft.com/en-us/library/aa287529(VS.71).aspx

+1
source

Using

Printdialog

class.

For code example, see Printing Using C #

0
source

Source: https://habr.com/ru/post/1723067/


All Articles