About 37,300 results
Open links in new tab
  1. c# - Fit Image into PictureBox - Stack Overflow

    May 30, 2013 · What is the code to make the image fit in the picturebox? My picturebox is squared, if the image is rectangular how to it crop and show it in the picturebox like this, the lower part of the picture …

  2. Display images with PictureBox in c# - Stack Overflow

    Mar 28, 2014 · Display images with PictureBox in c# Asked 14 years, 11 months ago Modified 2 years, 7 months ago Viewed 55k times

  3. Change PictureBox's image to image from my resources?

    Jul 2, 2011 · How do I set a PictureBox image to an image from my resources? (I tried this without success: pictuerbox.Image = "img_location";)

  4. Loading PictureBox Image from resource file with path (Part 3)

    Aug 7, 2016 · 1) Select the PictureBox in the Form Design View 2) Open PictureBox Tasks (it's the little arrow printed to right on the edge of the PictureBox) 3) Click on "Choose image..." 4) Select the …

  5. c# - How can I get scrollbars on Picturebox - Stack Overflow

    Jun 21, 2016 · I have PictureBox picture. I use: picture.Size = bmp.Size; picture.Image = bmp; Let's say there are two integers maxWidth and maxHeigth. I want to add vertical/horizontal scrollbar to picture …

  6. c# - How do I change a PictureBox's image? - Stack Overflow

    Jul 14, 2012 · I have a program in C# with a PictureBox object inside a Form. How do I change its picture? The pictures to chose from are in bin/Pics; they are jpeg in format, if that matters..

  7. c# - Add PictureBox to form at runtime - Stack Overflow

    Aug 7, 2015 · A control, such as a PictureBox, is just a class. There's nothing special about it, so a new PictureBox won't magically appear on your form. All you need to do after instantiating and initializing …

  8. c# - Clear image on picturebox - Stack Overflow

    May 2, 2011 · How can I clear draw image on picturebox? The following doesn't help me: pictbox.Image = null; pictbox.Invalidate(); Please help. EDIT private void pictbox_Paint(object sender, …

  9. c# - Change the position of an PictureBox - Stack Overflow

    Mar 23, 2017 · Change the position of an PictureBox Asked 12 years, 10 months ago Modified 8 years, 9 months ago Viewed 62k times

  10. How to put image in a picture box from a byte [] in C#

    Mar 6, 2012 · How do I display it using the PictureBox control in C#? I went thru a couple of posts listed below but not sure if I need to convert the byte array into something else before sending it to a …