Como: conjunto plano de fundo de um painel do Windows Forms
Um Windows Forms Panel controle pode exibir uma cor do plano de fundo e uma imagem de plano de fundo. The BackColor propriedade define a cor do plano de fundo para sistema autônomo controles contidos, sistema autônomo rótulos e botões de opção. Se o BackgroundImage propriedade não está conjunto, o BackColor seleção preencherá o painel inteiro. Se o BackgroundImage propriedade é definida, a imagem será exibida atrás controles contidos.
Para conjunto programaticamente o plano de fundo
Conjunto BackColor propriedade para um valor de tipo System.Drawing.Color.
Panel1.BackColor = Color.AliceBlue
panel1.BackColor = Color.AliceBlue;
panel1->BackColor = Color::AliceBlue;
Conjunto BackgroundImage propriedade usando o FromFile método para o System.Drawing.Image classe.
' You should replace the bolded image ' in the sample below with an image of your own choosing. Panel1.BackgroundImage = Image.FromFile _ (System.Environment.GetFolderPath _ (System.Environment.SpecialFolder.Personal) _ & "\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");
// You should replace the bolded image // in the sample below with an image of your own choosing. panel1->BackgroundImage = Image::FromFile(String::Concat( System::Environment::GetFolderPath (System::Environment::SpecialFolder::Personal), "\\Image.gif"));
Consulte também
Referência
Visão geral do painel de controle (Windows Forms)