Hi Dilipk,
Alternatively, you can handle the Paint event of the Panel to draw the background image to anywhere you want. For example:
void panel1_Paint(object sender, PaintEventArgs e)
{
e.Graphics.DrawImageUnscaledAndClipped(Properties.Resources.Image1,new Rectangle(100,100,Properties.Resources.Image1.Width,Properties.Resources.Image1.Height));
}
Hope this helps.
Sincerely,
Linda Liu
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
end us any feedback you have about the help from MSFT at fbmsdn@microsoft.com.