We can add any control. Here am using PictureBox Control for adding in runtime.
Private Void Form1_Mousedown(Object Sender Args e)
{
PictureBox p=new PictureBox();
P.Image= new Bitmap("E:/flower");
P.SizeMode= PictureBoxSizeMode.AutoSIze;
P.Location= new Point(e.X, e.Y);
this.Controls.Add(P);
}