I have the TableLayoutControl anchored to scale with the window and the images in it need to scale with them. I am not concerned with image quality.

link|improve this question

Could you specify What kind of C# application? Sounds like Windows Forms... – topspin Apr 6 '11 at 0:56
You mean a TableLayoutPanel? – MusiGenesis Apr 6 '11 at 0:58
Yes on both counts. Added "WinForms" to title and tag. Thanks. – Storm Kiernan Apr 6 '11 at 17:22
feedback

1 Answer

up vote 3 down vote accepted

Assuming this is WinForms and you have a bunch of PictureBoxes in cells of a TableLayoutPanel, set each one's Dock to Fill and SizeMode to StretchImage.

link|improve this answer
This is EXACTLY what I wanted. Thank you! – Storm Kiernan Apr 6 '11 at 17:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.