panel1.BackgroundImage = Image.FromFile (System.Environment.GetFolderPath (System.Environment.SpecialFolder.Personal) + @"\Resource\Image.gif");
// You should replace the bolded image // in the sample below with an image of your own choosing. // Note the escape character used (@) when specifying the path.
panel1.BackgroundImage = Image.FromFile (System.Environment.GetFolderPath (System.Environment.SpecialFolder.Personal) + @"\Image.gif");
panel1.setBackground("~/images/logo.jpg");
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)