Практическое руководство. Меняем цвет фона панели формы Windows Forms
Windows Forms Panel может отображать элемент управления цветом фона и фоновое изображение. BackColor Свойство задает цвет фона для вложенные элементы управления, такие как метки и переключатели. Если BackgroundImage свойство не задано, BackColor выбора заполнит всей панели. Если BackgroundImage свойству, осуществляющая отображается изображение.
Для установки фона программным способом
Задайте для свойства панели BackColor свойства со значением типа System.Drawing.Color.
Panel1.BackColor = Color.AliceBlue
panel1.BackColor = Color.AliceBlue;
panel1->BackColor = Color::AliceBlue;
Задайте для свойства панели BackgroundImage свойства с помощью FromFile метод 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"));