I would like to display all the informations from my tabs in one place so I could use PrintDocument class to print the content. Is there a way I could gather them in one place to use PrintDocument easily?
Thanks in advance
I would like to display all the informations from my tabs in one place so I could use PrintDocument class to print the content. Is there a way I could gather them in one place to use PrintDocument easily?
Thanks in advance
You could make a deepcopy of the things you want to print: How do I make a Deep Copy of a UIElement?
and add those to a PrintDocument. Also: if you use DataBinding make sure you set the DataContext of the deepcopy correctly.