I'm making a c# WPF
application. Part of this application involves the user moving items around a screen. To do this each item has its own ContentControl
and it works really well.
I, now however, need to output the content of these Content Controllers to a bitmap
.
I'm creating the bitmap by
Bitmap = new Bitmap(width, height)
but how do I add the content control output?