方法 : Windows フォーム パネルの背景を設定する
更新 : 2007 年 11 月
Windows フォーム Panel コントロールでは、背景色と背景イメージの両方を表示できます。ラベルやオプション ボタンなど、表示されるコントロールの背景色を設定するには、BackColor プロパティを使用します。BackgroundImage プロパティを設定していない場合は、BackColor で選択した色でパネル全体が塗りつぶされます。BackgroundImage プロパティを設定している場合は、コントロールの背景にイメージが表示されます。
プログラムによって背景を設定するには
パネルの BackColor プロパティに System.Drawing.Color 型の値を設定します。
Panel1.BackColor = Color.AliceBlue
panel1.BackColor = Color.AliceBlue;
panel1->BackColor = Color::AliceBlue;
System.Drawing.Image クラスの FromFile メソッドを使用して、パネルの BackgroundImage プロパティを設定します。
' 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"));
参照
参照
Panel コントロールの概要 (Windows フォーム)