1

I am still very new to C# and I'm developing an application that holds all of my textures which are in a png format.

I am at a stage where I need to be able to show multiple textures within 1 picture box, could I ask how this is achieved?

varsha
  • 1,620
  • 1
  • 16
  • 29
Jsam1978
  • 21
  • 1
  • 3
  • http://stackoverflow.com/questions/14397404/overlay-two-or-more-bitmaps-to-show-in-picturebox-c Some thing Like this.?? – Jawad Zeb Jan 02 '15 at 11:38

1 Answers1

1

you can do it by making array of images you want to show. Consider this example and tutorial here to learn about it.

varsha
  • 1,620
  • 1
  • 16
  • 29
  • Many thanks for the response it has certainly helped me go in the correct direction!, I'm finding C# both facinating and a challenge and have also ordered a book on the subject to increase my knowledge. – Jsam1978 Jan 05 '15 at 13:57