次の方法で共有


方法 : Windows フォーム パネルの背景を設定する

更新 : 2007 年 11 月

Windows フォーム Panel コントロールでは、背景色と背景イメージの両方を表示できます。ラベルやオプション ボタンなど、表示されるコントロールの背景色を設定するには、BackColor プロパティを使用します。BackgroundImage プロパティを設定していない場合は、BackColor で選択した色でパネル全体が塗りつぶされます。BackgroundImage プロパティを設定している場合は、コントロールの背景にイメージが表示されます。

プログラムによって背景を設定するには

  1. パネルの BackColor プロパティに System.Drawing.Color 型の値を設定します。

    Panel1.BackColor = Color.AliceBlue
    
    panel1.BackColor = Color.AliceBlue;
    
    panel1->BackColor = Color::AliceBlue;
    
  2. 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 フォーム)

BackColor

BackgroundImage

その他の技術情報

Panel コントロール (Windows フォーム)