Answers for "picturebox image location c#"

C#
0

C# assigning image location

PictureBox picture = new PictureBox
        {
            Name = "pictureBox",
            Size = new Size(100, 50),
            Location = new Point(14, 17),
            Image = Image.FromFile(@"c:Imagestest.jpg"),
            SizeMode = PictureBoxSizeMode.CenterImage
        };
p.Controls.Add(picture);
Posted by: Guest on June-02-2020

Code answers related to "picturebox image location c#"

C# Answers by Framework

Browse Popular Code Answers by Language