PictureBox pictureBox1 = new PictureBox();
pictureBox1.Size = lineshape1.Size;
pictureBox1.Location = lineshape1.Location;
pictureBox1.BackgroundImage = Image.FromFile("kvp.png");
pictureBox1.BackgroundImageLayout = ImageLayout.Stretch;
this.Controls.Add(pictureBox1);
lineshape1.BringToFront();