How can I make a drawing surface so people can draw on my Windows Form application?
- by Sergio Tapia
I'm making a simple chat program for me and my friends as a tech demo. I had the idea to have a small drawing pad thing that would be shared between all connected users.
What could I use in this situation (control wise)?
I know I can convert an image to a byte[] and pass that to everyone, but I'd need to use a pictureBox to get said image.
Thanks for the help!