Como definir a tela de fundo de um painel do Windows Forms
Um controle Panel do Windows Forms pode exibir uma cor de plano de fundo e uma imagem de plano de fundo. A propriedade BackColor define a cor da tela de fundo para os controles contidos, como rótulos e botões de opção. Se a propriedade BackgroundImage não estiver definida, a seleção BackColor preencherá todo o painel. Se a propriedade BackgroundImage estiver definida, a imagem será exibida por trás dos controles contidos.
Para definir o plano de fundo programaticamente
Defina a propriedade BackColor do painel como um valor do tipo System.Drawing.Color.
Panel1.BackColor = Color.AliceBlue
panel1.BackColor = Color.AliceBlue;
panel1->BackColor = Color::AliceBlue;
Defina a propriedade BackgroundImage do painel usando o método FromFile da classe System.Drawing.Image.
' 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
- BackColor
- BackgroundImage
- Controle do Painel
- Visão geral do controle do painel
.NET Desktop feedback